From: richardbarry Date: Wed, 17 Sep 2008 16:04:31 +0000 (+0000) Subject: BUG FIX: Changed X-Git-Tag: V5.1.2~224 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=9bed81193e74af1d51de379a41e795b069b3b89b;p=freertos BUG FIX: Changed *(portNVIC_INT_CTRL) |= portNVIC_PENDSVSET; to *(portNVIC_INT_CTRL) = portNVIC_PENDSVSET; git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@472 1d2547de-c912-0410-9cb9-b8ca96c0e9e2 --- diff --git a/Source/portable/RVDS/ARM_CM3/port.c b/Source/portable/RVDS/ARM_CM3/port.c index 6e34f4658..09271af52 100644 --- a/Source/portable/RVDS/ARM_CM3/port.c +++ b/Source/portable/RVDS/ARM_CM3/port.c @@ -182,7 +182,7 @@ void vPortEndScheduler( void ) void vPortYieldFromISR( void ) { /* Set a PendSV to request a context switch. */ - *(portNVIC_INT_CTRL) |= portNVIC_PENDSVSET; + *(portNVIC_INT_CTRL) = portNVIC_PENDSVSET; } /*-----------------------------------------------------------*/ @@ -242,7 +242,7 @@ unsigned portLONG ulDummy; /* If using preemption, also force a context switch. */ #if configUSE_PREEMPTION == 1 - *(portNVIC_INT_CTRL) |= portNVIC_PENDSVSET; + *(portNVIC_INT_CTRL) = portNVIC_PENDSVSET; #endif ulDummy = portSET_INTERRUPT_MASK_FROM_ISR();