diff options
Diffstat (limited to 'tinyusb/class/hid.h')
| -rw-r--r-- | tinyusb/class/hid.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tinyusb/class/hid.h b/tinyusb/class/hid.h index 8ba5eea77..aabf5df8a 100644 --- a/tinyusb/class/hid.h +++ b/tinyusb/class/hid.h @@ -46,11 +46,11 @@ #include "common/common.h" #include "device/dcd.h" -ErrorCode_t usb_hid_init(USBD_HANDLE_T hUsb, USB_INTERFACE_DESCRIPTOR const *const pIntfDesc, uint8_t const * const pHIDReportDesc, uint32_t ReportDescLength, uint32_t* mem_base, uint32_t* mem_size); -ErrorCode_t usb_hid_configured(USBD_HANDLE_T hUsb); +TUSB_Error_t usb_hid_init(USBD_HANDLE_T hUsb, USB_INTERFACE_DESCRIPTOR const *const pIntfDesc, uint8_t const * const pHIDReportDesc, uint32_t ReportDescLength, uint32_t* mem_base, uint32_t* mem_size) ATTR_NON_NULL; +TUSB_Error_t usb_hid_configured(USBD_HANDLE_T hUsb); -ErrorCode_t usb_hid_keyboard_sendKeys(uint8_t modifier, uint8_t keycodes[], uint8_t numkey); -ErrorCode_t usb_hid_mouse_send(uint8_t buttons, int8_t x, int8_t y); +TUSB_Error_t usb_hid_keyboard_sendKeys(uint8_t modifier, uint8_t keycodes[], uint8_t numkey) ATTR_NON_NULL; +TUSB_Error_t usb_hid_mouse_send(uint8_t buttons, int8_t x, int8_t y); /** \brief Standard HID Boot Protocol Mouse Report. * |
