summaryrefslogtreecommitdiffstats
path: root/quantum/quantum.h
diff options
context:
space:
mode:
authorShayne Holmes <shayneh@qualtrics.com>2017-06-29 19:02:38 +0200
committerJack Humbert <jack.humb@gmail.com>2017-07-05 16:55:47 +0200
commitfdc2e8058b46f569a7a68ab21ef9cb3d20a9bdc2 (patch)
tree0a2b0ff09b4cc141392e78b8fc172fcdce172f51 /quantum/quantum.h
parentc41d40c4228d59639ed480f323156a338aefb9f8 (diff)
downloadqmk_firmware-fdc2e8058b46f569a7a68ab21ef9cb3d20a9bdc2.tar.gz
qmk_firmware-fdc2e8058b46f569a7a68ab21ef9cb3d20a9bdc2.tar.xz
Allow broader send_string layout customizability via compile flag
Refactor new-ish JIS_KEYCODE send_string implementation with existing send_string Reshuffle JIS in line with other alternative keycodes for sendstring, and make them all accessible via compile-time options Add a separate function to allow sending a string with a delay.
Diffstat (limited to 'quantum/quantum.h')
-rw-r--r--quantum/quantum.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/quantum/quantum.h b/quantum/quantum.h
index 2bf18d095..1dafbf3b0 100644
--- a/quantum/quantum.h
+++ b/quantum/quantum.h
@@ -96,6 +96,7 @@ extern uint32_t default_layer_state;
#define SEND_STRING(str) send_string(PSTR(str))
void send_string(const char *str);
+void send_string_with_delay(const char *str, uint8_t interval);
// For tri-layer
void update_tri_layer(uint8_t layer1, uint8_t layer2, uint8_t layer3);