aboutsummaryrefslogtreecommitdiffstats
path: root/tmk_core/common/command.c
diff options
context:
space:
mode:
authorCallum Oakley <c.oakley108@gmail.com>2016-09-01 17:55:00 +0100
committerCallum Oakley <c.oakley108@gmail.com>2016-09-01 17:55:00 +0100
commit9c3193f22555119eb15f63f5ae5efe45e6d7358c (patch)
treea0dcfb3ed442c12a66b444c4c579711660c30657 /tmk_core/common/command.c
parent993d72b11fca8d50296570dc85e9354f8045c4a6 (diff)
parente28d151a8a1d458f3c18897c6095decc17b0c3a1 (diff)
downloadfirmware-9c3193f22555119eb15f63f5ae5efe45e6d7358c.tar.gz
firmware-9c3193f22555119eb15f63f5ae5efe45e6d7358c.tar.bz2
firmware-9c3193f22555119eb15f63f5ae5efe45e6d7358c.zip
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'tmk_core/common/command.c')
-rw-r--r--tmk_core/common/command.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/tmk_core/common/command.c b/tmk_core/common/command.c
index 084c9fe15..476fc6fe3 100644
--- a/tmk_core/common/command.c
+++ b/tmk_core/common/command.c
@@ -34,6 +34,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#include "command.h"
#include "backlight.h"
#include "quantum.h"
+#include "version.h"
#ifdef MOUSEKEY_ENABLE
#include "mousekey.h"
@@ -180,7 +181,7 @@ static void print_version(void)
print("VID: " STR(VENDOR_ID) "(" STR(MANUFACTURER) ") "
"PID: " STR(PRODUCT_ID) "(" STR(PRODUCT) ") "
"VER: " STR(DEVICE_VER) "\n");
- print("BUILD: " STR(VERSION) " (" __TIME__ " " __DATE__ ")\n");
+ print("BUILD: " STR(QMK_VERSION) " (" __TIME__ " " __DATE__ ")\n");
/* build options */
print("OPTIONS:"