summaryrefslogtreecommitdiff
path: root/examples/host
diff options
context:
space:
mode:
authorhathach <[email protected]>2018-12-10 19:25:57 +0700
committerhathach <[email protected]>2018-12-10 19:25:57 +0700
commit4e7596ca9cdde3bd1197cf1853c370d8da48d7a2 (patch)
treed17cf308413a25236417bad16d6952f440e14a73 /examples/host
parent9c4c7975024e9b971a43a866c1feffb419dd8f5b (diff)
add tuh_mount_cb/tuh_umount_cb
Diffstat (limited to 'examples/host')
-rw-r--r--examples/host/cdc_msc_hid/src/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/host/cdc_msc_hid/src/main.c b/examples/host/cdc_msc_hid/src/main.c
index 4d197a16a..ebb540782 100644
--- a/examples/host/cdc_msc_hid/src/main.c
+++ b/examples/host/cdc_msc_hid/src/main.c
@@ -84,7 +84,7 @@ int main(void)
#if CFG_TUH_CDC
CFG_TUSB_MEM_SECTION static char serial_in_buffer[64] = { 0 };
-void tuh_cdc_mounted_cb(uint8_t dev_addr)
+void tuh_mount_cb(uint8_t dev_addr)
{
// application set-up
printf("\na CDC device (address %d) is mounted\n", dev_addr);
@@ -92,7 +92,7 @@ void tuh_cdc_mounted_cb(uint8_t dev_addr)
tuh_cdc_receive(dev_addr, serial_in_buffer, sizeof(serial_in_buffer), true); // schedule first transfer
}
-void tuh_cdc_unmounted_cb(uint8_t dev_addr)
+void tuh_umount_cb(uint8_t dev_addr)
{
// application tear-down
printf("\na CDC device (address %d) is unmounted \n", dev_addr);