From 624f8ef2d67f2a91247239fab60e7a69c8107efc Mon Sep 17 00:00:00 2001 From: Roman Leonov Date: Wed, 2 Oct 2024 12:13:51 +0200 Subject: [PATCH] fix(usb_host_msc): Changed HID -> MSC in debug --- host/class/msc/usb_host_msc/src/msc_host.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/host/class/msc/usb_host_msc/src/msc_host.c b/host/class/msc/usb_host_msc/src/msc_host.c index 3327e8fc..20332498 100644 --- a/host/class/msc/usb_host_msc/src/msc_host.c +++ b/host/class/msc/usb_host_msc/src/msc_host.c @@ -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); }