STM32 RTC Scheduler
RTC-based scheduler for ultra-low power applications
main.c
Go to the documentation of this file.
1 
16 /* Includes ------------------------------------------------------------------*/
17 #include "main.h"
18 #include "FreeRTOS.h"
19 #include "core_stop.h"
20 #include "error_handler.h"
21 #include "hardware.h"
22 #include "rtc.h"
23 #include "scheduler.h"
24 #include "task.h"
25 #include "timers.h"
26 
27 /* Private variables ---------------------------------------------------------*/
29 TaskHandle_t taskHandleLedBlink = NULL;
30 
32 TaskHandle_t taskHandleLedSteady = NULL;
33 
34 /* Private function prototypes -----------------------------------------------*/
35 void TaskLedBlink(void* arg);
36 void TaskLedSteady(void* arg);
37 
38 void JobShortPeriodCallback(void);
39 void JobLongPeriodCallback(void);
40 
41 /* External functions --------------------------------------------------------*/
42 extern TickType_t GetExpectedIdleTime(void);
43 extern UBaseType_t IsDelayedTaskListEmpty(void);
44 
51 int main(void)
52 {
53  HAL_Init();
55  GpioInit();
56  RtcInit();
57  SchedulerInit();
58 
61 
62  if(xTaskCreate(TaskLedBlink, /* Task function */
63  "task_led_blink", /* Task name */
64  configMINIMAL_STACK_SIZE, /* Stack size */
65  NULL, /* Arguments */
66  2, /* Task priority */
67  &taskHandleLedBlink) != pdPASS)
68  {
69  ErrorHandler();
70  }
71 
72  if(xTaskCreate(TaskLedSteady, /* Task function */
73  "task_led_steady", /* Task name */
74  configMINIMAL_STACK_SIZE, /* Stack size */
75  NULL, /* Arguments */
76  1, /* Task priority */
77  &taskHandleLedSteady) != pdPASS)
78  {
79  ErrorHandler();
80  }
81 
82  /* RTOS Kernel Start */
83  vTaskStartScheduler();
84 
85  /* This line must not be reached */
86  ErrorHandler();
87 }
88 
100 {
101  BaseType_t xHigherPriorityTaskWoken = pdFALSE;
102 
103  /* Unblock the Led Blink Task */
104  vTaskNotifyGiveFromISR(taskHandleLedBlink, &xHigherPriorityTaskWoken);
105 
106  portYIELD_FROM_ISR(xHigherPriorityTaskWoken);
107 }
108 
120 {
121  BaseType_t xHigherPriorityTaskWoken = pdFALSE;
122 
123  /* Unblock the Led Steady Task */
124  vTaskNotifyGiveFromISR(taskHandleLedSteady, &xHigherPriorityTaskWoken);
125 
126  portYIELD_FROM_ISR(xHigherPriorityTaskWoken);
127 }
128 
138 void TaskLedBlink(void* arg)
139 {
140  UNUSED(arg);
141  uint32_t isTaskUnblocked;
142 
143  for(;;)
144  {
145  isTaskUnblocked = ulTaskNotifyTake(pdTRUE, portMAX_DELAY);
146  if(isTaskUnblocked != 0U)
147  {
148  for(uint8_t i = 0U; i < 4U; ++i)
149  {
150  LedLd3Toggle();
151  vTaskDelay(pdMS_TO_TICKS(250));
152  }
153  }
154  }
155 }
156 
167 void TaskLedSteady(void* arg)
168 {
169  UNUSED(arg);
170  uint32_t isTaskUnblocked;
171 
172  for(;;)
173  {
174  isTaskUnblocked = ulTaskNotifyTake(pdTRUE, portMAX_DELAY);
175  if(isTaskUnblocked != 0U)
176  {
177  LedLd2On();
178  vTaskDelay(pdMS_TO_TICKS(1000));
179  LedLd2Off();
180  }
181  }
182 }
183 
191 {
193 }
194 
205 {
206  const uint32_t expectedIdleTime = GetExpectedIdleTime();
207 
208  if((expectedIdleTime > pdMS_TO_TICKS(IDLE_TIME_BEFORE_SLEEP)) &&
209  (IsDelayedTaskListEmpty() == pdTRUE))
210  {
211  EnterStop2Mode();
213  }
214 }
215 
225 void vApplicationStackOverflowHook(TaskHandle_t xTask, char* pcTaskName)
226 {
227  UNUSED(xTask);
228  UNUSED(pcTaskName);
229 
230  ErrorHandler();
231 }
232 
239 {
240  ErrorHandler();
241 }
taskHandleLedSteady
TaskHandle_t taskHandleLedSteady
Definition: main.c:32
SchedulerAddJob
uint8_t SchedulerAddJob(const uint32_t period, const Callback_t callback)
Add a new job to the scheduler.
Definition: scheduler.c:43
IsDelayedTaskListEmpty
UBaseType_t IsDelayedTaskListEmpty(void)
Check whether the delayed task list of RTOS is empty.
Definition: freertos_tasks_c_additions.h:90
JobLongPeriodCallback
void JobLongPeriodCallback(void)
The callback function for the long period job.
Definition: main.c:119
TaskLedSteady
void TaskLedSteady(void *arg)
This function implements the steady LED RTOS task.
Definition: main.c:167
core_stop.h
This file contains the function prototypes for entering and leaving low power modes.
taskHandleLedBlink
TaskHandle_t taskHandleLedBlink
Definition: main.c:29
scheduler.h
This file contains the RTC-based scheduler definitions, structures and function prototypes.
LedLd3Toggle
void LedLd3Toggle(void)
Toggle the status of the LD3 LED.
Definition: hardware.c:170
GetExpectedIdleTime
TickType_t GetExpectedIdleTime(void)
Get the expected idle time from RTOS kernel.
Definition: freertos_tasks_c_additions.h:27
GpioInit
void GpioInit(void)
This function initializes the GPIOs of the LEDs.
Definition: hardware.c:79
vApplicationMallocFailedHook
void vApplicationMallocFailedHook(void)
RTOS malloc failed hook.
Definition: main.c:238
LedLd2Off
void LedLd2Off(void)
Turn off the LD2 LED.
Definition: hardware.c:138
IDLE_TIME_BEFORE_SLEEP
#define IDLE_TIME_BEFORE_SLEEP
Definition: main.h:26
error_handler.h
This file contains the error handling function prototypes.
vApplicationIdleHook
void vApplicationIdleHook(void)
RTOS idle task hook.
Definition: main.c:204
RtcInit
void RtcInit(void)
RTC initialization function.
Definition: rtc.c:30
main
int main(void)
The main function of the application.
Definition: main.c:51
hardware.h
This file contains the hardware-specific definitions and function prototypes.
JobShortPeriodCallback
void JobShortPeriodCallback(void)
The callback function for the short period job.
Definition: main.c:99
main.h
This file contains the application-related definitions.
vApplicationStackOverflowHook
void vApplicationStackOverflowHook(TaskHandle_t xTask, char *pcTaskName)
RTOS task stack overflow hook.
Definition: main.c:225
SchedulerInit
void SchedulerInit(void)
Initialize the scheduler by setting its structure values to zero.
Definition: scheduler.c:28
EnterStop2Mode
void EnterStop2Mode(void)
Enter into STOP2 mode.
Definition: core_stop.c:31
TaskLedBlink
void TaskLedBlink(void *arg)
This function implements the blinking LED RTOS task.
Definition: main.c:138
ErrorHandler
void ErrorHandler(void)
This function is executed in case of an error.
Definition: error_handler.c:25
rtc.h
This file contains the RTC-specific function prototypes.
SchedulerProcess
void SchedulerProcess(void)
Process the scheduler.
Definition: scheduler.c:85
ResumeFromStop2Mode
void ResumeFromStop2Mode(void)
Resume from STOP2 mode.
Definition: core_stop.c:85
SystemClockConfig
void SystemClockConfig(void)
This function configures the system and peripheral clocks.
Definition: hardware.c:25
vApplicationDaemonTaskStartupHook
void vApplicationDaemonTaskStartupHook(void)
RTOS daemon startup callback.
Definition: main.c:190
LedLd2On
void LedLd2On(void)
Turn on the LD2 LED.
Definition: hardware.c:130