diff options
| author | hathach <[email protected]> | 2021-07-01 22:46:39 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2021-07-01 22:46:39 +0700 |
| commit | ca98996e1f9ac802c60d9da4c28ab0e16ca640d6 (patch) | |
| tree | e231ef0be071290e5cb8819f7d67b17811e5236a /src/device/usbd.c | |
| parent | 3b539fdd8d8e9d48756cf5f6e0d605af3972651c (diff) | |
better support for hid device set/get protocol
add caplock detection for hid_composite
Diffstat (limited to 'src/device/usbd.c')
| -rw-r--r-- | src/device/usbd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/device/usbd.c b/src/device/usbd.c index 587d487dc..af4fd58c4 100644 --- a/src/device/usbd.c +++ b/src/device/usbd.c @@ -1243,7 +1243,7 @@ bool usbd_edpt_xfer(uint8_t rhport, uint8_t ep_addr, uint8_t * buffer, uint16_t uint8_t const epnum = tu_edpt_number(ep_addr); uint8_t const dir = tu_edpt_dir(ep_addr); - TU_LOG2(" Queue EP %02X with %u bytes ... ", ep_addr, total_bytes); + TU_LOG2(" Queue EP %02X with %u bytes ...\r\n", ep_addr, total_bytes); // Attempt to transfer on a busy endpoint, sound like an race condition ! TU_ASSERT(_usbd_dev.ep_status[epnum][dir].busy == 0); |
