summaryrefslogtreecommitdiffstats
path: root/quantum/api/api_sysex.h
diff options
context:
space:
mode:
authorJack Humbert <jack.humb@gmail.com>2016-11-26 21:37:46 +0100
committerJack Humbert <jack.humb@gmail.com>2016-11-26 21:38:44 +0100
commit7edac212c8ed8442bf4207e70dc8194631b2bf27 (patch)
treefd1905e1a24c237daa0e3e4172fe74f273d6b646 /quantum/api/api_sysex.h
parentf25596b8dc2f15f620c07164d871023d9284618c (diff)
downloadqmk_firmware-7edac212c8ed8442bf4207e70dc8194631b2bf27.tar.gz
qmk_firmware-7edac212c8ed8442bf4207e70dc8194631b2bf27.tar.xz
separated into api files/folder
Diffstat (limited to 'quantum/api/api_sysex.h')
-rw-r--r--quantum/api/api_sysex.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/quantum/api/api_sysex.h b/quantum/api/api_sysex.h
new file mode 100644
index 000000000..b947b60e5
--- /dev/null
+++ b/quantum/api/api_sysex.h
@@ -0,0 +1,10 @@
+#ifndef _API_SYSEX_H_
+#define _API_SYSEX_H_
+
+#include "api.h"
+
+void send_bytes_sysex(uint8_t message_type, uint8_t data_type, uint8_t * bytes, uint16_t length);
+
+#define SEND_BYTES(mt, dt, b, l) send_bytes_sysex(mt, dt, b, l)
+
+#endif \ No newline at end of file