Revert "[RAW HID] Make send func a bool"

This reverts commit e5fb4085c8.
This commit is contained in:
Drashna Jael're
2024-06-25 18:38:50 -07:00
parent e5fb4085c8
commit 8b29b83dac
5 changed files with 10 additions and 13 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.
*/
bool raw_hid_send(uint8_t *data, uint8_t length);
void raw_hid_send(uint8_t *data, uint8_t length);
/** \} */