diff options
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 0c6046649..e6adf974a 100644 --- a/quantum/quantum.h +++ b/quantum/quantum.h | |||
| @@ -59,6 +59,10 @@ extern uint32_t default_layer_state; | |||
| 59 | 59 | ||
| 60 | #include "process_tap_dance.h" | 60 | #include "process_tap_dance.h" |
| 61 | 61 | ||
| 62 | #ifdef PRINTING_ENABLE | ||
| 63 | #include "process_printer.h" | ||
| 64 | #endif | ||
| 65 | |||
| 62 | #define SEND_STRING(str) send_string(PSTR(str)) | 66 | #define SEND_STRING(str) send_string(PSTR(str)) |
| 63 | void send_string(const char *str); | 67 | void send_string(const char *str); |
| 64 | 68 | ||
| @@ -106,8 +110,15 @@ void breathing_speed_dec(uint8_t value); | |||
| 106 | #endif | 110 | #endif |
| 107 | 111 | ||
| 108 | #endif | 112 | #endif |
| 113 | void send_dword(uint32_t number); | ||
| 114 | void send_word(uint16_t number); | ||
| 115 | void send_byte(uint8_t number); | ||
| 116 | void send_nibble(uint8_t number); | ||
| 117 | |||
| 109 | 118 | ||
| 110 | void led_set_user(uint8_t usb_led); | 119 | void led_set_user(uint8_t usb_led); |
| 111 | void led_set_kb(uint8_t usb_led); | 120 | void led_set_kb(uint8_t usb_led); |
| 112 | 121 | ||
| 122 | void api_send_unicode(uint32_t unicode); | ||
| 123 | |||
| 113 | #endif | 124 | #endif |
