Feature-ify Send String (#17275)

This commit is contained in:
Ryan
2022-07-02 22:10:08 +10:00
committed by GitHub
parent 7e41eb0277
commit 3ecb0a80af
12 changed files with 892 additions and 623 deletions

View File

@ -325,11 +325,13 @@ void autoshift_disable(void) {
# ifndef AUTO_SHIFT_NO_SETUP
void autoshift_timer_report(void) {
# ifdef SEND_STRING_ENABLE
char display[8];
snprintf(display, 8, "\n%d\n", autoshift_timeout);
send_string((const char *)display);
# endif
}
# endif