diff options
Diffstat (limited to 'tmk_core/common')
| -rw-r--r-- | tmk_core/common/command.c | 4 | 
1 files changed, 4 insertions, 0 deletions
| diff --git a/tmk_core/common/command.c b/tmk_core/common/command.c index f79d5a257b..aab99290d2 100644 --- a/tmk_core/common/command.c +++ b/tmk_core/common/command.c @@ -181,7 +181,11 @@ static void print_version(void)      print("VID: " STR(VENDOR_ID) "(" STR(MANUFACTURER) ") "            "PID: " STR(PRODUCT_ID) "(" STR(PRODUCT) ") "            "VER: " STR(DEVICE_VER) "\n"); +#ifdef SKIP_VERSION +    print("BUILD:  (" __DATE__ ")\n"); +#else      print("BUILD: " STR(QMK_VERSION) " (" __TIME__ " " __DATE__ ")\n"); +#endif      /* build options */      print("OPTIONS:" | 
