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 4b2cd53f3b
3 changed files with 45 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 */