Go to the documentation of this file. 1 #define configUSE_CMSIS_RTOS_V2 0
2 #define configCHECK_FOR_STACK_OVERFLOW 1
5 #define _USE_FREERTOS_LOW_POWER 1
9 #define _EXIT_SLEEP_FOR_DEBUGGING
14 #define SLEEP_LOWPOWER 2
18 #ifdef _USE_FREERTOS_LOW_POWER
20 #ifdef _EXIT_SLEEP_FOR_DEBUGGING
21 #define LOWPOWER_MODE SLEEP_NONE
23 #define LOWPOWER_MODE SLEEP_STOP2
26 #define LOW_POWER_NONE 0
27 #define LOW_POWER_DEFAULT 1
28 #define LOW_POWER_PRIVATE_LPTIMx_TICK 2
31 #define configUSE_TICKLESS_IDLE LOW_POWER_PRIVATE_LPTIMx_TICK
34 #if (configUSE_TICKLESS_IDLE==LOW_POWER_PRIVATE_LPTIMx_TICK)
35 #define configTICK_USES_LSE
36 #define configLPTIM_REF_CLOCK_HZ 32768UL
37 #define configLPTIM_ENABLE_PRECISION 1
38 #define configLPTIM_SRC_LPTIM1
39 #define configTICK_ENABLE_UWTICK_PRECISION 1
43 #ifdef _EXIT_SLEEP_FOR_DEBUGGING
44 #define configEXPECTED_IDLE_TIME_BEFORE_SLEEP 60000
46 #define configEXPECTED_IDLE_TIME_BEFORE_SLEEP 50
50 #define configPRE_SLEEP_PROCESSING( x ) xTaskSleepPrivate ( &x )
51 #define configPOST_SLEEP_PROCESSING( x ) xTaskWakeUpPrivate ( x )