Skip to content

Commit

Permalink
fix(usb_host_msc): Changed HID -> MSC in debug
Browse files Browse the repository at this point in the history
  • Loading branch information
roma-jam committed Oct 2, 2024
1 parent 787efe2 commit 624f8ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions host/class/msc/usb_host_msc/src/msc_host.c
Original file line number Diff line number Diff line change
Expand Up @@ -345,10 +345,10 @@ esp_err_t msc_host_handle_events(uint32_t timeout)
*/
static void event_handler_task(void *arg)
{
ESP_LOGD(TAG, "USB HID handling start");
ESP_LOGD(TAG, "USB MSC handling start");
while (msc_host_handle_events(portMAX_DELAY) == ESP_OK) {
}
ESP_LOGD(TAG, "USB HID handling stop");
ESP_LOGD(TAG, "USB MSC handling stop");
vTaskDelete(NULL);
}

Expand Down

0 comments on commit 624f8ef

Please sign in to comment.