diff options
| author | hathach <[email protected]> | 2024-03-22 11:42:33 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2024-03-22 11:42:33 +0700 |
| commit | 74bd2647589790b3bee49146774133c2061a34fe (patch) | |
| tree | e318a7b93b7f00133f4b658458548b3e4c61270d /src/class/cdc/cdc_host.c | |
| parent | 08b09926a4f33d94b15d7e87b88b1b9a14b95388 (diff) | |
adding deinit() stub for usbh/hcd class driver
add TUSB_VERSION_BUILD, also add TUSB_VERSION_NUMBER
Diffstat (limited to 'src/class/cdc/cdc_host.c')
| -rw-r--r-- | src/class/cdc/cdc_host.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/class/cdc/cdc_host.c b/src/class/cdc/cdc_host.c index 2fb37d835..14f380b40 100644 --- a/src/class/cdc/cdc_host.c +++ b/src/class/cdc/cdc_host.c @@ -637,6 +637,10 @@ void cdch_init(void) { } } +bool cdch_deinit(void) { + return true; +} + void cdch_close(uint8_t daddr) { for (uint8_t idx = 0; idx < CFG_TUH_CDC; idx++) { cdch_interface_t* p_cdc = &cdch_data[idx]; |
