You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
507 B
17 lines
507 B
7 years ago
|
//
|
||
|
// Created by MightyPork on 2017/08/20.
|
||
|
//
|
||
|
|
||
|
#ifndef ESP_VT100_FIRMWARE_VERSION_H
|
||
|
#define ESP_VT100_FIRMWARE_VERSION_H
|
||
8 years ago
|
|
||
7 years ago
|
#define FW_V_MAJOR 0
|
||
|
#define FW_V_MINOR 6
|
||
|
#define FW_V_PATCH 7
|
||
|
|
||
|
#define FIRMWARE_VERSION STR(FW_V_MAJOR) "." STR(FW_V_MINOR) "." STR(FW_V_PATCH) "+" GIT_HASH
|
||
|
#define FIRMWARE_VERSION_NUM (FW_V_MAJOR*10000 + FW_V_MINOR*100 + FW_V_PATCH) // this is used in ID queries
|
||
8 years ago
|
#define TERMINAL_GITHUB_REPO "https://github.com/MightyPork/esp-vt100-firmware"
|
||
|
|
||
7 years ago
|
#endif //ESP_VT100_FIRMWARE_VERSION_H
|