diff options
author | Jack Humbert <jack.humb@gmail.com> | 2017-02-06 19:31:45 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-06 19:31:45 -0500 |
commit | 4348fb54d6eb80e8d82c0724be647631bdd524d3 (patch) | |
tree | 7e51344981e0e9daef487c3cbe7b4508735f91bf /quantum/quantum.h | |
parent | b6ffda484971306264c8c95facf75eec4c85b62a (diff) | |
parent | 40abf8bc9ce22cab472f79e3a97c413ac5648986 (diff) |
Merge pull request #960 from ofples/feature/combos
Keyboard combination triggers
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); |