diff options
| author | hathach <[email protected]> | 2025-10-15 19:31:16 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2025-10-15 19:31:16 +0700 |
| commit | fd9d43d7c5785f4d5337bce1e5d5cede86b709c7 (patch) | |
| tree | 8206af26235d7d06adf446df96e0571426816b5d /src/portable | |
| parent | 55227a61466ffc39c3605b33be614d725dfe4070 (diff) | |
refactor spresense into cxd56. there is no orphan board in bsp.
Diffstat (limited to 'src/portable')
| -rw-r--r-- | src/portable/sony/cxd56/dcd_cxd56.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/portable/sony/cxd56/dcd_cxd56.c b/src/portable/sony/cxd56/dcd_cxd56.c index b16509c6f..a13cd152c 100644 --- a/src/portable/sony/cxd56/dcd_cxd56.c +++ b/src/portable/sony/cxd56/dcd_cxd56.c @@ -339,6 +339,19 @@ bool dcd_edpt_open(uint8_t rhport, tusb_desc_endpoint_t const *p_endpoint_desc) return true; } +bool dcd_edpt_iso_alloc(uint8_t rhport, uint8_t ep_addr, uint16_t largest_packet_size) { + (void) rhport; + (void) ep_addr; + (void) largest_packet_size; + return false; // TODO not implemented yet +} + +bool dcd_edpt_iso_activate(uint8_t rhport, tusb_desc_endpoint_t const *desc_ep) { + (void) rhport; + (void) desc_ep; + return false; // TODO not implemented yet +} + void dcd_edpt_close_all (uint8_t rhport) { (void) rhport; |
