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 14:06:15 +02:00
parent 70cead28d7
commit 47f225a4d3
3 changed files with 34 additions and 50 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 */