summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorhathach <[email protected]>2022-04-29 22:24:36 +0700
committerhathach <[email protected]>2022-04-29 22:24:36 +0700
commit0b30a10ab3c2f1fdcf4fae8f530c80bf5cffaf96 (patch)
treed7457b6e9e2b78c0c47b67eedb742ae997508407 /src
parent608577e05c9f2e2e8831d8819090ed376d08284b (diff)
configure hid_to_cdc example to build with rp2040 with pio usb as host
Diffstat (limited to 'src')
-rw-r--r--src/host/usbh.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/host/usbh.c b/src/host/usbh.c
index 74ffb5c38..e0e41a8d1 100644
--- a/src/host/usbh.c
+++ b/src/host/usbh.c
@@ -630,7 +630,7 @@ static bool usbh_control_xfer_cb (uint8_t dev_addr, uint8_t ep_addr, xfer_result
if (XFER_RESULT_SUCCESS != result)
{
- TU_LOG2("[%u:%u] Control %s\r\n", rhport, dev_addr, result == XFER_RESULT_STALLED ? "STALLED" : "FAILED");
+ TU_LOG1("[%u:%u] Control %s\r\n", rhport, dev_addr, result == XFER_RESULT_STALLED ? "STALLED" : "FAILED");
// terminate transfer if any stage failed
_xfer_complete(dev_addr, result);