more clean up

This commit is contained in:
hathach
2018-07-13 14:26:40 +07:00
parent ffdd925854
commit 584b6f716d
5 changed files with 17 additions and 17 deletions

View File

@@ -78,18 +78,16 @@ bool tud_mounted(void);
// APPLICATION CALLBACK
//--------------------------------------------------------------------+
/** \brief Callback function that will be invoked device is mounted (configured) by USB host
* \param[in] rhport USB Controller ID of the interface
* \note This callback should be used by Application to \b set-up application data
*/
void tud_mount_cb(uint8_t rhport);
void tud_mount_cb(void);
/** \brief Callback function that will be invoked when device is unmounted (bus reset/unplugged)
* \param[in] rhport USB Controller ID of the interface
* \note This callback should be used by Application to \b tear-down application data
*/
void tud_umount_cb(uint8_t rhport);
void tud_umount_cb(void);
//void tud_device_suspended_cb(uint8_t rhport);
//void tud_device_suspended_cb(void);
#ifdef __cplusplus
}