diff options
author | Ryan <fauxpark@gmail.com> | 2022-07-02 22:10:08 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-02 22:10:08 +1000 |
commit | 3ecb0a80af9e4ce4194a34032642933641730706 (patch) | |
tree | 3d4b0e24336762dc9b45a746334ebc09a5c59db1 /quantum/quantum.h | |
parent | 7e41eb02773207dd4a014575fe750f8d511bfb5b (diff) | |
download | qmk_firmware-3ecb0a80af9e4ce4194a34032642933641730706.tar.gz qmk_firmware-3ecb0a80af9e4ce4194a34032642933641730706.zip |
Feature-ify Send String (#17275)
Diffstat (limited to 'quantum/quantum.h')
-rw-r--r-- | quantum/quantum.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/quantum/quantum.h b/quantum/quantum.h index 8a7a20c706..f3a8a323c7 100644 --- a/quantum/quantum.h +++ b/quantum/quantum.h @@ -49,7 +49,6 @@ #include "action_util.h" #include "action_tapping.h" #include "print.h" -#include "send_string.h" #include "suspend.h" #include <stddef.h> #include <stdlib.h> @@ -169,6 +168,10 @@ extern layer_state_t layer_state; # include "hd44780.h" #endif +#ifdef SEND_STRING_ENABLE +# include "send_string.h" +#endif + #ifdef HAPTIC_ENABLE # include "haptic.h" # include "process_haptic.h" |