diff options
author | climbalima <climbalima@gmail.com> | 2016-12-10 23:15:47 -0500 |
---|---|---|
committer | climbalima <climbalima@gmail.com> | 2016-12-10 23:15:47 -0500 |
commit | 73d60182969023984ff275117d49a4824c6987d0 (patch) | |
tree | fdac811b117c49f78de04c407d4bef76e6df5772 /quantum/quantum.h | |
parent | 56515ba5034e83c598891686cfdc43c186e5d487 (diff) | |
parent | 985a091a739c99736d5b17de5161831488dbc219 (diff) | |
download | qmk_firmware-73d60182969023984ff275117d49a4824c6987d0.tar.gz qmk_firmware-73d60182969023984ff275117d49a4824c6987d0.zip |
Merge branch 'master' of https://github.com/jackhumbert/qmk_firmware
Diffstat (limited to 'quantum/quantum.h')
-rw-r--r-- | quantum/quantum.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/quantum/quantum.h b/quantum/quantum.h index 0c60466495..e6adf974ab 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 |