Alter tuh_task_ext() function so no need to return when using FreeRTOS

This commit is contained in:
PeterB 2022-12-01 16:06:15 +00:00
parent 25abb10de1
commit ae588d796e
1 changed files with 1 additions and 1 deletions

View File

@ -509,7 +509,7 @@ void tuh_task_ext(uint32_t timeout_ms, bool in_isr)
default: break;
}
#if CFG_TUSB_OS != OPT_OS_NONE && CFG_TUSB_OS != OPT_OS_PICO
#if CFG_TUSB_OS != OPT_OS_NONE && CFG_TUSB_OS != OPT_OS_PICO && CFG_TUSB_OS != OPT_OS_FREERTOS
// return if there is no more events, for application to run other background
if (osal_queue_empty(_usbh_q)) return;
#endif