diff options
| author | hathach <[email protected]> | 2013-05-31 21:24:40 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2013-05-31 21:24:40 +0700 |
| commit | 9e49056721e7fbba2bdb5933c7eabf9548f4279f (patch) | |
| tree | effefd26f21bd8d179aed469368c112df4b8127b /tinyusb/class/hid_device.h | |
| parent | 03d85acfc7cb18a5469146f98c210a5747218cb3 (diff) | |
refractor change tusbd_hid_keyboard_send_report API
Diffstat (limited to 'tinyusb/class/hid_device.h')
| -rw-r--r-- | tinyusb/class/hid_device.h | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/tinyusb/class/hid_device.h b/tinyusb/class/hid_device.h index f01685e25..38282f624 100644 --- a/tinyusb/class/hid_device.h +++ b/tinyusb/class/hid_device.h @@ -36,12 +36,6 @@ */ /**************************************************************************/ -/** \file - * \brief TBD - * - * \note TBD - */ - /** \ingroup TBD * \defgroup TBD * \brief TBD @@ -63,8 +57,8 @@ //--------------------------------------------------------------------+ // KEYBOARD Application API //--------------------------------------------------------------------+ -tusb_error_t tusbd_hid_keyboard_send_report(uint8_t modifier, uint8_t keycodes[], uint8_t numkey); -tusb_error_t tusb_hid_mouse_send(uint8_t buttons, int8_t x, int8_t y); +tusb_error_t tusbd_hid_keyboard_send_report(tusb_keyboard_report_t *p_kbd_report); +tusb_error_t tusbd_hid_mouse_send_report(uint8_t buttons, int8_t x, int8_t y); //--------------------------------------------------------------------+ // USBD-CLASS DRIVER API |
