summaryrefslogtreecommitdiff
path: root/tmk_core/protocol/arm_atsam/usb/usb_main.h
diff options
context:
space:
mode:
authorfoxx1337 <foxx1337@yahoo.com>2020-03-26 03:34:57 +0100
committerFlorian Didron <fdidron@users.noreply.github.com>2020-06-12 17:00:27 +0900
commit694777041b1d08cca595cfcb65c5e7a8528ed1ba (patch)
tree9fa12d1ff470b33e539c65aeb9d8c465e72b59f2 /tmk_core/protocol/arm_atsam/usb/usb_main.h
parenta4fcea7a9045d6f31ffaec3bb8131a7c11f29a70 (diff)
Add RawHID support to ATSAM (Massdrop boards) (#8530)
* Add support for RAW endpoint for arm_atsam This the excellent work from helluvamatt/qmk_firmware in bb6eeb93b. * Reformat arm_atsam RAW endpoint code Co-authored-by: Matt Schneeberger <helluvamatt@gmail.com>
Diffstat (limited to 'tmk_core/protocol/arm_atsam/usb/usb_main.h')
-rw-r--r--tmk_core/protocol/arm_atsam/usb/usb_main.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/tmk_core/protocol/arm_atsam/usb/usb_main.h b/tmk_core/protocol/arm_atsam/usb/usb_main.h
index e1ffa3e184..3191b2fc13 100644
--- a/tmk_core/protocol/arm_atsam/usb/usb_main.h
+++ b/tmk_core/protocol/arm_atsam/usb/usb_main.h
@@ -97,6 +97,7 @@ void main_mou_disable(void);
extern volatile bool main_b_raw_enable;
bool main_raw_enable(void);
void main_raw_disable(void);
+void main_raw_receive(uint8_t *buffer, uint8_t len);
#endif // RAW
#endif // _MAIN_H_