TactilityKernel improvements and more (#459)

This commit is contained in:
Ken Van Hoeylandt
2026-01-25 23:54:33 +01:00
committed by GitHub
parent 96eccbdc8d
commit dfe2c865d1
36 changed files with 759 additions and 331 deletions
+1 -1
View File
@@ -60,7 +60,7 @@ TEST_CASE("mutex_lock in another task should block when a lock is active") {
CHECK_EQ(task_lock_counter, 0);
mutex_unlock(&mutex);
vTaskDelay(1);
vTaskDelay(2); // 1 is sufficient most of the time, but not always
CHECK_EQ(task_lock_counter, 1);
mutex_destruct(&mutex);
}