Remove semaphores in favor of task notifications

- Less overhead, simpler to manage
- Semaphores are apparently overkill for a simple blink timer
This commit is contained in:
2026-06-16 17:56:11 +02:00
parent cc3a37ba4b
commit 6446f5209b
3 changed files with 24 additions and 28 deletions
-1
View File
@@ -44,7 +44,6 @@ typedef struct {
typedef struct {
LED_Config *led;
osSemaphoreId_t semaphore;
} LEDContext;
/* USER CODE END PTD */