summaryrefslogtreecommitdiffstats
path: root/quantum/quantum.h
diff options
context:
space:
mode:
authorPriyadi Iman Nurcahyo <priyadi@priyadi.net>2016-12-04 17:57:47 +0100
committerPriyadi Iman Nurcahyo <priyadi@priyadi.net>2016-12-04 17:57:47 +0100
commitfc80aa9974faad146837cd26d9264b5a6c74dd4b (patch)
tree893e6f573c2753a51f67ed3636110850036405c7 /quantum/quantum.h
parenta8e5f6180585f46684d713976ad05d4d81b11ab1 (diff)
parentf39e1b5dfe7552f01dbc6eab95c268f41a9d98e2 (diff)
downloadqmk_firmware-fc80aa9974faad146837cd26d9264b5a6c74dd4b.tar.gz
qmk_firmware-fc80aa9974faad146837cd26d9264b5a6c74dd4b.tar.xz
Merge branch 'master' into promethium
Diffstat (limited to 'quantum/quantum.h')
-rw-r--r--quantum/quantum.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/quantum/quantum.h b/quantum/quantum.h
index 0c6046649..e6adf974a 100644
--- a/quantum/quantum.h
+++ b/quantum/quantum.h
@@ -59,6 +59,10 @@ extern uint32_t default_layer_state;
#include "process_tap_dance.h"
+#ifdef PRINTING_ENABLE
+ #include "process_printer.h"
+#endif
+
#define SEND_STRING(str) send_string(PSTR(str))
void send_string(const char *str);
@@ -106,8 +110,15 @@ void breathing_speed_dec(uint8_t value);
#endif
#endif
+void send_dword(uint32_t number);
+void send_word(uint16_t number);
+void send_byte(uint8_t number);
+void send_nibble(uint8_t number);
+
void led_set_user(uint8_t usb_led);
void led_set_kb(uint8_t usb_led);
+void api_send_unicode(uint32_t unicode);
+
#endif