Stima V4 Slave RAIN  4.2
STM32FreeRTOSConfig_extra.h
Go to the documentation of this file.
1 #define configUSE_CMSIS_RTOS_V2 0
2 #define configCHECK_FOR_STACK_OVERFLOW 1
3 
4 // Enable for use LowPower
5 #define _USE_FREERTOS_LOW_POWER 1
6 
7 // Enable For Exit Immediate from LowPower (Using for Debug)
8 #if USE_DEBUG
9 #define _EXIT_SLEEP_FOR_DEBUGGING
10 #endif
11 
12 #define SLEEP_NONE 0 // Unused LowPOWER
13 #define SLEEP_IDLE 1 // Power mode main regulator ON, mode 1 debug standard enabled
14 #define SLEEP_LOWPOWER 2 // Power mode low power regulator ON, debug Low Power
15 #define SLEEP_STOP2 3 // Stop2 mode all power regulator OFF
16 
17 // Define For LowPower Method
18 #ifdef _USE_FREERTOS_LOW_POWER
19 
20 #ifdef _EXIT_SLEEP_FOR_DEBUGGING
21  #define LOWPOWER_MODE SLEEP_NONE
22 #else
23  #define LOWPOWER_MODE SLEEP_STOP2
24 #endif
25 
26 #define LOW_POWER_NONE 0
27 #define LOW_POWER_DEFAULT 1
28 #define LOW_POWER_PRIVATE_LPTIMx_TICK 2
29 
30 // Freertos Tickless Mode (LOW_POWER_PRIVATE Enable LptimTick.c)
31 #define configUSE_TICKLESS_IDLE LOW_POWER_PRIVATE_LPTIMx_TICK
32 
33 // Define for lptimTick.c
34 #if (configUSE_TICKLESS_IDLE==LOW_POWER_PRIVATE_LPTIMx_TICK)
35  #define configTICK_USES_LSE // USE LSE CLOCK
36  #define configLPTIM_REF_CLOCK_HZ 32768UL // LSE CLOCK REFERENCE
37  #define configLPTIM_ENABLE_PRECISION 1 // ENABLE AUTO PRECISION
38  #define configLPTIM_SRC_LPTIM1 // LPTIM1 OR LPTIM2 CONFIG
39  #define configTICK_ENABLE_UWTICK_PRECISION 1 // ENABLE UPDATE SYSTICK
40 #endif
41 
42 // Time minimal for start LOW_POWER && SuppressTick...
43 #ifdef _EXIT_SLEEP_FOR_DEBUGGING
44  #define configEXPECTED_IDLE_TIME_BEFORE_SLEEP 60000
45 #else
46  #define configEXPECTED_IDLE_TIME_BEFORE_SLEEP 50
47 #endif
48 
49 // Macro Pre && Post Sleep/Wake method
50 #define configPRE_SLEEP_PROCESSING( x ) xTaskSleepPrivate ( &x )
51 #define configPOST_SLEEP_PROCESSING( x ) xTaskWakeUpPrivate ( x )
52 
53 #endif