Fix typo in task macros
This commit is contained in:
parent
173e16eb2e
commit
dd1756221d
@ -127,7 +127,6 @@ bool task_is_running(TaskFunction task);
|
||||
__task_state->timestamp = __task_time + delay_ms; \
|
||||
__task_state->trigger = TASK_TRIGGER_STK; \
|
||||
__task_state->timeout_mode = true; \
|
||||
} \
|
||||
case (count_val): \
|
||||
if (!(cond) && __task_state->timestamp != 0) { \
|
||||
return; \
|
||||
@ -142,7 +141,6 @@ bool task_is_running(TaskFunction task);
|
||||
__task_state->timestamp = __taks_time + delay_s * 1000; \
|
||||
__task_state->trigger = TASK_TRIGGER_RTC; \
|
||||
__task_state->timeout_mode = true; \
|
||||
} \
|
||||
case (count_val): \
|
||||
if (!(cond) && __task_state->timestamp != 0) { \
|
||||
return; \
|
||||
|
||||
Loading…
Reference in New Issue
Block a user