1
0
Fork 0
mirror of https://github.com/opentx/opentx.git synced 2025-07-14 03:49:52 +03:00

X3 renamed to X9Lite (only in VERSION screen)

This commit is contained in:
Bertrand Songis 2019-04-29 08:22:47 +02:00
parent 86622712c3
commit ce0280818d
2 changed files with 4 additions and 1 deletions

View file

@ -24,7 +24,7 @@
#define STR2(s) #s
#define DEFNUMSTR(s) STR2(s)
#define EEPROM_STR DEFNUMSTR(EEPROM_VER);
#define EEPROM_STR DEFNUMSTR(EEPROM_VER);
#if defined(PCBHORUS)
#define TAB "\037\075"
@ -35,6 +35,8 @@
const char date_stamp[] = "DATE" TAB ": " DATE;
const char time_stamp[] = "TIME" TAB ": " TIME;
const char eeprom_stamp[] = "EEPR" TAB ": " EEPROM_STR;
#elif defined(PCBTARANIS) && defined(BOARD_NAME)
const char vers_stamp[] = "FW\037\033: " "opentx-" BOARD_NAME "\036VERS\037\033: " VERSION " (" GIT_STR ")" "\036DATE\037\033: " DATE " " TIME "\036EEPR\037\033: " EEPROM_STR;
#elif defined(PCBTARANIS)
const char vers_stamp[] = "FW\037\033: " "opentx-" FLAVOUR "\036VERS\037\033: " VERSION " (" GIT_STR ")" "\036DATE\037\033: " DATE " " TIME "\036EEPR\037\033: " EEPROM_STR;
#else