Fix typo in task macros

This commit is contained in:
Steins7 2024-07-09 21:46:15 +02:00
parent 173e16eb2e
commit dd1756221d

View File

@ -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; \