diff options
author | tmk <nobody@nowhere> | 2013-09-11 14:04:33 +0900 |
---|---|---|
committer | tmk <nobody@nowhere> | 2013-09-11 14:04:33 +0900 |
commit | da24259632f79dad8ecc11d887d58a1e36bd5af8 (patch) | |
tree | 63ae148e3e6c0be4cd0ef35bf9db0162abae3af4 /common/command.c | |
parent | 60103a12b2ca0a572da1e72eb46bff19c499fc95 (diff) | |
parent | 259c4a040af658552d7a003655572c33d8fcef83 (diff) |
Merge branch 'keymap_section'
Diffstat (limited to 'common/command.c')
-rw-r--r-- | common/command.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/common/command.c b/common/command.c index 4649e00ab0..7415645b0d 100644 --- a/common/command.c +++ b/common/command.c @@ -252,9 +252,10 @@ static bool command_common(uint8_t code) case KC_V: // print version & information print("\n\n----- Version -----\n"); print(STR(DESCRIPTION) "\n"); - print(STR(MANUFACTURER) "(" STR(VENDOR_ID) ")/"); - print(STR(PRODUCT) "(" STR(PRODUCT_ID) ") "); - print("VERSION: " STR(DEVICE_VER) "\n"); + print("VID: " STR(VENDOR_ID) "(" STR(MANUFACTURER) ") PID: " STR(PRODUCT_ID) "(" STR(PRODUCT) ") VER: " STR(DEVICE_VER) "\n"); + print("SRC: " STR(VERSION) "\n"); + print("GCC: " STR(__GNUC__) "." STR(__GNUC_MINOR__) "." STR(__GNUC_PATCHLEVEL__) "\n"); + print("AVR-LIBC: " __AVR_LIBC_VERSION_STRING__ "\n"); break; case KC_T: // print timer print_val_hex32(timer_count); |