aboutsummaryrefslogtreecommitdiff
path: root/tmk_core/common/command.c
diff options
context:
space:
mode:
authorJames Young <xxiinophobia@yahoo.com>2020-02-29 12:00:00 -0800
committerJames Young <xxiinophobia@yahoo.com>2020-02-29 11:59:30 -0800
commit26eef35f07698d23aafae90e1c230b52e100a334 (patch)
treeeb8e43fc58ca55788e6e89430af0db55ea79e324 /tmk_core/common/command.c
parent85041ff05bf0e5f4ff4535caf6e638491a5614c8 (diff)
downloadqmk_firmware-26eef35f07698d23aafae90e1c230b52e100a334.tar.gz
qmk_firmware-26eef35f07698d23aafae90e1c230b52e100a334.zip
2020 February 29 Breaking Changes Update (#8064)
Diffstat (limited to 'tmk_core/common/command.c')
-rw-r--r--tmk_core/common/command.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/tmk_core/common/command.c b/tmk_core/common/command.c
index 900de5410..77a205eac 100644
--- a/tmk_core/common/command.c
+++ b/tmk_core/common/command.c
@@ -153,6 +153,9 @@ static void print_version(void) {
153 print("BUILD: (" __DATE__ ")\n"); 153 print("BUILD: (" __DATE__ ")\n");
154#else 154#else
155 print("BUILD: " STR(QMK_VERSION) " (" __TIME__ " " __DATE__ ")\n"); 155 print("BUILD: " STR(QMK_VERSION) " (" __TIME__ " " __DATE__ ")\n");
156# ifdef PROTOCOL_CHIBIOS
157 print("CHIBIOS: " STR(CHIBIOS_VERSION) ", CONTRIB: " STR(CHIBIOS_CONTRIB_VERSION) "\n");
158# endif
156#endif 159#endif
157 160
158 /* build options */ 161 /* build options */
@@ -182,6 +185,9 @@ static void print_version(void) {
182#ifdef NKRO_ENABLE 185#ifdef NKRO_ENABLE
183 " NKRO" 186 " NKRO"
184#endif 187#endif
188#ifdef LINK_TIME_OPTIMIZATION_ENABLE
189 " LTO"
190#endif
185 191
186 " " STR(BOOTLOADER_SIZE) "\n"); 192 " " STR(BOOTLOADER_SIZE) "\n");
187 193