23 #include "utilities_conf.h"
60 #ifndef UTIL_SEQ_ENTER_CRITICAL_SECTION_IDLE
61 #define UTIL_SEQ_ENTER_CRITICAL_SECTION_IDLE( ) UTIL_SEQ_ENTER_CRITICAL_SECTION( )
69 #ifndef UTIL_SEQ_EXIT_CRITICAL_SECTION_IDLE
70 #define UTIL_SEQ_EXIT_CRITICAL_SECTION_IDLE( ) UTIL_SEQ_EXIT_CRITICAL_SECTION( )
76 #define UTIL_SEQ_NOTASKRUNNING (0xFFFFFFFFU)
81 #define UTIL_SEQ_NO_BIT_SET (0U)
86 #define UTIL_SEQ_ALL_BIT_SET (~0U)
91 #ifndef UTIL_SEQ_CONF_TASK_NBR
92 #define UTIL_SEQ_CONF_TASK_NBR (32)
95 #if UTIL_SEQ_CONF_TASK_NBR > 32
96 #error "UTIL_SEQ_CONF_PRIO_NBR must be less of equal then 32"
102 #ifndef UTIL_SEQ_CONF_PRIO_NBR
103 #define UTIL_SEQ_CONF_PRIO_NBR (2)
109 #ifndef UTIL_SEQ_MEMSET8
110 #define UTIL_SEQ_MEMSET8( dest, value, size ) UTILS_MEMSET8( dest, value, size )
151 static uint32_t CurrentTaskIdx = 0U;
196 UTIL_SEQ_INIT_CRITICAL_SECTION( );
224 super_mask_backup = SuperMask;
225 SuperMask &= Mask_bm;
234 local_taskset = TaskSet;
235 local_evtset = EvtSet;
236 local_taskmask = TaskMask;
237 local_evtwaited = EvtWaited;
238 while(((local_taskset & local_taskmask & SuperMask) != 0U) && ((local_evtset & local_evtwaited)==0U))
246 while((TaskPrio[counter].priority & local_taskmask & SuperMask)== 0U)
251 current_task_set = TaskPrio[counter].
priority & local_taskmask & SuperMask;
264 if ((TaskPrio[counter].round_robin & current_task_set) == 0U)
274 CurrentTaskIdx = (
SEQ_BitPosition(current_task_set & TaskPrio[counter].round_robin));
279 TaskPrio[counter].
round_robin &= ~(1U << CurrentTaskIdx);
281 UTIL_SEQ_ENTER_CRITICAL_SECTION( );
283 TaskSet &= ~(1U << CurrentTaskIdx);
287 TaskPrio[counter - 1U].
priority &= ~(1U << CurrentTaskIdx);
289 UTIL_SEQ_EXIT_CRITICAL_SECTION( );
292 TaskCb[CurrentTaskIdx]( );
294 local_taskset = TaskSet;
295 local_evtset = EvtSet;
296 local_taskmask = TaskMask;
297 local_evtwaited = EvtWaited;
305 local_taskset = TaskSet;
306 local_evtset = EvtSet;
307 local_taskmask = TaskMask;
308 if ((local_taskset & local_taskmask & SuperMask) == 0U)
310 if ((local_evtset & EvtWaited)== 0U)
320 SuperMask = super_mask_backup;
328 UTIL_SEQ_ENTER_CRITICAL_SECTION();
332 UTIL_SEQ_EXIT_CRITICAL_SECTION();
339 UTIL_SEQ_ENTER_CRITICAL_SECTION( );
341 TaskSet |= TaskId_bm;
342 TaskPrio[Task_Prio].
priority |= TaskId_bm;
344 UTIL_SEQ_EXIT_CRITICAL_SECTION( );
354 UTIL_SEQ_ENTER_CRITICAL_SECTION();
356 local_taskset = TaskSet;
357 _status = ((local_taskset & TaskMask & SuperMask & TaskId_bm) == TaskId_bm)? 1U: 0U;
359 UTIL_SEQ_EXIT_CRITICAL_SECTION();
365 UTIL_SEQ_ENTER_CRITICAL_SECTION( );
367 TaskMask &= (~TaskId_bm);
369 UTIL_SEQ_EXIT_CRITICAL_SECTION( );
377 UTIL_SEQ_ENTER_CRITICAL_SECTION( );
379 _status = ((TaskMask & TaskId_bm) == TaskId_bm) ? 0u:1u;
381 UTIL_SEQ_EXIT_CRITICAL_SECTION( );
387 UTIL_SEQ_ENTER_CRITICAL_SECTION( );
389 TaskMask |= TaskId_bm;
391 UTIL_SEQ_EXIT_CRITICAL_SECTION( );
398 UTIL_SEQ_ENTER_CRITICAL_SECTION( );
402 UTIL_SEQ_EXIT_CRITICAL_SECTION( );
409 UTIL_SEQ_ENTER_CRITICAL_SECTION( );
411 EvtSet &= (~EvtId_bm);
413 UTIL_SEQ_EXIT_CRITICAL_SECTION( );
427 current_task_idx = CurrentTaskIdx;
434 wait_task_idx = (uint32_t)1u << CurrentTaskIdx;
438 event_waited_id_backup = EvtWaited;
439 EvtWaited = EvtId_bm;
449 while ((EvtSet & EvtId_bm) == 0U)
459 CurrentTaskIdx = current_task_idx;
461 UTIL_SEQ_ENTER_CRITICAL_SECTION( );
463 EvtSet &= (~EvtId_bm);
465 UTIL_SEQ_EXIT_CRITICAL_SECTION( );
467 EvtWaited = event_waited_id_backup;
474 return (EvtSet & local_evtwaited);
513 #if( __CORTEX_M == 0)
521 static const uint8_t SEQ_clz_table_4bit[16] = { 4U, 3U, 2U, 2U, 1U, 1U, 1U, 1U, 0U, 0U, 0U, 0U, 0U, 0U, 0U, 0U };
523 uint32_t lvalue = Value;
525 if ((lvalue & 0xFFFF0000U) == 0U) { n = 16U; lvalue <<= 16U; }
526 if ((lvalue & 0xFF000000U) == 0U) { n += 8U; lvalue <<= 8U; }
527 if ((lvalue & 0xF0000000U) == 0U) { n += 4U; lvalue <<= 4U; }
529 n += SEQ_clz_table_4bit[lvalue >> (32-4)];
531 return (uint8_t)(31U-n);
541 return (uint8_t)(31 -__CLZ( Value ));
void UTIL_SEQ_SetEvt(UTIL_SEQ_bm_t EvtId_bm)
This function sets an event that is waited with UTIL_SEQ_WaitEvt()
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...
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 ...
__WEAK void UTIL_SEQ_PreIdle(void)
This function is called by the sequencer outside critical section just before calling UTIL_SEQ_Idle( ...
__WEAK void UTIL_SEQ_PostIdle(void)
This function is called by the sequencer outside critical section either.
uint32_t UTIL_SEQ_IsSchedulableTask(UTIL_SEQ_bm_t TaskId_bm)
This function checks if a task could be scheduled.
__WEAK void UTIL_SEQ_Idle(void)
This function is called by the sequencer in critical section (PRIMASK bit) when.
void UTIL_SEQ_SetTask(UTIL_SEQ_bm_t TaskId_bm, uint32_t Task_Prio)
This function requests a task to be executed.
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 i...
__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.
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_...
void UTIL_SEQ_DeInit(void)
This function un-initializes the sequencer resources.
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...
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 ...
void UTIL_SEQ_RegTask(UTIL_SEQ_bm_t TaskId_bm, uint32_t Flags, void(*Task)(void))
This function registers a task in the sequencer.
void UTIL_SEQ_Run(UTIL_SEQ_bm_t Mask_bm)
This function requests the sequencer to execute all pending tasks using round robin mechanism....
void UTIL_SEQ_Init(void)
This function initializes the sequencer resources.
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).
#define UTIL_SEQ_CONF_PRIO_NBR
default value of priority number.
#define UTIL_SEQ_ALL_BIT_SET
define to represent all bits set inside uint32_t mapping
#define UTIL_SEQ_EXIT_CRITICAL_SECTION_IDLE()
macro used to exit the critical section when exiting the IDLE function
#define UTIL_SEQ_ENTER_CRITICAL_SECTION_IDLE()
macro used to enter the critical section before calling the IDLE function
#define UTIL_SEQ_NOTASKRUNNING
define to represent no task running
#define UTIL_SEQ_CONF_TASK_NBR
default number of task is default 32 (maximum), can be reduced by redefining in utilities_conf....
#define UTIL_SEQ_NO_BIT_SET
define to represent no bit set inside uint32_t mapping
#define UTIL_SEQ_MEMSET8(dest, value, size)
default memset function.
uint8_t SEQ_BitPosition(uint32_t Value)
return the position of the first bit set to 1
structure used to manage task scheduling