mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-04-19 21:11:57 -04:00
Define portNOP in RP2040 port (#1003)
This commit is contained in:
parent
30f6061f48
commit
d95451d924
|
@ -278,7 +278,7 @@ static inline void vPortRecursiveLock( uint32_t ulLockNum,
|
|||
#define portTASK_FUNCTION_PROTO( vFunction, pvParameters ) void vFunction( void * pvParameters )
|
||||
#define portTASK_FUNCTION( vFunction, pvParameters ) void vFunction( void * pvParameters )
|
||||
|
||||
#define portNOP()
|
||||
#define portNOP() __asm volatile ( "nop" )
|
||||
|
||||
#define portMEMORY_BARRIER() __asm volatile ( "" ::: "memory" )
|
||||
|
||||
|
|
Loading…
Reference in a new issue