diff options
author | Ofer Plesser <plesserofer@gmail.com> | 2016-12-10 00:49:11 +0200 |
---|---|---|
committer | Ofer Plesser <plesserofer@gmail.com> | 2016-12-10 00:49:11 +0200 |
commit | eac8fa799909817bfc7cb4043448f85551154c6b (patch) | |
tree | 202951d31842163d6aa4899aa3c2647ff569e422 /quantum/quantum.h | |
parent | d0c667c790479ac50804db0d212d0adf157c3e0b (diff) |
Implemented basic key combination feature
Diffstat (limited to 'quantum/quantum.h')
-rw-r--r-- | quantum/quantum.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/quantum/quantum.h b/quantum/quantum.h index e6adf974ab..8614c053ab 100644 --- a/quantum/quantum.h +++ b/quantum/quantum.h @@ -63,6 +63,10 @@ extern uint32_t default_layer_state; #include "process_printer.h" #endif +#ifdef COMBO_ENABLE + #include "process_combo.h" +#endif + #define SEND_STRING(str) send_string(PSTR(str)) void send_string(const char *str); |