STM32 RTC Scheduler
RTC-based scheduler for ultra-low power applications
core_stop.h
Go to the documentation of this file.
1 
15 #ifndef CORE_STOP_H
16 #define CORE_STOP_H
17 
18 #ifdef __cplusplus
19 extern "C" {
20 #endif
21 
22 /* Includes ------------------------------------------------------------------*/
23 #include "stm32l4xx_hal.h"
24 
25 /* Functions -----------------------------------------------------------------*/
26 void EnterStop2Mode(void);
27 void ResumeFromStop2Mode(void);
28 
29 #ifdef __cplusplus
30 }
31 #endif
32 
33 #endif /* CORE_STOP_H */
EnterStop2Mode
void EnterStop2Mode(void)
Enter into STOP2 mode.
Definition: core_stop.c:31
ResumeFromStop2Mode
void ResumeFromStop2Mode(void)
Resume from STOP2 mode.
Definition: core_stop.c:85