STM32 Sequencer  v1.6.0
stm32_seq.h File Reference

sequencer interface More...

#include "stdint.h"

Go to the source code of this file.

Macros

#define UTIL_SEQ_RFU   0
 This provides a default value for unused parameter. More...
 
#define UTIL_SEQ_DEFAULT   (~0U)
 Default value used to start the scheduling. More...
 
#define UTIL_SEQ_TaskParamDef(_FUNC_, _PARAM_VAL_)
 This macro can be used to define a task with one parameter. More...
 
#define UTIL_SEQ_TaskFunction(_FUNC_, _PARAM_VAL_)   SEQ_FUNC_##_FUNC_##_PARAM_VAL_
 This macro is used to retrieve the function name of the task. More...
 

Typedefs

typedef uint32_t UTIL_SEQ_bm_t
 bit mapping of the task. this value is used to represent a list of task (each corresponds to a task). More...
 

Functions

void UTIL_SEQ_Init (void)
 This function initializes the sequencer resources. More...
 
void UTIL_SEQ_DeInit (void)
 This function un-initializes the sequencer resources. More...
 
__WEAK void UTIL_SEQ_Idle (void)
 This function is called by the sequencer in critical section (PRIMASK bit) when. More...
 
__WEAK void UTIL_SEQ_PreIdle (void)
 This function is called by the sequencer outside critical section just before calling UTIL_SEQ_Idle( ) UTIL_SEQ_PreIdle() is considered as the last task executed before calling UTIL_SEQ_Idle( ) In case a task or an event is set from an interrupt handler just after UTIL_SEQ_PreIdle() is called, UTIL_SEQ_Idle() will not be called. More...
 
__WEAK void UTIL_SEQ_PostIdle (void)
 This function is called by the sequencer outside critical section either. More...
 
void UTIL_SEQ_Run (UTIL_SEQ_bm_t Mask_bm)
 This function requests the sequencer to execute all pending tasks using round robin mechanism. When no task are pending, it calls UTIL_SEQ_Idle(); This function should be called in a while loop in the application. More...
 
void UTIL_SEQ_RegTask (UTIL_SEQ_bm_t TaskId_bm, uint32_t Flags, void(*Task)(void))
 This function registers a task in the sequencer. More...
 
void UTIL_SEQ_SetTask (UTIL_SEQ_bm_t TaskId_bm, uint32_t Task_Prio)
 This function requests a task to be executed. More...
 
uint32_t UTIL_SEQ_IsSchedulableTask (UTIL_SEQ_bm_t TaskId_bm)
 This function checks if a task could be scheduled. More...
 
void UTIL_SEQ_PauseTask (UTIL_SEQ_bm_t TaskId_bm)
 This function prevents a task to be called by the sequencer even when set with UTIL_SEQ_SetTask() By default, all tasks are executed by the sequencer when set with UTIL_SEQ_SetTask() When a task is paused, it is moved out from the sequencer list. More...
 
uint32_t UTIL_SEQ_IsPauseTask (UTIL_SEQ_bm_t TaskId_bm)
 This function allows to know if the task has been put in pause. By default, all tasks are executed by the sequencer when set with UTIL_SEQ_SetTask() The exit of the pause shall be done by the function UTIL_SEQ_ResumeTask. More...
 
void UTIL_SEQ_ResumeTask (UTIL_SEQ_bm_t TaskId_bm)
 This function allows again a task to be called by the sequencer if set with UTIL_SEQ_SetTask() This is used in relation with UTIL_SEQ_PauseTask() More...
 
void UTIL_SEQ_SetEvt (UTIL_SEQ_bm_t EvtId_bm)
 This function sets an event that is waited with UTIL_SEQ_WaitEvt() More...
 
void UTIL_SEQ_ClrEvt (UTIL_SEQ_bm_t EvtId_bm)
 This function may be used to clear the event before calling UTIL_SEQ_WaitEvt() This API may be useful when the UTIL_SEQ_SetEvt() is called several time to notify the same event. Due to Software Architecture where the timings are hard to control, this may be an unwanted case. More...
 
void UTIL_SEQ_WaitEvt (UTIL_SEQ_bm_t EvtId_bm)
 This function waits for a specific event to be set. The sequencer loops UTIL_SEQ_EvtIdle() until the event is set When called recursively, it acts as a First in / Last out mechanism. The sequencer waits for the last event requested to be set even though one of the already requested event has been set. More...
 
UTIL_SEQ_bm_t UTIL_SEQ_IsEvtPend (void)
 This function returns whether the waited event is pending or not It is useful only when the UTIL_SEQ_EvtIdle() is overloaded by the application. In that case, when the low power mode needs to be executed, the application shall first check whether the waited event is pending or not. Both the event checking and the low power mode processing should be done in critical section. More...
 
__WEAK void UTIL_SEQ_EvtIdle (UTIL_SEQ_bm_t TaskId_bm, UTIL_SEQ_bm_t EvtWaited_bm)
 This function loops until the waited event is set. More...
 

Detailed Description

sequencer interface

Author
MCD Application Team
Attention

© Copyright (c) 2019 STMicroelectronics. All rights reserved.

This software component is licensed by ST under BSD 3-Clause license, the "License"; You may not use this file except in compliance with the License. You may obtain a copy of the License at: opensource.org/licenses/BSD-3-Clause

Definition in file stm32_seq.h.