[RAW HID] Make send func a bool

This commit is contained in:
Drashna Jael're
2024-06-12 22:47:56 -07:00
parent 07edd8fff4
commit e5fb4085c8
5 changed files with 13 additions and 10 deletions

View File

@@ -26,6 +26,6 @@ void raw_hid_receive(uint8_t *data, uint8_t length);
* \param data A pointer to the data to send. Must always be 32 bytes in length.
* \param length The length of the buffer. Must always be 32.
*/
void raw_hid_send(uint8_t *data, uint8_t length);
bool raw_hid_send(uint8_t *data, uint8_t length);
/** \} */