STM32 RTC Scheduler
RTC-based scheduler for ultra-low power applications
|
Go to the documentation of this file.
64 configMINIMAL_STACK_SIZE,
74 configMINIMAL_STACK_SIZE,
83 vTaskStartScheduler();
101 BaseType_t xHigherPriorityTaskWoken = pdFALSE;
106 portYIELD_FROM_ISR(xHigherPriorityTaskWoken);
121 BaseType_t xHigherPriorityTaskWoken = pdFALSE;
126 portYIELD_FROM_ISR(xHigherPriorityTaskWoken);
141 uint32_t isTaskUnblocked;
145 isTaskUnblocked = ulTaskNotifyTake(pdTRUE, portMAX_DELAY);
146 if(isTaskUnblocked != 0U)
148 for(uint8_t i = 0U; i < 4U; ++i)
151 vTaskDelay(pdMS_TO_TICKS(250));
170 uint32_t isTaskUnblocked;
174 isTaskUnblocked = ulTaskNotifyTake(pdTRUE, portMAX_DELAY);
175 if(isTaskUnblocked != 0U)
178 vTaskDelay(pdMS_TO_TICKS(1000));
TaskHandle_t taskHandleLedSteady
uint8_t SchedulerAddJob(const uint32_t period, const Callback_t callback)
Add a new job to the scheduler.
UBaseType_t IsDelayedTaskListEmpty(void)
Check whether the delayed task list of RTOS is empty.
void JobLongPeriodCallback(void)
The callback function for the long period job.
void TaskLedSteady(void *arg)
This function implements the steady LED RTOS task.
This file contains the function prototypes for entering and leaving low power modes.
TaskHandle_t taskHandleLedBlink
This file contains the RTC-based scheduler definitions, structures and function prototypes.
void LedLd3Toggle(void)
Toggle the status of the LD3 LED.
TickType_t GetExpectedIdleTime(void)
Get the expected idle time from RTOS kernel.
void GpioInit(void)
This function initializes the GPIOs of the LEDs.
void vApplicationMallocFailedHook(void)
RTOS malloc failed hook.
void LedLd2Off(void)
Turn off the LD2 LED.
#define IDLE_TIME_BEFORE_SLEEP
This file contains the error handling function prototypes.
void vApplicationIdleHook(void)
RTOS idle task hook.
void RtcInit(void)
RTC initialization function.
int main(void)
The main function of the application.
This file contains the hardware-specific definitions and function prototypes.
void JobShortPeriodCallback(void)
The callback function for the short period job.
This file contains the application-related definitions.
void vApplicationStackOverflowHook(TaskHandle_t xTask, char *pcTaskName)
RTOS task stack overflow hook.
void SchedulerInit(void)
Initialize the scheduler by setting its structure values to zero.
void EnterStop2Mode(void)
Enter into STOP2 mode.
void TaskLedBlink(void *arg)
This function implements the blinking LED RTOS task.
void ErrorHandler(void)
This function is executed in case of an error.
This file contains the RTC-specific function prototypes.
void SchedulerProcess(void)
Process the scheduler.
void ResumeFromStop2Mode(void)
Resume from STOP2 mode.
void SystemClockConfig(void)
This function configures the system and peripheral clocks.
void vApplicationDaemonTaskStartupHook(void)
RTOS daemon startup callback.
void LedLd2On(void)
Turn on the LD2 LED.