Fix serial reset hang under FreeRTOS (#1495)
The serial port reset logic was calling `sleep_ms()` which ended up doing a task switch...while the other core was frozen and everything was supposed to be locked. Use `busy_wait_ms()` which is a tight loop to delay in the reset portion. Fixes #1486
Showing
Please register or sign in to comment