summaryrefslogtreecommitdiff
path: root/src/device
diff options
context:
space:
mode:
authorHiFiPhile <[email protected]>2025-09-18 19:14:27 +0200
committerHiFiPhile <[email protected]>2025-09-18 19:14:27 +0200
commit0961e06845591792031b69515bc56f2e5b3fa60d (patch)
treeaa2066fe98f727c4f139caf4b55e4754107c351a /src/device
parente621f2f77b19dce0a9f288ebd608ebf98d2f817b (diff)
Add usbd_edpt_xfer_fifo stub
Signed-off-by: HiFiPhile <[email protected]>
Diffstat (limited to 'src/device')
-rw-r--r--src/device/usbd.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/device/usbd.c b/src/device/usbd.c
index 5792359f6..b1aef0b38 100644
--- a/src/device/usbd.c
+++ b/src/device/usbd.c
@@ -401,6 +401,11 @@ TU_ATTR_WEAK usbd_class_driver_t const* usbd_app_driver_get_cb(uint8_t* driver_c
return NULL;
}
+TU_ATTR_WEAK bool dcd_edpt_xfer_fifo(uint8_t rhport, uint8_t ep_addr, tu_fifo_t * ff, uint16_t total_bytes) {
+ (void) rhport; (void) ep_addr; (void) ff; (void) total_bytes;
+ return false;
+}
+
//--------------------------------------------------------------------+
// Debug
//--------------------------------------------------------------------+