May signature
This commit is contained in:
parent
5aa4cbc36c
commit
02564d3218
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
queryCommand = "Q"
|
queryCommand = "Q"
|
||||||
;signature = 20
|
;signature = 20
|
||||||
signature = "speeduino 201705-dev"
|
signature = "speeduino 201705"
|
||||||
versionInfo = "S" ; Put this in the title bar.
|
versionInfo = "S" ; Put this in the title bar.
|
||||||
|
|
||||||
;[TunerStudio]
|
;[TunerStudio]
|
||||||
|
@ -634,10 +634,13 @@ page = 10
|
||||||
unused10_97 = scalar, U08, 97, "", 1, 0, 0, 255, 0
|
unused10_97 = scalar, U08, 97, "", 1, 0, 0, 255, 0
|
||||||
unused10_98 = scalar, U08, 98, "", 1, 0, 0, 255, 0
|
unused10_98 = scalar, U08, 98, "", 1, 0, 0, 255, 0
|
||||||
unused10_99 = scalar, U08, 99, "", 1, 0, 0, 255, 0
|
unused10_99 = scalar, U08, 99, "", 1, 0, 0, 255, 0
|
||||||
speeduino_tsCanId = bits, U08, 100, [0:3], $tsCanId_list
|
speeduino_tsCanId = bits, U08, 100, [0:3], $tsCanId_list
|
||||||
true_address = bits, U16, 101, [0:10], $CAN_ADDRESS_HEX
|
;true_address = bits, U16, 101, [0:10], $CAN_ADDRESS_HEX
|
||||||
realtime_base_address = bits, U16, 103, [0:10], $CAN_ADDRESS_HEX
|
;realtime_base_address = bits, U16, 103, [0:10], $CAN_ADDRESS_HEX
|
||||||
obd_address = bits, U16, 105, [0:10], $CAN_ADDRESS_HEX
|
;obd_address = bits, U16, 105, [0:10], $CAN_ADDRESS_HEX
|
||||||
|
unused10_101 = scalar, U16, 101, "", 1, 0, 0, 255, 0
|
||||||
|
unused10_103 = scalar, U16, 103, "", 1, 0, 0, 255, 0
|
||||||
|
unused10_105 = scalar, U16, 105, "", 1, 0, 0, 255, 0
|
||||||
|
|
||||||
;AFR offset for WUE VeAnalyze
|
;AFR offset for WUE VeAnalyze
|
||||||
;wueAFRRates = array, U08, 107, [10], "%", 1.0, 0.0, 0.0, 255, 0
|
;wueAFRRates = array, U08, 107, [10], "%", 1.0, 0.0, 0.0, 255, 0
|
||||||
|
@ -735,9 +738,9 @@ page = 10
|
||||||
defaultValue = boostMaxDuty,100
|
defaultValue = boostMaxDuty,100
|
||||||
defaultValue = sparkDur, 1.0
|
defaultValue = sparkDur, 1.0
|
||||||
defaultValue = speeduino_tsCanId, 0
|
defaultValue = speeduino_tsCanId, 0
|
||||||
defaultValue = true_address, 0
|
;defaultValue = true_address, 0
|
||||||
defaultValue = realtime_base_address, 0
|
;defaultValue = realtime_base_address, 0
|
||||||
defaultValue = obd_address, 0
|
;defaultValue = obd_address, 0
|
||||||
|
|
||||||
;Default pins
|
;Default pins
|
||||||
defaultValue = fanPin, 0
|
defaultValue = fanPin, 0
|
||||||
|
@ -2270,6 +2273,7 @@ cmdtestspk450dc = "E\x03\x0C"
|
||||||
entry = flex, "Eth %", int, "%d", { flexEnabled }
|
entry = flex, "Eth %", int, "%d", { flexEnabled }
|
||||||
entry = errorNum, "Error #", int, "%d"
|
entry = errorNum, "Error #", int, "%d"
|
||||||
entry = currentError, "Error ID", int, "%d"
|
entry = currentError, "Error ID", int, "%d"
|
||||||
|
entry = map_psi, "Boost PSI", float, "%.1f"
|
||||||
entry = boostTarget, "Boost Target",int, "%d", { boostEnabled }
|
entry = boostTarget, "Boost Target",int, "%d", { boostEnabled }
|
||||||
entry = boostDuty, "Boost Duty", int, "%d", { boostEnabled }
|
entry = boostDuty, "Boost Duty", int, "%d", { boostEnabled }
|
||||||
entry = boostCutOut , "Boost cut", int, "%d"
|
entry = boostCutOut , "Boost cut", int, "%d"
|
||||||
|
|
|
@ -80,12 +80,12 @@ void command()
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 'S': // send code version
|
case 'S': // send code version
|
||||||
Serial.print("Speeduino 2017.05-dev");
|
Serial.print("Speeduino 2017.05");
|
||||||
currentStatus.secl = 0; //This is required in TS3 due to its stricter timings
|
currentStatus.secl = 0; //This is required in TS3 due to its stricter timings
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 'Q': // send code version
|
case 'Q': // send code version
|
||||||
Serial.print("speeduino 201705-dev");
|
Serial.print("speeduino 201705");
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 'V': // send VE table and constants in binary
|
case 'V': // send VE table and constants in binary
|
||||||
|
|
|
@ -298,6 +298,8 @@ void setup()
|
||||||
triggerInterrupt = 3; break;
|
triggerInterrupt = 3; break;
|
||||||
case 21:
|
case 21:
|
||||||
triggerInterrupt = 2; break;
|
triggerInterrupt = 2; break;
|
||||||
|
default:
|
||||||
|
triggerInterrupt = 0; break; //This should NEVER happen
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
triggerInterrupt = pinTrigger;
|
triggerInterrupt = pinTrigger;
|
||||||
|
@ -318,6 +320,8 @@ void setup()
|
||||||
triggerInterrupt2 = 3; break;
|
triggerInterrupt2 = 3; break;
|
||||||
case 21:
|
case 21:
|
||||||
triggerInterrupt2 = 2; break;
|
triggerInterrupt2 = 2; break;
|
||||||
|
default:
|
||||||
|
triggerInterrupt2 = 0; break; //This should NEVER happen
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
triggerInterrupt2 = pinTrigger2;
|
triggerInterrupt2 = pinTrigger2;
|
||||||
|
@ -533,6 +537,7 @@ void setup()
|
||||||
|
|
||||||
channel1InjEnabled = true;
|
channel1InjEnabled = true;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 2:
|
case 2:
|
||||||
channel1IgnDegrees = 0;
|
channel1IgnDegrees = 0;
|
||||||
|
|
||||||
|
@ -553,6 +558,7 @@ void setup()
|
||||||
channel1InjEnabled = true;
|
channel1InjEnabled = true;
|
||||||
channel2InjEnabled = true;
|
channel2InjEnabled = true;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 3:
|
case 3:
|
||||||
channel1IgnDegrees = 0;
|
channel1IgnDegrees = 0;
|
||||||
|
|
||||||
|
|
|
@ -27,6 +27,8 @@ void doUpdates()
|
||||||
//Final check is always for 255 and 0 (Brand new arduino)
|
//Final check is always for 255 and 0 (Brand new arduino)
|
||||||
if(EEPROM.read(EEPROM_DATA_VERSION) == 0 || EEPROM.read(EEPROM_DATA_VERSION) == 255)
|
if(EEPROM.read(EEPROM_DATA_VERSION) == 0 || EEPROM.read(EEPROM_DATA_VERSION) == 255)
|
||||||
{
|
{
|
||||||
|
configPage10.true_address = 0x200;
|
||||||
EEPROM.write(EEPROM_DATA_VERSION, CURRENT_DATA_VERSION);
|
EEPROM.write(EEPROM_DATA_VERSION, CURRENT_DATA_VERSION);
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue