diff options
author | QMK Bot <hello@qmk.fm> | 2021-03-25 11:34:28 +0000 |
---|---|---|
committer | QMK Bot <hello@qmk.fm> | 2021-03-25 11:34:28 +0000 |
commit | 8086837f6938f6efa8877033aee5551da90e9e5d (patch) | |
tree | 8e2c510c31607c18d6a351f971136adbb67b6ffa /tmk_core/common/avr | |
parent | ff41c22fdccd30cdba44ba840d68261f74f45135 (diff) | |
parent | 1bb6d8de6fa5063b21bc34549e1cf552e60d90ba (diff) | |
download | qmk_firmware-8086837f6938f6efa8877033aee5551da90e9e5d.tar.gz qmk_firmware-8086837f6938f6efa8877033aee5551da90e9e5d.zip |
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'tmk_core/common/avr')
-rw-r--r-- | tmk_core/common/avr/_print.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tmk_core/common/avr/_print.h b/tmk_core/common/avr/_print.h index f9b79bdf8..5c1fdd26d 100644 --- a/tmk_core/common/avr/_print.h +++ b/tmk_core/common/avr/_print.h | |||
@@ -28,6 +28,6 @@ | |||
28 | // Create user & normal print defines | 28 | // Create user & normal print defines |
29 | #define print(s) xputs(PSTR(s)) | 29 | #define print(s) xputs(PSTR(s)) |
30 | #define println(s) xputs(PSTR(s "\r\n")) | 30 | #define println(s) xputs(PSTR(s "\r\n")) |
31 | #define uprint(s) print(s) | 31 | #define uprint(s) xputs(PSTR(s)) |
32 | #define uprintln(s) println(s) | 32 | #define uprintln(s) xputs(PSTR(s "\r\n")) |
33 | #define uprintf(fmt, ...) xprintf(fmt, ##__VA_ARGS__) \ No newline at end of file | 33 | #define uprintf(fmt, ...) __xprintf(PSTR(fmt), ##__VA_ARGS__) \ No newline at end of file |