Transition from timer based to task based LED signal

- Remove RTOS timers
- Create LED task
- Avoid polling, instead wait for semaphore
This commit is contained in:
2026-06-15 13:46:31 +02:00
parent 70cead28d7
commit cad3d841f4
3 changed files with 32 additions and 48 deletions
-1
View File
@@ -45,7 +45,6 @@ typedef struct {
typedef struct {
LED_Config *led;
osSemaphoreId_t semaphore;
osTimerId_t timer;
} LEDContext;
/* USER CODE END PTD */