STM32 RTC Scheduler
RTC-based scheduler for ultra-low power applications
core_stop.c
Go to the documentation of this file.
1 
15 /* Includes ------------------------------------------------------------------*/
16 #include "core_stop.h"
17 #include "hardware.h"
18 #include "rtc.h"
19 
20 /* Private variables ---------------------------------------------------------*/
22 static volatile uint8_t isCoreStopped = 0U;
23 
31 void EnterStop2Mode(void)
32 {
33  /* Mask interrupts */
34  __set_BASEPRI((TICK_INT_PRIORITY + 1) << (8 - __NVIC_PRIO_BITS));
35  __DSB();
36  __ISB();
37 
38  /* Set core stop flag */
39  isCoreStopped = 1U;
40 
41  /* Suspend RTOS Systick */
42  CLEAR_BIT(SysTick->CTRL, SysTick_CTRL_ENABLE_Msk);
43 
44  /* Reset system clock to MSI */
45  HAL_RCC_DeInit();
46 
47  /* Suspend HAL tick interrupt */
49 
50  /* Set configured GPIOs to analog mode
51  * Note: further reduction in current consumption can be reached by setting
52  * all pins of the MCU (including the debugging pins) to analog mode. */
53  GpioDeinit();
54 
55  /* Disable peripheral clocks */
56  __HAL_RCC_FLASH_CLK_DISABLE();
57  __HAL_RCC_PWR_CLK_DISABLE();
58  __HAL_RCC_SYSCFG_CLK_DISABLE();
59 
60  RCC->AHB1SMENR = 0U;
61  RCC->AHB2SMENR = 0U;
62  RCC->AHB3SMENR = 0U;
63  RCC->APB1SMENR1 = 0U;
64  RCC->APB1SMENR2 = 0U;
65  RCC->APB2SMENR = 0U;
66 
67  /* Ensure that MSI is the wake-up system clock */
68  __HAL_RCC_PWR_CLK_ENABLE();
69  HAL_RCCEx_WakeUpStopCLKConfig(RCC_STOP_WAKEUPCLOCK_MSI);
70 
71  /* Re-enable interrupts */
72  __set_BASEPRI(0);
73 
74  /* Enter Stop2 */
75  __HAL_RCC_PWR_CLK_ENABLE();
76  HAL_PWREx_EnterSTOP2Mode(PWR_STOPENTRY_WFI);
77 }
78 
86 {
87  if(isCoreStopped != 0U)
88  {
89  /* Mask interrupts */
90  __set_BASEPRI((TICK_INT_PRIORITY + 1) << (8 - __NVIC_PRIO_BITS));
91  __DSB();
92  __ISB();
93 
94  /* Restore clock configuration */
96 
97  /* Wait for RTC sync */
99 
100  /* Resume HAL tick */
101  /* Note: done by HAL_RCC_ClockConfig() in SystemClockConfig() */
102 
103  /* Restore GPIO and Power On required peripherals */
104  GpioInit();
105 
106  /* Resume SysTick */
107  SET_BIT(SysTick->CTRL, SysTick_CTRL_ENABLE_Msk);
108 
109  /* Reset core stop flag */
110  isCoreStopped = 0U;
111 
112  /* Enable interrupts */
113  __set_BASEPRI(0);
114  }
115  else
116  {
117  /* Do nothing when core is running */
118  }
119 }
core_stop.h
This file contains the function prototypes for entering and leaving low power modes.
RtcWaitForClockSynchronization
void RtcWaitForClockSynchronization(void)
This function waits until the RTC time and date registers are synchronized with RTC APB clock....
Definition: rtc.c:199
isCoreStopped
static volatile uint8_t isCoreStopped
Definition: core_stop.c:22
ResumeFromStop2Mode
void ResumeFromStop2Mode(void)
Resume from STOP2 mode.
Definition: core_stop.c:85
GpioInit
void GpioInit(void)
This function initializes the GPIOs of the LEDs.
Definition: hardware.c:79
EnterStop2Mode
void EnterStop2Mode(void)
Enter into STOP2 mode.
Definition: core_stop.c:31
hardware.h
This file contains the hardware-specific definitions and function prototypes.
GpioDeinit
void GpioDeinit(void)
This function deinitializes the GPIOs and sets them to analog mode.
Definition: hardware.c:103
HAL_SuspendTick
void HAL_SuspendTick(void)
Suspend the tick increment.
Definition: stm32l4xx_hal_timebase.c:81
rtc.h
This file contains the RTC-specific function prototypes.
SystemClockConfig
void SystemClockConfig(void)
This function configures the system and peripheral clocks.
Definition: hardware.c:25