Merge pull request #349 from michalprusa/rPi-port

2nd USART -> rPi port
This commit is contained in:
XPila 2017-12-28 01:29:37 +01:00 committed by GitHub
commit 996449dc0c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 5 deletions

View File

@ -9,7 +9,7 @@
// Firmware version
#define FW_version "3.1.1-RC3"
#define FW_build 138
#define FW_build 138m1
//#define FW_build --BUILD-NUMBER--
#define FW_version_build FW_version " b" STR(FW_build) "b"

View File

@ -1546,12 +1546,12 @@ const char * const MSG_SD_WRITE_TO_FILE_LANG_TABLE[1] PROGMEM = {
MSG_SD_WRITE_TO_FILE_EN
};
const char MSG_SECOND_SERIAL_OFF_EN[] PROGMEM = "2nd USART [off]";
const char MSG_SECOND_SERIAL_OFF_EN[] PROGMEM = "rPi port [off]";
const char * const MSG_SECOND_SERIAL_OFF_LANG_TABLE[1] PROGMEM = {
MSG_SECOND_SERIAL_OFF_EN
};
const char MSG_SECOND_SERIAL_ON_EN[] PROGMEM = "2nd USART [on]";
const char MSG_SECOND_SERIAL_ON_EN[] PROGMEM = "rPi port [on]";
const char * const MSG_SECOND_SERIAL_ON_LANG_TABLE[1] PROGMEM = {
MSG_SECOND_SERIAL_ON_EN
};

View File

@ -387,5 +387,5 @@
#define(length=17, lines=1) MSG_SORT_NONE "Sort: [None]"
#define(length=20, lines=1) MSG_SORTING "Sorting files"
#define(length=20, lines=4) MSG_FILE_CNT "Some files will not be sorted. Max. No. of files in 1 folder for sorting is 100."
#define(length=17, lines=1) MSG_SECOND_SERIAL_ON "2nd USART [on]"
#define(length=17, lines=1) MSG_SECOND_SERIAL_OFF "2nd USART [off]"
#define(length=17, lines=1) MSG_SECOND_SERIAL_ON "rPi port [on]"
#define(length=17, lines=1) MSG_SECOND_SERIAL_OFF "rPi port [off]"