mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-04-19 21:11:57 -04:00
Enable Interrupts don't need NOP before portENABLE_INTERRUPTS
This commit is contained in:
parent
2faa8bc154
commit
5e1d34b265
|
@ -73,7 +73,7 @@ typedef unsigned short UBaseType_t;
|
|||
|
||||
/* Interrupt control macros. */
|
||||
#define portDISABLE_INTERRUPTS() __asm volatile ( "DINT\n" "NOP" )
|
||||
#define portENABLE_INTERRUPTS() __asm volatile ( "NOP\n" "EINT\n" "NOP" )
|
||||
#define portENABLE_INTERRUPTS() __asm volatile ( "EINT\n" "NOP" )
|
||||
/*-----------------------------------------------------------*/
|
||||
|
||||
/* Critical section control macros. */
|
||||
|
|
Loading…
Reference in a new issue