Removed a fixed length array from Light version.

This commit is contained in:
Nathan Seidle 2013-07-15 23:26:53 -06:00
parent d0b7a6ebab
commit 521a7e0680

View File

@ -143,7 +143,9 @@ SerialPort<0, 900, 0> NewSerial;
#define RAM_TESTING 0 //Off
#define CFG_FILENAME "config.txt" //This is the name of the file that contains the unit settings
#define CFG_LENGTH 20 //Length of text found in config file: "115200,103,14,0,1,1\0" = 115200 bps, escape char of ASCII(103), 14 times, new log mode, verbose on, echo on.
#define MAX_CFG "115200,103,14,0,1,1,0\0" //= 115200 bps, escape char of ASCII(103), 14 times, new log mode, verbose on, echo on, ignore RX false.
#define CFG_LENGTH (strlen(MAX_CFG) + 1) //Length of text found in config file. strlen ignores \0 so we have to add it back
#define SEQ_FILENAME "SEQLOG00.TXT" //This is the name for the file when you're in sequential modeu
//Internal EEPROM locations for the user settings