diff options
| author | hathach <[email protected]> | 2019-07-12 22:03:40 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2019-07-12 22:03:40 +0700 |
| commit | cb4e6837e9f1aa02644e1ad88ffff43b59470a4e (patch) | |
| tree | 8c41daa9f9425770e9515c1aad5312eee1d3f4e5 /src/class/hid/hid_host.h | |
| parent | 2b7acd554a00f196394fdb91cd11a18e7981949f (diff) | |
clean up, rename internal driver control_request_complete to simply control_complete
Diffstat (limited to 'src/class/hid/hid_host.h')
| -rw-r--r-- | src/class/hid/hid_host.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/class/hid/hid_host.h b/src/class/hid/hid_host.h index 50eabba3e..1c619c570 100644 --- a/src/class/hid/hid_host.h +++ b/src/class/hid/hid_host.h @@ -55,7 +55,7 @@ extern uint8_t const hid_keycode_to_ascii_tbl[2][128]; // TODO used weak attr if * \retval true if device supports Keyboard interface
* \retval false if device does not support Keyboard interface or is not mounted
*/
-bool tuh_hid_keyboard_is_mounted(uint8_t dev_addr);
+bool tuh_hid_keyboard_is_mounted(uint8_t dev_addr);
/** \brief Check if the interface is currently busy or not
* \param[in] dev_addr device address
@@ -64,7 +64,7 @@ bool tuh_hid_keyboard_is_mounted(uint8_t dev_addr); * \note This function is primarily used for polling/waiting result after \ref tuh_hid_keyboard_get_report.
* Alternatively, asynchronous event API can be used
*/
-bool tuh_hid_keyboard_is_busy(uint8_t dev_addr);
+bool tuh_hid_keyboard_is_busy(uint8_t dev_addr);
/** \brief Perform a get report from Keyboard interface
* \param[in] dev_addr device address
|
