We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4e816e4 + 134a959 commit 71396ceCopy full SHA for 71396ce
src/portmacro.h
@@ -111,6 +111,14 @@ extern void vPortYield( void ) __attribute__ ( ( naked ) );
111
112
#define portTASK_FUNCTION( vFunction, pvParameters ) void vFunction( void *pvParameters )
113
114
+/* Tickless idle/low power functionality. */
115
+#if( configUSE_TICKLESS_IDLE > 0 )
116
+ #ifndef portSUPPRESS_TICKS_AND_SLEEP
117
+ extern void vPortSuppressTicksAndSleep(TickType_t xExpectedIdleTime);
118
+ #define portSUPPRESS_TICKS_AND_SLEEP(xExpectedIdleTime) vPortSuppressTicksAndSleep(xExpectedIdleTime)
119
+ #endif
120
+#endif
121
+
122
#ifdef __cplusplus
123
}
124
#endif
0 commit comments