switch to teensy 3.0

This commit is contained in:
hg
2014-03-08 00:23:46 +01:00
parent 987be758ad
commit 89771e70d1
11 changed files with 269 additions and 207 deletions

View File

@ -60,61 +60,60 @@ const uint8_t CMDSERVER_CMD_NOT_FOUND_KEY = 44;
const uint8_t THERMCONFIG_HELP_KEY = 45;
const uint8_t THERMVALUES_HELP_KEY = 46;
const uint8_t THERMCALIBRATE_HELP_KEY = 47;
const uint8_t CALIBRATION_ZEOR_MODE_HINT_KEY = 48;
/*
RESOURCES:
"Text1"
"PeriodMeasure (ms): "
"Alpha: "
"Calibration: "
"Info: "
"Debug: "
"COMPILE_TIME_DEBUG: "
"TimeOuts: "
"Cycles: "
"Period (ms): "
"Alpha: "
"index: "
"cal: "
"t: "
"ts: "
", "
" enable : enable the calibration mode"
" disable : disable the calibration mode"
" show : show parameters for calibration process"
" r : set value of calibration resistor"
" start <0..3>: start calibration on channel"
" stop <10..3>: stop calibration on channel"
" enabled : "
" r_cal : "
"setTemperature: i="
"t="
"t_smoothed="
"CONF: "
"MODE: "
"Initializing EEPROM"
"State 0"
"Switching to State 1"
"Switching to State 10"
"State 9"
"Timeout: "
"State 10"
"No, no, we are in calibration mode, so directly switch to state 20"
"Switching to state 11"
"r_avg on channel "
"calibration factor: "
"Calibration stopped"
"Save calibration factor for channel "
": "
"HELP List this help for all commands"
"command not found"
"Thermometer configuration operations"
"Show thermometer measurement values"
"Thermometer calibration operations"
END RESOURCES
*/
const String TEXT_RESOURCES[] = {
"Text1",
"PeriodMeasure (ms): ",
"Alpha: ",
"Calibration: ",
"Info: ",
"Debug: ",
"COMPILE_TIME_DEBUG: ",
"TimeOuts: ",
"Cycles: ",
"Period (ms): ",
"Alpha: ",
"index: ",
"cal: ",
"t: ",
"ts: ",
", ",
" enable : enable the calibration mode",
" disable : disable the calibration mode",
" show : show parameters for calibration process",
" r : set value of calibration resistor",
" start <0..3>: start calibration on channel",
" stop <0..3>: stop calibration on channel",
" enabled : ",
" r_cal : ",
"setTemperature: i=",
"t=",
"t_smoothed=",
"CONF: ",
"MODE: ",
"Initializing EEPROM",
"State 0",
"Switching to State 1",
"Switching to State 10",
"State 9",
"Timeout: ",
"State 10",
"No, no, we are in calibration high mode, so directly switch to state 20",
"Switching to state 11",
"r_avg on channel ",
"calibration factor: ",
"Calibration stopped",
"Save calibration factor for channel ",
": ",
"HELP List this help for all commands",
"command not found",
"Thermometer configuration operations",
"Show thermometer measurement values",
"Thermometer calibration operations",
"No, no, we are in calibration zero mode, so directly switch to state 20",
};