introduction-to-rtos icon indicating copy to clipboard operation
introduction-to-rtos copied to clipboard

Results 5 introduction-to-rtos issues
Sort by recently updated
recently updated
newest added

## Pull Request Description ## Issue The blinkLED task calls `xSemaphoreGive(mutex)` without having acquired the mutex using `xSemaphoreTake(mutex, portMAX_DELAY)` first, causing a system reboot (due to failed assertion) after the...

The solution of ep 3 does not compile in Arduino IDE 2 it stops at this line: idx%2B%2B; error: unable to find numeric literal operator 'operator""B'

Hello, First of all, thank you for this great course. I'm currently following the course and trying to write and test all the demos and challenges. In part 6 where...

I noticed while going through this _(excellent BTW!)_ tutorial series that the ESP32 was resetting repeatedly during the execution of the deadlock demo timeout solution. Serial output: ``` ESP-ROM:esp32s2-rc4-20191025 Build:Oct...

Board = ESP32 version = 1.0.6 CODE ///////////////////////////////////////////////////////////////////////////////////////////////////////////////// #if CONFIG_FREERTOS_UNICORE static const BaseType_t app_cpu = 0 ; #else static const BaseType_t app_cpu = 1; #endif //const char msg[] = "qwerty...