ESPTerm - ESP8266 terminal emulator. Branches: [master] patches, [work] next release
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.
|
|
|
//
|
|
|
|
// Created by MightyPork on 2017/08/20.
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef ESP_VT100_FIRMWARE_VERSION_H
|
|
|
|
#define ESP_VT100_FIRMWARE_VERSION_H
|
|
|
|
|
|
|
|
#define FW_V_MAJOR 1
|
|
|
|
#define FW_V_MINOR 1
|
|
|
|
#define FW_V_PATCH 0
|
|
|
|
|
|
|
|
#define FIRMWARE_VERSION STR(FW_V_MAJOR) "." STR(FW_V_MINOR) "." STR(FW_V_PATCH) "+" GIT_HASH
|
|
|
|
#define FIRMWARE_VERSION_NUM (FW_V_MAJOR*1000 + FW_V_MINOR*10 + FW_V_PATCH) // this is used in ID queries
|
|
|
|
#define TERMINAL_GITHUB_REPO "https://github.com/espterm/espterm-firmware"
|
|
|
|
|
|
|
|
#endif //ESP_VT100_FIRMWARE_VERSION_H
|