• Earle F. Philhower, III's avatar
    Fix serial reset hang under FreeRTOS (#1495) · 579e366b
    Earle F. Philhower, III authored
    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
    579e366b
SerialUSB.cpp 5.47 KB