remove weak from dcd_edpt_close() for port without TUP_DCD_EDPT_ISO_ALLOC

This commit is contained in:
hathach
2024-08-19 20:08:55 +07:00
parent 215832397b
commit ea4f9ceb58
6 changed files with 37 additions and 1 deletions

View File

@@ -335,6 +335,11 @@ bool dcd_edpt_open(uint8_t rhport, tusb_desc_endpoint_t const * p_endpoint_desc)
return true;
}
void dcd_edpt_close(uint8_t rhport, uint8_t ep_addr) {
(void) rhport; (void) ep_addr;
// TODO implement dcd_edpt_close()
}
void dcd_edpt_close_all (uint8_t rhport)
{
(void) rhport;