improve uvc debug message

This commit is contained in:
hathach
2024-03-15 20:39:45 +07:00
parent 6352081ded
commit 5630030a22
4 changed files with 157 additions and 95 deletions

View File

@@ -319,7 +319,7 @@ void usbd_driver_print_control_complete_name(usbd_control_xfer_cb_t callback) {
for (uint8_t i = 0; i < TOTAL_DRIVER_COUNT; i++) {
usbd_class_driver_t const* driver = get_driver(i);
if (driver && driver->control_xfer_cb == callback) {
TU_LOG_USBD(" %s control complete\r\n", driver->name);
TU_LOG_USBD("%s control complete\r\n", driver->name);
return;
}
}