add more doxygen docs
start to use TUSB_Error_t
This commit is contained in:
@@ -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.
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user