1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Merge pull request #17473 from Ollrogge/hid_pr

usbus/hid: Remove unimplemented function declaration
This commit is contained in:
benpicco 2022-01-06 00:35:37 +01:00 committed by GitHub
commit 0b43b8d1f1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -102,18 +102,6 @@ void usbus_hid_init(usbus_t *usbus, usbus_hid_device_t *hid,
usbus_hid_cb_t cb, const uint8_t *report_desc,
size_t report_desc_size);
/**
* @brief Submit bytes to the HID handler
*
* @param[in] hid USBUS HID handler context
* @param[in] buf buffer to submit
* @param[in] len length of the submitted buffer
*
* @return Number of bytes added to the HID ring buffer
*/
size_t usbus_hid_submit(usbus_hid_device_t *hid, const uint8_t *buf,
size_t len);
#ifdef __cplusplus
}
#endif