summaryrefslogtreecommitdiff
path: root/tinyusb/class/hid_device.h
diff options
context:
space:
mode:
Diffstat (limited to 'tinyusb/class/hid_device.h')
-rw-r--r--tinyusb/class/hid_device.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/tinyusb/class/hid_device.h b/tinyusb/class/hid_device.h
index c909422d5..5808dc214 100644
--- a/tinyusb/class/hid_device.h
+++ b/tinyusb/class/hid_device.h
@@ -81,18 +81,6 @@ tusb_error_t tud_hid_keyboard_send(uint8_t coreid, hid_keyboard_report_t const *
// APPLICATION CALLBACK API
//--------------------------------------------------------------------+
-/** \brief Callback function that will be invoked when this interface is mounted (configured) by USB host
- * \param[in] coreid USB Controller ID of the interface
- * \note This callback should be used by Application to \b set-up interface-related data
- */
-void tud_hid_keyboard_mounted_cb(uint8_t coreid);
-
-/** \brief Callback function that will be invoked when this interface is unmounted (bus reset/unplugged)
- * \param[in] coreid USB Controller ID of the interface
- * \note This callback should be used by Application to \b tear-down interface-related data
- */
-void tud_hid_keyboard_unmounted_cb(uint8_t coreid);
-
/** \brief Callback function that is invoked when an transferring event occurred
* after invoking \ref tusbd_hid_keyboard_send
* \param[in] coreid USB Controller ID
@@ -165,17 +153,6 @@ tusb_error_t tud_hid_mouse_send(uint8_t coreid, hid_mouse_report_t const *p_repo
//--------------------------------------------------------------------+
// APPLICATION CALLBACK API
//--------------------------------------------------------------------+
-/** \brief Callback function that will be invoked when this interface is mounted (configured) by USB host
- * \param[in] coreid USB Controller ID of the interface
- * \note This callback should be used by Application to \b set-up interface-related data
- */
-void tud_hid_mouse_mounted_cb(uint8_t coreid);
-
-/** \brief Callback function that will be invoked when this interface is unmounted (bus reset/unplugged)
- * \param[in] coreid USB Controller ID of the interface
- * \note This callback should be used by Application to \b tear-down interface-related data
- */
-void tud_hid_mouse_unmounted_cb(uint8_t coreid);
/** \brief Callback function that is invoked when an transferring event occurred
* after invoking \ref tusbd_hid_mouse_send