mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-09-12 09:07:46 -04:00
portmacro.h: Change return type of vApplicationSleep to void
This fixes build failure when automatic light sleep is enabled
This commit is contained in:
parent
14b681ab6e
commit
a45d02896b
1 changed files with 1 additions and 1 deletions
|
@ -430,7 +430,7 @@
|
||||||
#define PRIVILEGED_DATA
|
#define PRIVILEGED_DATA
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
bool vApplicationSleep( TickType_t xExpectedIdleTime );
|
void vApplicationSleep( TickType_t xExpectedIdleTime );
|
||||||
void vPortSetStackWatchpoint( void* pxStackStart );
|
void vPortSetStackWatchpoint( void* pxStackStart );
|
||||||
|
|
||||||
#define portSUPPRESS_TICKS_AND_SLEEP( idleTime ) vApplicationSleep( idleTime )
|
#define portSUPPRESS_TICKS_AND_SLEEP( idleTime ) vApplicationSleep( idleTime )
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue