summaryrefslogtreecommitdiffstats
path: root/quantum/api/api_sysex.h
diff options
context:
space:
mode:
authorxyverz <xyverz@gmail.com>2016-12-07 02:36:19 +0100
committerxyverz <xyverz@gmail.com>2016-12-07 02:36:19 +0100
commit9216bc73778ef0fe5830b91511f37dd90fb0f0a1 (patch)
tree6c9f343c2485150c1912b7b68ade364a232015bd /quantum/api/api_sysex.h
parentf9cf4f75aec8cb24f054f243b985d9e5c18a2a80 (diff)
parent985a091a739c99736d5b17de5161831488dbc219 (diff)
downloadqmk_firmware-9216bc73778ef0fe5830b91511f37dd90fb0f0a1.tar.gz
qmk_firmware-9216bc73778ef0fe5830b91511f37dd90fb0f0a1.tar.xz
Merge remote-tracking branch 'upstream/master'
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