X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=quantum%2Fquantum.h;h=e6adf974aba58aa006a876c58d00f2d19d6099c7;hb=fe001d46fd06924bb81fe8d506f5be8894db3df0;hp=0c6046649512c7d33ff924d6b38b92e342d33c7a;hpb=a3a312f8f4f4d836de494fe3502ea3175ba2a22c;p=qmk_firmware.git 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