Replace semaphore wait with direct task notification in beepTask

This commit is contained in:
2026-05-07 12:12:52 +02:00
parent d9bfe0f648
commit 954631f5aa
+1 -1
View File
@@ -113,7 +113,7 @@ static void beepTask(void *pvParameters)
for (;;)
{
xSemaphoreTake(beepSemaphore, portMAX_DELAY);
ulTaskNotifyTake(pdTRUE, portMAX_DELAY);
const uint32_t tMillis = millis();