STM32 RTC Scheduler
RTC-based scheduler for ultra-low power applications
stm32l4xx_it.c
Go to the documentation of this file.
1 
14 /* Includes ------------------------------------------------------------------*/
15 #include "core_stop.h"
16 #include "error_handler.h"
17 #include "scheduler.h"
18 
19 /* External variables --------------------------------------------------------*/
20 extern RTC_HandleTypeDef hrtc;
21 extern TIM_HandleTypeDef htim17;
22 
23 /******************************************************************************/
24 /* Cortex-M4 Processor Interruption and Exception Handlers */
25 /******************************************************************************/
29 void NMI_Handler(void)
30 {
31 }
32 
37 {
38  ErrorHandler();
39 }
40 
45 {
46  ErrorHandler();
47 }
48 
52 void BusFault_Handler(void)
53 {
54  ErrorHandler();
55 }
56 
62 {
63  ErrorHandler();
64 }
65 
69 void DebugMon_Handler(void)
70 {
71 }
72 
73 /******************************************************************************/
74 /* STM32L4xx Peripheral Interrupt Handlers */
75 /* Add here the Interrupt Handlers for the used peripherals. */
76 /* For the available peripheral interrupt handler names, */
77 /* please refer to the startup file (startup_stm32l4xx.s). */
78 /******************************************************************************/
79 
84 {
85  HAL_TIM_IRQHandler(&htim17);
86  HAL_IncTick();
87 }
88 
93 {
94  HAL_RTC_AlarmIRQHandler(&hrtc);
95 
96  /* Resume operation from STOP2 mode */
98 
99  /* Process the scheduler */
101 
102  /* Execute the pending jobs */
104 }
NMI_Handler
void NMI_Handler(void)
This function handles the non-maskable interrupts.
Definition: stm32l4xx_it.c:29
SchedulerExecutePendingJobs
void SchedulerExecutePendingJobs(void)
Execute the pending jobs.
Definition: scheduler.c:159
hrtc
RTC_HandleTypeDef hrtc
Definition: rtc.c:22
DebugMon_Handler
void DebugMon_Handler(void)
This function handles the debug monitor.
Definition: stm32l4xx_it.c:69
core_stop.h
This file contains the function prototypes for entering and leaving low power modes.
BusFault_Handler
void BusFault_Handler(void)
This function handles the prefetch faults and memory access faults.
Definition: stm32l4xx_it.c:52
scheduler.h
This file contains the RTC-based scheduler definitions, structures and function prototypes.
HardFault_Handler
void HardFault_Handler(void)
This function handles the hard-fault interrupts.
Definition: stm32l4xx_it.c:36
error_handler.h
This file contains the error handling function prototypes.
MemManage_Handler
void MemManage_Handler(void)
This function handles the memory management faults.
Definition: stm32l4xx_it.c:44
ErrorHandler
void ErrorHandler(void)
This function is executed in case of an error.
Definition: error_handler.c:25
TIM1_TRG_COM_TIM17_IRQHandler
void TIM1_TRG_COM_TIM17_IRQHandler(void)
This function handles the TIM17 global interrupts.
Definition: stm32l4xx_it.c:83
htim17
TIM_HandleTypeDef htim17
Definition: stm32l4xx_hal_timebase.c:20
SchedulerProcess
void SchedulerProcess(void)
Process the scheduler.
Definition: scheduler.c:85
ResumeFromStop2Mode
void ResumeFromStop2Mode(void)
Resume from STOP2 mode.
Definition: core_stop.c:85
UsageFault_Handler
void UsageFault_Handler(void)
This function handles the faults of undefined instructions or illegal state.
Definition: stm32l4xx_it.c:61
RTC_Alarm_IRQHandler
void RTC_Alarm_IRQHandler(void)
This function handles the RTC alarm interrupts.
Definition: stm32l4xx_it.c:92