diff options
| author | sakumisu <[email protected]> | 2023-11-22 21:45:13 +0800 |
|---|---|---|
| committer | sakumisu <[email protected]> | 2023-11-22 21:45:13 +0800 |
| commit | 074f30a7b4a7a3805b3abd9330fe4800417276ee (patch) | |
| tree | 231da5b802e846337254f546062f2290f6849445 | |
| parent | 50e1cd3471c138b73d79bc3b7d5f0c3c5dad3fe6 (diff) | |
disable device not find log
| -rw-r--r-- | demo/usb_host.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/demo/usb_host.c b/demo/usb_host.c index 12a9f9b4..deab98b0 100644 --- a/demo/usb_host.c +++ b/demo/usb_host.c @@ -40,7 +40,6 @@ find_class: // clang-format on cdc_acm_class = (struct usbh_cdc_acm *)usbh_find_class_instance("/dev/ttyACM0"); if (cdc_acm_class == NULL) { - USB_LOG_RAW("do not find /dev/ttyACM0\r\n"); usb_osal_msleep(1000); continue; } @@ -102,7 +101,6 @@ find_class: // clang-format on hid_class = (struct usbh_hid *)usbh_find_class_instance("/dev/input0"); if (hid_class == NULL) { - USB_LOG_RAW("do not find /dev/input0\r\n"); usb_osal_msleep(1500); continue; } @@ -203,7 +201,6 @@ find_class: // clang-format on msc_class = (struct usbh_msc *)usbh_find_class_instance("/dev/sda"); if (msc_class == NULL) { - USB_LOG_RAW("do not find /dev/sda\r\n"); usb_osal_msleep(2000); continue; } |
