aboutsummaryrefslogtreecommitdiffstats
path: root/quantum/api/api_sysex.h
diff options
context:
space:
mode:
authorGravatar Priyadi Iman Nurcahyo <priyadi@priyadi.net>2016-12-04 23:57:47 +0700
committerGravatar Priyadi Iman Nurcahyo <priyadi@priyadi.net>2016-12-04 23:57:47 +0700
commitfc80aa9974faad146837cd26d9264b5a6c74dd4b (patch)
tree893e6f573c2753a51f67ed3636110850036405c7 /quantum/api/api_sysex.h
parenta8e5f6180585f46684d713976ad05d4d81b11ab1 (diff)
parentf39e1b5dfe7552f01dbc6eab95c268f41a9d98e2 (diff)
downloadqmk_firmware-fc80aa9974faad146837cd26d9264b5a6c74dd4b.tar.gz
Merge branch 'master' into promethium
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