mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-08-01 08:54:14 -04:00
Add additional NOP after EINT instruction in MSP430 ports.
This commit is contained in:
parent
a20e75082e
commit
f01bf9fdc3
4 changed files with 8 additions and 8 deletions
|
@ -104,7 +104,7 @@ typedef unsigned short UBaseType_t;
|
|||
|
||||
/* Interrupt control macros. */
|
||||
#define portDISABLE_INTERRUPTS() asm volatile ( "DINT" ); asm volatile ( "NOP" )
|
||||
#define portENABLE_INTERRUPTS() asm volatile ( "EINT" )
|
||||
#define portENABLE_INTERRUPTS() asm volatile ( "EINT" ); asm volatile ( "NOP" )
|
||||
/*-----------------------------------------------------------*/
|
||||
|
||||
/* Critical section control macros. */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue