summaryrefslogtreecommitdiff
path: root/src/portable/raspberrypi/pio_usb
diff options
context:
space:
mode:
authorLars Pötter <[email protected]>2023-07-02 10:53:08 +0200
committerLars Pötter <[email protected]>2023-07-02 10:53:08 +0200
commit2029ca9536e7e889f0f420218136e7bd1ac091fc (patch)
tree3d68d5d705d359c8d60dcea2cd2e5529d61d1b5d /src/portable/raspberrypi/pio_usb
parent0693462ebad20338de78aeb93d60d6c3c73a6ca7 (diff)
also fixed pico_trac() log messages.
Diffstat (limited to 'src/portable/raspberrypi/pio_usb')
-rw-r--r--src/portable/raspberrypi/pio_usb/hcd_pio_usb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/portable/raspberrypi/pio_usb/hcd_pio_usb.c b/src/portable/raspberrypi/pio_usb/hcd_pio_usb.c
index 264af2e7a..130716da4 100644
--- a/src/portable/raspberrypi/pio_usb/hcd_pio_usb.c
+++ b/src/portable/raspberrypi/pio_usb/hcd_pio_usb.c
@@ -150,11 +150,11 @@ bool hcd_setup_send(uint8_t rhport, uint8_t dev_addr, uint8_t const setup_packet
// // so if any transfer is active on epx, we are busy. Interrupt endpoints have their own
// // EPX so ep->active will only be busy if there is a pending transfer on that interrupt endpoint
// // on that device
-// pico_trace("hcd_edpt_busy dev addr %d ep_addr 0x%x\n", dev_addr, ep_addr);
+// pico_trace("hcd_edpt_busy dev addr %d ep_addr 0x%x\r\n", dev_addr, ep_addr);
// struct hw_endpoint *ep = get_dev_ep(dev_addr, ep_addr);
// assert(ep);
// bool busy = ep->active;
-// pico_trace("busy == %d\n", busy);
+// pico_trace("busy == %d\r\n", busy);
// return busy;
//}