STM32 RTC Scheduler
RTC-based scheduler for ultra-low power applications
|
This file contains the implementation for entering and leaving low power modes. More...
Go to the source code of this file.
Functions | |
void | EnterStop2Mode (void) |
Enter into STOP2 mode. More... | |
void | ResumeFromStop2Mode (void) |
Resume from STOP2 mode. More... | |
Variables | |
static volatile uint8_t | isCoreStopped = 0U |
This file contains the implementation for entering and leaving low power modes.
STM32 RTC Scheduler
Definition in file core_stop.c.
void EnterStop2Mode | ( | void | ) |
Enter into STOP2 mode.
This funtion suspends the SysTick, deinitializes all previously initialized peripherals (except the RTC), resets the clock configuration and puts the MCU into STOP2 mode. The RTC remains running in STOP2 mode.
Definition at line 31 of file core_stop.c.
void ResumeFromStop2Mode | ( | void | ) |
Resume from STOP2 mode.
This funtion reinitializes the clock configuration, reconfigures the peripherals and resumes the SysTick operation.
Definition at line 85 of file core_stop.c.
|
static |
Variable to track whether the core has stopped and entered into STOP mode
Definition at line 22 of file core_stop.c.