Add option to disable fan whilst cranking. Fixes #383
This commit is contained in:
parent
d73af98010
commit
05022a5d22
|
@ -319,8 +319,9 @@ page = 1
|
|||
EMAPMin = scalar, S08, 67, "kpa", 1.0, 0.0, -100, 127.0, 0
|
||||
EMAPMax = scalar, U16, 68, "kpa", 1.0, 0.0, 0.0, 25500, 0
|
||||
|
||||
fanWhenOff = bits, U08, 70, [0:0], "No", "Yes"
|
||||
unused_fan_bits = bits, U08, 70,[1:7]
|
||||
fanWhenOff = bits, U08, 70, [0:0], "No", "Yes"
|
||||
fanWhenCranking = bits, U08, 70, [1:1], "No", "Yes"
|
||||
unused_fan_bits = bits, U08, 70,[2:7]
|
||||
|
||||
asePct = array, U08, 71, [4], "%", 1.0, 0.0, 0, 155, 0
|
||||
aseCount = array, U08, 75, [4], "s", 1.0, 0.0, 0.0, 255, 0 ; Values for the afterstart enrichment curve
|
||||
|
@ -1437,255 +1438,259 @@ menuDialog = main
|
|||
[SettingContextHelp]
|
||||
; constantName = "Help Text"
|
||||
; These provide the context help in the dialog when these variables are used
|
||||
nCylinders = "Cylinder count"
|
||||
alternate = "Whether or not the injectors should be fired at the same time. This setting is ignored when Sequential is selected below, however it will still affect the req_fuel value."
|
||||
engineType = "Engines with an equal number of degrees between all firings (This is most engines) should select Even fire. Some 2 and 6 cylinder engines are Odd fire however."
|
||||
twoStroke = "Four-Stroke (most engines), Two-stroke."
|
||||
nInjectors = "Number of primary injectors."
|
||||
mapSample = "The method used for calculating the MAP reading\nFor 1-2 Cylinder engines, Cycle Minimum is recommended.\nFor more than 2 cylinders Cycle Average is recommended"
|
||||
stoich = "The stoichiometric ration of the fuel being used. For flex fuel, choose the primary fuel"
|
||||
injLayout = "The injector layout and timing to be used. Options are: \n 1. Paired - 2 injectors per output. Outputs active is equal to half the number of cylinders. Outputs are timed over 1 crank revolution. \n 2. Semi-sequential: Same as paired except that injector channels are mirrored (1&4, 2&3) meaning the number of outputs used are equal to the number of cylinders. Only valid for 4 cylinders or less. \n 3. Banked: 2 outputs only used. \n 4. Sequential: 1 injector per output and outputs used equals the number of cylinders. Injection is timed over full cycle. "
|
||||
nCylinders = "Cylinder count"
|
||||
alternate = "Whether or not the injectors should be fired at the same time. This setting is ignored when Sequential is selected below, however it will still affect the req_fuel value."
|
||||
engineType = "Engines with an equal number of degrees between all firings (This is most engines) should select Even fire. Some 2 and 6 cylinder engines are Odd fire however."
|
||||
twoStroke = "Four-Stroke (most engines), Two-stroke."
|
||||
nInjectors = "Number of primary injectors."
|
||||
mapSample = "The method used for calculating the MAP reading\nFor 1-2 Cylinder engines, Cycle Minimum is recommended.\nFor more than 2 cylinders Cycle Average is recommended"
|
||||
stoich = "The stoichiometric ration of the fuel being used. For flex fuel, choose the primary fuel"
|
||||
injLayout = "The injector layout and timing to be used. Options are: \n 1. Paired - 2 injectors per output. Outputs active is equal to half the number of cylinders. Outputs are timed over 1 crank revolution. \n 2. Semi-sequential: Same as paired except that injector channels are mirrored (1&4, 2&3) meaning the number of outputs used are equal to the number of cylinders. Only valid for 4 cylinders or less. \n 3. Banked: 2 outputs only used. \n 4. Sequential: 1 injector per output and outputs used equals the number of cylinders. Injection is timed over full cycle. "
|
||||
|
||||
TrigPattern = "The type of input trigger decoder to be used."
|
||||
useResync = "If enabled, sync will be rechecked once every full cycle from the cam input. This is good for accuracy, however if your cam input is noisy then this can cause issues."
|
||||
trigPatternSec = "Cam mode/type also known as Secondary Trigger Pattern."
|
||||
numTeeth = "Number of teeth on Primary Wheel."
|
||||
TrigSpeed = "Primary trigger speed."
|
||||
missingTeeth= "Number of Missing teeth on Primary Wheel."
|
||||
TrigAng = "The Angle ATDC when tooth No:1 on the primary wheel passes the primary sensor. The range of this field is -360 to +360 degrees."
|
||||
TrigAngMul = "A multiplier used by non-360 degree tooth wheels (i.e. Wheels where the tooth count doesn't divide evenly into 360. Usage: (360 * <multiplier>) / tooth_count = Whole number"
|
||||
SkipCycles = "The number of revolutions that will be skipped during cranking before the injectors and coils are fired."
|
||||
TrigEdge = "The Trigger edge of the primary sensor.\nLeading.\nTrailing."
|
||||
TrigEdgeSec = "The Trigger edge of the secondary (Cam) sensor.\nLeading.\nTrailing."
|
||||
TrigFilter = "Tuning of the trigger filter algorithm. The more aggressive the setting, the more noise will be removed, however this increases the chance of some true readings being filtered out (False positive). Medium is safe for most setups. Only select 'Aggressive' if no other options are working"
|
||||
TrigPattern = "The type of input trigger decoder to be used."
|
||||
useResync = "If enabled, sync will be rechecked once every full cycle from the cam input. This is good for accuracy, however if your cam input is noisy then this can cause issues."
|
||||
trigPatternSec = "Cam mode/type also known as Secondary Trigger Pattern."
|
||||
numTeeth = "Number of teeth on Primary Wheel."
|
||||
TrigSpeed = "Primary trigger speed."
|
||||
missingTeeth = "Number of Missing teeth on Primary Wheel."
|
||||
TrigAng = "The Angle ATDC when tooth No:1 on the primary wheel passes the primary sensor. The range of this field is -360 to +360 degrees."
|
||||
TrigAngMul = "A multiplier used by non-360 degree tooth wheels (i.e. Wheels where the tooth count doesn't divide evenly into 360. Usage: (360 * <multiplier>) / tooth_count = Whole number"
|
||||
SkipCycles = "The number of revolutions that will be skipped during cranking before the injectors and coils are fired."
|
||||
TrigEdge = "The Trigger edge of the primary sensor.\nLeading.\nTrailing."
|
||||
TrigEdgeSec = "The Trigger edge of the secondary (Cam) sensor.\nLeading.\nTrailing."
|
||||
TrigFilter = "Tuning of the trigger filter algorithm. The more aggressive the setting, the more noise will be removed, however this increases the chance of some true readings being filtered out (False positive). Medium is safe for most setups. Only select 'Aggressive' if no other options are working"
|
||||
|
||||
sparkMode = "Wasted Spark: Ignition outputs are on the channels <= half the number of cylinders. Eg 4 cylinder outputs on IGN1 and IGN2.\nSingle Channel: All ignition pulses are output on IGN1.\nWasted COP: Ignition pulses are output on all ignition channels up to the number of cylinders. Eg 4 cylinder outputs on all ignition channels. Note that your board needs to have same number of igntion outputs as cylinders to be able to run this"
|
||||
IgInv = "Whether the spark fires when the ignition signal goes high or goes low. Nearly all ignition systems use 'Going Low' but please verify this as damage to coils can result from the incorrect selection. (NOTE: THIS IS NOT MEGASQUIRT. THIS SETTING IS USUALLY THE OPPOSITE OF WHAT THEY USE!)"
|
||||
sparkDur = "The duration of the spark at full dwell. Typically around 1ms"
|
||||
fixAngEnable= "If enabled, timing will be locked/fixed and the ignition map will be ignored. Note that this value will be overriden by the fixed cranking value when cranking"
|
||||
FixAng = "Timing will be locked at this value if the above is enabled"
|
||||
sparkMode = "Wasted Spark: Ignition outputs are on the channels <= half the number of cylinders. Eg 4 cylinder outputs on IGN1 and IGN2.\nSingle Channel: All ignition pulses are output on IGN1.\nWasted COP: Ignition pulses are output on all ignition channels up to the number of cylinders. Eg 4 cylinder outputs on all ignition channels. Note that your board needs to have same number of igntion outputs as cylinders to be able to run this"
|
||||
IgInv = "Whether the spark fires when the ignition signal goes high or goes low. Nearly all ignition systems use 'Going Low' but please verify this as damage to coils can result from the incorrect selection. (NOTE: THIS IS NOT MEGASQUIRT. THIS SETTING IS USUALLY THE OPPOSITE OF WHAT THEY USE!)"
|
||||
sparkDur = "The duration of the spark at full dwell. Typically around 1ms"
|
||||
fixAngEnable = "If enabled, timing will be locked/fixed and the ignition map will be ignored. Note that this value will be overriden by the fixed cranking value when cranking"
|
||||
FixAng = "Timing will be locked at this value if the above is enabled"
|
||||
|
||||
crankRPM = "The cranking RPM threshold. When RPM is lower than this value (and above 0) the system will be considered to be cranking"
|
||||
tpsflood = "Keep throttle over this value to disable the priming pulse and cranking fuel. Used to prevent flood or clear already flooded engine"
|
||||
crankRPM = "The cranking RPM threshold. When RPM is lower than this value (and above 0) the system will be considered to be cranking"
|
||||
tpsflood = "Keep throttle over this value to disable the priming pulse and cranking fuel. Used to prevent flood or clear already flooded engine"
|
||||
|
||||
fanInv = ""
|
||||
fanHyster = "The number of degrees of hysteresis to be used in controlling the fan. Recommended values are between 2 and 5"
|
||||
fanInv = ""
|
||||
fanHyster = "The number of degrees of hysteresis to be used in controlling the fan. Recommended values are between 2 and 5"
|
||||
fanWhenCranking = "Whether the fan should be disabled or continue running when the engine is cranking"
|
||||
fanWhenOff = "Whether the fan will continue to run when the engine is turned off"
|
||||
fanPin = "The Arduino pin that the fan control signal will output on. This is NOT necesarrily the same as the connector pin on any particlar board"
|
||||
fanSP = "The trigger temperature for the fan. Fan will be enabled above this temp"
|
||||
|
||||
vssPulsesPerKm = "The number of pulses on the VSS signal per KM/Mile"
|
||||
vssSmoothing = "A smoothing factor to help reduce noise in the VSS signal. Typical values are between 0 and 50"
|
||||
vssPulsesPerKm = "The number of pulses on the VSS signal per KM/Mile"
|
||||
vssSmoothing = "A smoothing factor to help reduce noise in the VSS signal. Typical values are between 0 and 50"
|
||||
|
||||
aeTime = "The duration of the acceleration enrichment"
|
||||
aseTsnDelay = "Transition time to disable ASE"
|
||||
iacChannels = "The number of output channels used for PWM valves. Select 1 for 2-wire valves or 2 for 3-wire valves."
|
||||
iacStepTime = "Duration of each stepping pulse. Values that are too low can cause the motor to behave erratically or not at all. See the manual for suggested step times"
|
||||
iacCoolTime = "Cool time between each step. Set to zero if you don't want any cooling at all"
|
||||
|
||||
iacStepHome = "Homing steps to perform on startup. Must be greater than the fully open steps value"
|
||||
iacMaxSteps = "Maximum number of steps the IAC can be moved away from the home position. Should always be less than Homing steps."
|
||||
iacStepHyster = "The minimum number of steps to move in any one go."
|
||||
iacAlgorithm = "Selects method of idle control.\nNone = no idle control valve.\nOn/Off valve.\nPWM valve (2,3 wire).\nStepper Valve (4,6,8 wire)."
|
||||
iacPWMdir = "Normal PWM valves increase RPM with higher duty. If RPM decreases with higher duty then select Reverse"
|
||||
iacCLminDuty= "When using closed loop idle control, this is the minimum duty cycle that the PID loop will allow. Combined with the maximum value, this specifies the working range of your idle valve"
|
||||
iacCLmaxDuty= "When using closed loop idle control, this is the maximum duty cycle that the PID loop will allow. Combined with the minimum value, this specifies the working range of your idle valve"
|
||||
iacFastTemp = "Below this temperature, the idle output will be high (On). Above this temperature, it will turn off."
|
||||
idleUpPolarity = "Normal polarity is a ground switch where an earthed signal activates the Idle Up. The internal pullup will be enabled with Normal polarity. \n Inverted may be used if a 5v signal is used to enable the Idle Up."
|
||||
CTPSPolarity = "Normal polarity is a ground switch where an earthed signal activates the closed throttle position. The internal pullup will be enabled with Normal polarity. \n Inverted may be used if a 5v signal is used to enable the closed throttle position."
|
||||
idleUpAdder = "The amount (In either Duty Cycle % or Steps (Depending on the idle control method in use), that the idle control will increase by when Idle Up is active"
|
||||
idleAdvEnabled = "Added setting adds curve values to current spark table values when user defined idle is active. \n Switched setting overrides spark table values and uses curve values for idle ignition timing."
|
||||
idleAdvAlgorithm = "Use Throttle position sensor (TPS) or closed throttle position sensor (CTPS) to detect idle state."
|
||||
idleAdvDelay= "The number of seconds after sync is achieved before the idle advance control begins"
|
||||
idleTaperTime = "Soft time transition from crank to running PWM targets"
|
||||
aeTime = "The duration of the acceleration enrichment"
|
||||
aseTsnDelay = "Transition time to disable ASE"
|
||||
iacChannels = "The number of output channels used for PWM valves. Select 1 for 2-wire valves or 2 for 3-wire valves."
|
||||
iacStepTime = "Duration of each stepping pulse. Values that are too low can cause the motor to behave erratically or not at all. See the manual for suggested step times"
|
||||
iacCoolTime = "Cool time between each step. Set to zero if you don't want any cooling at all"
|
||||
|
||||
oddfire2 = "The ATDC angle of channel 2 for oddfire engines. This is relative to the TDC angle of channel 1"
|
||||
oddfire3 = "The ATDC angle of channel 3 for oddfire engines. This is relative to the TDC angle of channel 1 (NOT channel 2)"
|
||||
oddfire4 = "The ATDC angle of channel 4 for oddfire engines. This is relative to the TDC angle of channel 1 (NOT channel 3)"
|
||||
iacStepHome = "Homing steps to perform on startup. Must be greater than the fully open steps value"
|
||||
iacMaxSteps = "Maximum number of steps the IAC can be moved away from the home position. Should always be less than Homing steps."
|
||||
iacStepHyster = "The minimum number of steps to move in any one go."
|
||||
iacAlgorithm = "Selects method of idle control.\nNone = no idle control valve.\nOn/Off valve.\nPWM valve (2,3 wire).\nStepper Valve (4,6,8 wire)."
|
||||
iacPWMdir = "Normal PWM valves increase RPM with higher duty. If RPM decreases with higher duty then select Reverse"
|
||||
iacCLminDuty = "When using closed loop idle control, this is the minimum duty cycle that the PID loop will allow. Combined with the maximum value, this specifies the working range of your idle valve"
|
||||
iacCLmaxDuty = "When using closed loop idle control, this is the maximum duty cycle that the PID loop will allow. Combined with the minimum value, this specifies the working range of your idle valve"
|
||||
iacFastTemp = "Below this temperature, the idle output will be high (On). Above this temperature, it will turn off."
|
||||
idleUpPolarity = "Normal polarity is a ground switch where an earthed signal activates the Idle Up. The internal pullup will be enabled with Normal polarity. \n Inverted may be used if a 5v signal is used to enable the Idle Up."
|
||||
CTPSPolarity = "Normal polarity is a ground switch where an earthed signal activates the closed throttle position. The internal pullup will be enabled with Normal polarity. \n Inverted may be used if a 5v signal is used to enable the closed throttle position."
|
||||
idleUpAdder = "The amount (In either Duty Cycle % or Steps (Depending on the idle control method in use), that the idle control will increase by when Idle Up is active"
|
||||
idleAdvEnabled = "Added setting adds curve values to current spark table values when user defined idle is active. \n Switched setting overrides spark table values and uses curve values for idle ignition timing."
|
||||
idleAdvAlgorithm = "Use Throttle position sensor (TPS) or closed throttle position sensor (CTPS) to detect idle state."
|
||||
idleAdvDelay = "The number of seconds after sync is achieved before the idle advance control begins"
|
||||
idleTaperTime = "Soft time transition from crank to running PWM targets"
|
||||
|
||||
aeColdPct = "Acceleration enrichment adjustment for cold engine. Cold adjustment % is tapered between start and end temperatures.\n100% = no adjustment."
|
||||
aeColdTaperMin = "AE cold adjustment taper start temperature. When coolant is below this value, full cold adjustment is applied."
|
||||
aeColdTaperMax = "AE cold adjustment taper end temperature. When coolant is above this value, no cold adjustment is applied."
|
||||
dfcoRPM = "The RPM above which DFCO will be active. Typically set a few hundred RPM above maximum idle speed"
|
||||
dfcoHyster = "Hysteresis for DFCO RPM. 200-300 RPM is typical for this, however a higher value may be needed if the RPM is fluctuating around the cutout speed"
|
||||
dfcoTPSThresh= "The TPS value below which DFCO will be active. Typical value is 5%-10%, but higher may be needed if TPS signal is noisy"
|
||||
dfcoDelay = "Delay for activate DFCO."
|
||||
dfcoMinCLT = "Minimum temperature to enable DFCO."
|
||||
oddfire2 = "The ATDC angle of channel 2 for oddfire engines. This is relative to the TDC angle of channel 1"
|
||||
oddfire3 = "The ATDC angle of channel 3 for oddfire engines. This is relative to the TDC angle of channel 1 (NOT channel 2)"
|
||||
oddfire4 = "The ATDC angle of channel 4 for oddfire engines. This is relative to the TDC angle of channel 1 (NOT channel 3)"
|
||||
|
||||
launchPin = "The ARDUINO pin that the clutch switch is connected to. This is NOT the pin on the connector, but the pin it relates to on the arduino"
|
||||
launchHiLo = "Whether the signal is High or Low when the clutch pedal is engaged. For a ground switching input (Most clutch switches), this should be LOW"
|
||||
lnchPullRes = "Whether the internal pullup resistor is enabled or left floating. For a ground switching input (Most clutch switches), select Pullup. For a 0v-5v input, select Floating"
|
||||
ignBypassPin = "The ARDUINO pin that the ignition bypass is connected to. This is NOT the pin on the connector, but the pin it relates to on the arduino"
|
||||
ignBypassEnable = "If turned on, a ground signal will be output during cranking on the specified pin. This is used to bypass the Speeduino ignition control during cranking."
|
||||
ignCranklock = "On certain low resolution ignition patterns, the cranking timing can be locked to occur when a pulse is recieved."
|
||||
aeColdPct = "Acceleration enrichment adjustment for cold engine. Cold adjustment % is tapered between start and end temperatures.\n100% = no adjustment."
|
||||
aeColdTaperMin = "AE cold adjustment taper start temperature. When coolant is below this value, full cold adjustment is applied."
|
||||
aeColdTaperMax = "AE cold adjustment taper end temperature. When coolant is above this value, no cold adjustment is applied."
|
||||
dfcoRPM = "The RPM above which DFCO will be active. Typically set a few hundred RPM above maximum idle speed"
|
||||
dfcoHyster = "Hysteresis for DFCO RPM. 200-300 RPM is typical for this, however a higher value may be needed if the RPM is fluctuating around the cutout speed"
|
||||
dfcoTPSThresh = "The TPS value below which DFCO will be active. Typical value is 5%-10%, but higher may be needed if TPS signal is noisy"
|
||||
dfcoDelay = "Delay for activate DFCO."
|
||||
dfcoMinCLT = "Minimum temperature to enable DFCO."
|
||||
|
||||
multiplyMAP = "If enabled, the MAP reading is included directly into the pulsewidth calculation by multiplying the VE lookup value by the MAP:Baro ratio. This results in a flatter VE table that can be easier to tune in some instances. VE table must be retuned when this value is changed."
|
||||
legacyMAP = "Use the legacy method of reading the MAP sensor that was used prior to the 201905 firmware. This should ONLY be enabled if you are upgrading from a firmware earlier than this"
|
||||
includeAFR = "When enabled, the current AFR reading is incorporated directly in the pulsewidth calculation as a percentage of the current target ratio. VE table must be retuned when this value is changed. "
|
||||
useExtBaro = "By Default, Speeduino will measure barometric pressure upon startup. Optionally however, a 2nd pressure sensor can be used to perform live barometric readings whilst the system is on."
|
||||
launchPin = "The ARDUINO pin that the clutch switch is connected to. This is NOT the pin on the connector, but the pin it relates to on the arduino"
|
||||
launchHiLo = "Whether the signal is High or Low when the clutch pedal is engaged. For a ground switching input (Most clutch switches), this should be LOW"
|
||||
lnchPullRes = "Whether the internal pullup resistor is enabled or left floating. For a ground switching input (Most clutch switches), select Pullup. For a 0v-5v input, select Floating"
|
||||
ignBypassPin = "The ARDUINO pin that the ignition bypass is connected to. This is NOT the pin on the connector, but the pin it relates to on the arduino"
|
||||
ignBypassEnable = "If turned on, a ground signal will be output during cranking on the specified pin. This is used to bypass the Speeduino ignition control during cranking."
|
||||
ignCranklock = "On certain low resolution ignition patterns, the cranking timing can be locked to occur when a pulse is recieved."
|
||||
|
||||
flexEnabled = "Turns on readings from the Flex sensor and enables the below adjustments"
|
||||
flexFreqLow = "The frequency of the sensor at 0% ethanol (50Hz for standard GM/Continental sensor)"
|
||||
flexFreqHigh = "The frequency of the sensor at 100% ethanol (150Hz for standard GM/Continental sensor)"
|
||||
flexFuelAdj = "Fuel % to be used for the current ethanol % (Typically 100% @ 0%, 163% @ 100%)"
|
||||
flexAdvAdj = "Additional advance (in degrees) for the current ethanol % (Typically 0 @ 0%, 10-20 @ 100%)"
|
||||
flexBoostAdj = "Adjustment, in kPa, to the boost target for the current ethanol %. Negative values are allowed to lower boost at lower ethanol % if necessary."
|
||||
multiplyMAP = "If enabled, the MAP reading is included directly into the pulsewidth calculation by multiplying the VE lookup value by the MAP:Baro ratio. This results in a flatter VE table that can be easier to tune in some instances. VE table must be retuned when this value is changed."
|
||||
legacyMAP = "Use the legacy method of reading the MAP sensor that was used prior to the 201905 firmware. This should ONLY be enabled if you are upgrading from a firmware earlier than this"
|
||||
includeAFR = "When enabled, the current AFR reading is incorporated directly in the pulsewidth calculation as a percentage of the current target ratio. VE table must be retuned when this value is changed. "
|
||||
useExtBaro = "By Default, Speeduino will measure barometric pressure upon startup. Optionally however, a 2nd pressure sensor can be used to perform live barometric readings whilst the system is on."
|
||||
|
||||
n2o_arming_pin = "Pin that the nitrous arming/enagement switch is on."
|
||||
n2o_pin_polarity = "Whether Nitrous is active (Armed) when the pin is LOW or HIGH. If LOW is selected, the internal pullup will be used."
|
||||
flexEnabled = "Turns on readings from the Flex sensor and enables the below adjustments"
|
||||
flexFreqLow = "The frequency of the sensor at 0% ethanol (50Hz for standard GM/Continental sensor)"
|
||||
flexFreqHigh = "The frequency of the sensor at 100% ethanol (150Hz for standard GM/Continental sensor)"
|
||||
flexFuelAdj = "Fuel % to be used for the current ethanol % (Typically 100% @ 0%, 163% @ 100%)"
|
||||
flexAdvAdj = "Additional advance (in degrees) for the current ethanol % (Typically 0 @ 0%, 10-20 @ 100%)"
|
||||
flexBoostAdj = "Adjustment, in kPa, to the boost target for the current ethanol %. Negative values are allowed to lower boost at lower ethanol % if necessary."
|
||||
|
||||
flatSArm = "The RPM switch point that determines whether an eganged clutch is for launch control or flat shift. Below this figure, an engaged clutch is considered to be for launch, above this figure an active clutch input will be considered a flat shift. This should be set at least several hundred RPM above idle"
|
||||
flatSSoftWin= "The number of RPM below the flat shift point where the softlimit will be applied (aka Soft limit window). Recommended values are 200-1000"
|
||||
flatSRetard = "The absolute timing (BTDC) that will be used when within the soft limit window"
|
||||
hardCutType = "How hard cuts should be performed for rev/launch limits. Full cut will stop all ignition events, Rolling cut will step through all ignition outputs, only cutting 1 per revolution"
|
||||
SoftLimitMode = "Fixed: the soft limiter will retard the ignition advance to the specified value.\nRelative: current timing advance will be retarted by the specified amount"
|
||||
n2o_arming_pin = "Pin that the nitrous arming/enagement switch is on."
|
||||
n2o_pin_polarity = "Whether Nitrous is active (Armed) when the pin is LOW or HIGH. If LOW is selected, the internal pullup will be used."
|
||||
|
||||
flatSArm = "The RPM switch point that determines whether an eganged clutch is for launch control or flat shift. Below this figure, an engaged clutch is considered to be for launch, above this figure an active clutch input will be considered a flat shift. This should be set at least several hundred RPM above idle"
|
||||
flatSSoftWin = "The number of RPM below the flat shift point where the softlimit will be applied (aka Soft limit window). Recommended values are 200-1000"
|
||||
flatSRetard = "The absolute timing (BTDC) that will be used when within the soft limit window"
|
||||
hardCutType = "How hard cuts should be performed for rev/launch limits. Full cut will stop all ignition events, Rolling cut will step through all ignition outputs, only cutting 1 per revolution"
|
||||
SoftLimitMode = "Fixed: the soft limiter will retard the ignition advance to the specified value.\nRelative: current timing advance will be retarted by the specified amount"
|
||||
|
||||
|
||||
fuel2InputPin = "The Arduino pin that is being used to trigger the second fuel table to be active"
|
||||
fuel2InputPolarity = "Whether the 2nd fuel table should be active when input is high or low. This should be LOW for a typical ground switching input"
|
||||
fuel2InputPullup = "Whether to use the built in PULLUP for the switching input. This should be Yes for a typical ground switching input"
|
||||
fuel2InputPin = "The Arduino pin that is being used to trigger the second fuel table to be active"
|
||||
fuel2InputPolarity = "Whether the 2nd fuel table should be active when input is high or low. This should be LOW for a typical ground switching input"
|
||||
fuel2InputPullup = "Whether to use the built in PULLUP for the switching input. This should be Yes for a typical ground switching input"
|
||||
|
||||
enable_secondarySerial = "This Enables the secondary serial port . Secondary serial is serial3 on mega2560 processor, and Serial2 on STM32 and Teensy processor "
|
||||
|
||||
cltAdvValues = "This curve can be used to advance ignition timing when engine is warming up. This can also be used to warm up the catalytic converters in cold start by retarding timing. Or even as safety feature to retard timing when engine is too hot to prevent knock."
|
||||
enable_secondarySerial = "This Enables the secondary serial port . Secondary serial is serial3 on mega2560 processor, and Serial2 on STM32 and Teensy processor "
|
||||
|
||||
;speeduino_tsCanId = "This is the TsCanId that the Speeduino ECU will respond to. This should match the main controller CAN ID in project properties if it is connected directy to TunerStudio, Otherwise the device ID if connected via CAN passthrough"
|
||||
true_address = "This is the 11bit Can address of the Speeduino ECU "
|
||||
cltAdvValues = "This curve can be used to advance ignition timing when engine is warming up. This can also be used to warm up the catalytic converters in cold start by retarding timing. Or even as safety feature to retard timing when engine is too hot to prevent knock."
|
||||
|
||||
;speeduino_tsCanId = "This is the TsCanId that the Speeduino ECU will respond to. This should match the main controller CAN ID in project properties if it is connected directy to TunerStudio, Otherwise the device ID if connected via CAN passthrough"
|
||||
true_address = "This is the 11bit Can address of the Speeduino ECU "
|
||||
realtime_base_address = "This is the 11bit CAN address of the realtime data broadcast from the Speeduino ECU. This MUST be at least 0x16 greater than the true address"
|
||||
;obd_address = "The 11bit Can address that the Speeduino ECU responds to for OBD2 diagnostic requests"
|
||||
AUXin00Alias = "The Ascii alias asigned to Aux input channel 0"
|
||||
AUXin01Alias = "The Ascii alias asigned to Aux input channel 1"
|
||||
AUXin02Alias = "The Ascii alias asigned to Aux input channel 2"
|
||||
AUXin03Alias = "The Ascii alias asigned to Aux input channel 3"
|
||||
AUXin04Alias = "The Ascii alias asigned to Aux input channel 4"
|
||||
AUXin05Alias = "The Ascii alias asigned to Aux input channel 5"
|
||||
AUXin06Alias = "The Ascii alias asigned to Aux input channel 6"
|
||||
AUXin07Alias = "The Ascii alias asigned to Aux input channel 7"
|
||||
AUXin08Alias = "The Ascii alias asigned to Aux input channel 8"
|
||||
AUXin09Alias = "The Ascii alias asigned to Aux input channel 9"
|
||||
AUXin10Alias = "The Ascii alias asigned to Aux input channel 10"
|
||||
AUXin11Alias = "The Ascii alias asigned to Aux input channel 11"
|
||||
AUXin12Alias = "The Ascii alias asigned to Aux input channel 12"
|
||||
AUXin13Alias = "The Ascii alias asigned to Aux input channel 13"
|
||||
AUXin14Alias = "The Ascii alias asigned to Aux input channel 14"
|
||||
AUXin15Alias = "The Ascii alias asigned to Aux input channel 15"
|
||||
|
||||
caninput_sel0a = "This Enables local analog/digital on input channel 0 "
|
||||
caninput_sel1a = "This Enables local analog/digital on input channel 1 "
|
||||
caninput_sel2a = "This Enables local analog/digital on input channel 2 "
|
||||
caninput_sel3a = "This Enables local analog/digital on input channel 3 "
|
||||
caninput_sel4a = "This Enables local analog/digital on input channel 4 "
|
||||
caninput_sel5a = "This Enables local analog/digital on input channel 5 "
|
||||
caninput_sel6a = "This Enables local analog/digital on input channel 6 "
|
||||
caninput_sel7a = "This Enables local analog/digital on input channel 7 "
|
||||
caninput_sel8a = "This Enables local analog/digital on input channel 8 "
|
||||
caninput_sel9a = "This Enables local analog/digital on input channel 9 "
|
||||
caninput_sel10a = "This Enables local analog/digital on input channel 10 "
|
||||
caninput_sel11a = "This Enables local analog/digital on input channel 11 "
|
||||
caninput_sel12a = "This Enables local analog/digital on input channel 12 "
|
||||
caninput_sel13a = "This Enables local analog/digital on input channel 13 "
|
||||
caninput_sel14a = "This Enables local analog/digital on input channel 14 "
|
||||
caninput_sel15a = "This Enables local analog/digital on input channel 15 "
|
||||
|
||||
;obd_address = "The 11bit Can address that the Speeduino ECU responds to for OBD2 diagnostic requests"
|
||||
AUXin00Alias = "The Ascii alias asigned to Aux input channel 0"
|
||||
AUXin01Alias = "The Ascii alias asigned to Aux input channel 1"
|
||||
AUXin02Alias = "The Ascii alias asigned to Aux input channel 2"
|
||||
AUXin03Alias = "The Ascii alias asigned to Aux input channel 3"
|
||||
AUXin04Alias = "The Ascii alias asigned to Aux input channel 4"
|
||||
AUXin05Alias = "The Ascii alias asigned to Aux input channel 5"
|
||||
AUXin06Alias = "The Ascii alias asigned to Aux input channel 6"
|
||||
AUXin07Alias = "The Ascii alias asigned to Aux input channel 7"
|
||||
AUXin08Alias = "The Ascii alias asigned to Aux input channel 8"
|
||||
AUXin09Alias = "The Ascii alias asigned to Aux input channel 9"
|
||||
AUXin10Alias = "The Ascii alias asigned to Aux input channel 10"
|
||||
AUXin11Alias = "The Ascii alias asigned to Aux input channel 11"
|
||||
AUXin12Alias = "The Ascii alias asigned to Aux input channel 12"
|
||||
AUXin13Alias = "The Ascii alias asigned to Aux input channel 13"
|
||||
AUXin14Alias = "The Ascii alias asigned to Aux input channel 14"
|
||||
AUXin15Alias = "The Ascii alias asigned to Aux input channel 15"
|
||||
|
||||
caninput_sel0a = "This Enables local analog/digital on input channel 0 "
|
||||
caninput_sel1a = "This Enables local analog/digital on input channel 1 "
|
||||
caninput_sel2a = "This Enables local analog/digital on input channel 2 "
|
||||
caninput_sel3a = "This Enables local analog/digital on input channel 3 "
|
||||
caninput_sel4a = "This Enables local analog/digital on input channel 4 "
|
||||
caninput_sel5a = "This Enables local analog/digital on input channel 5 "
|
||||
caninput_sel6a = "This Enables local analog/digital on input channel 6 "
|
||||
caninput_sel7a = "This Enables local analog/digital on input channel 7 "
|
||||
caninput_sel8a = "This Enables local analog/digital on input channel 8 "
|
||||
caninput_sel9a = "This Enables local analog/digital on input channel 9 "
|
||||
caninput_sel10a = "This Enables local analog/digital on input channel 10 "
|
||||
caninput_sel11a = "This Enables local analog/digital on input channel 11 "
|
||||
caninput_sel12a = "This Enables local analog/digital on input channel 12 "
|
||||
caninput_sel13a = "This Enables local analog/digital on input channel 13 "
|
||||
caninput_sel14a = "This Enables local analog/digital on input channel 14 "
|
||||
caninput_sel15a = "This Enables local analog/digital on input channel 15 "
|
||||
|
||||
caninput_sel0b = "This Enables External CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 0 "
|
||||
caninput_sel1b = "This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 1 "
|
||||
caninput_sel2b = "This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 2 "
|
||||
caninput_sel3b = "This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 3 "
|
||||
caninput_sel4b = "This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 4 "
|
||||
caninput_sel5b = "This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 5 "
|
||||
caninput_sel6b = "This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 6 "
|
||||
caninput_sel7b = "This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 7 "
|
||||
caninput_sel1b = "This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 1 "
|
||||
caninput_sel2b = "This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 2 "
|
||||
caninput_sel3b = "This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 3 "
|
||||
caninput_sel4b = "This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 4 "
|
||||
caninput_sel5b = "This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 5 "
|
||||
caninput_sel6b = "This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 6 "
|
||||
caninput_sel7b = "This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 7 "
|
||||
caninput_sel8b = "This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 8 "
|
||||
caninput_sel9b = "This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 9 "
|
||||
caninput_sel10b = "This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 10 "
|
||||
caninput_sel11b = "This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 11 "
|
||||
caninput_sel12b = "This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 12 "
|
||||
caninput_sel13b = "This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 13 "
|
||||
caninput_sel14b = "This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 14 "
|
||||
caninput_sel15b = "This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 15 "
|
||||
|
||||
caninput_source_can_address0 = "The source 11bit CAN address of the data for channel 0"
|
||||
caninput_source_can_address1 = "The source 11bit CAN address of the data for channel 1"
|
||||
caninput_source_can_address2 = "The source 11bit CAN address of the data for channel 2"
|
||||
caninput_source_can_address3 = "The source 11bit CAN address of the data for channel 3"
|
||||
caninput_source_can_address4 = "The source 11bit CAN address of the data for channel 4"
|
||||
caninput_source_can_address5 = "The source 11bit CAN address of the data for channel 5"
|
||||
caninput_source_can_address6 = "The source 11bit CAN address of the data for channel 6"
|
||||
caninput_source_can_address7 = "The source 11bit CAN address of the data for channel 7"
|
||||
caninput_source_can_address8 = "The source 11bit CAN address of the data for channel 8 "
|
||||
caninput_source_can_address9 = "The source 11bit CAN address of the data for channel 9"
|
||||
caninput_source_can_address10 = "The source 11bit CAN address of the data for channel 10"
|
||||
caninput_source_can_address11 = "The source 11bit CAN address of the data for channel 11"
|
||||
caninput_source_can_address12 = "The source 11bit CAN address of the data for channel 12"
|
||||
caninput_source_can_address13 = "The source 11bit CAN address of the data for channel 13"
|
||||
caninput_source_can_address14 = "The source 11bit CAN address of the data for channel 14"
|
||||
caninput_source_can_address15 = "The source 11bit CAN address of the data for channel 15"
|
||||
caninput_source_start_byte0 = "The Starting byte the data begins at for channel 0"
|
||||
caninput_source_start_byte1 = "The Starting byte the data begins at for channel 1"
|
||||
caninput_source_start_byte2 = "The Starting byte the data begins at for channel 2"
|
||||
caninput_source_start_byte3 = "The Starting byte the data begins at for channel 3"
|
||||
caninput_source_start_byte4 = "The Starting byte the data begins at for channel 4"
|
||||
caninput_source_start_byte5 = "The Starting byte the data begins at for channel 5"
|
||||
caninput_source_start_byte6 = "The Starting byte the data begins at for channel 6"
|
||||
caninput_source_start_byte7 = "The Starting byte the data begins at for channel 7"
|
||||
caninput_source_start_byte8 = "The Starting byte the data begins at for channel 8"
|
||||
caninput_source_start_byte9 = "The Starting byte the data begins at for channel 9"
|
||||
caninput_source_start_byte10 = "The Starting byte the data begins at for channel 10"
|
||||
caninput_source_start_byte11 = "The Starting byte the data begins at for channel 11"
|
||||
caninput_source_start_byte12 = "The Starting byte the data begins at for channel 12"
|
||||
caninput_source_start_byte13 = "The Starting byte the data begins at for channel 13"
|
||||
caninput_source_start_byte14 = "The Starting byte the data begins at for channel 14"
|
||||
caninput_source_start_byte15 = "The Starting byte the data begins at for channel 15"
|
||||
caninput_source_num_bytes0 = "The number of bytes the data is made from starting at selected start byte number"
|
||||
caninput_source_num_bytes1 = "The number of bytes the data is made from starting at selected start byte number"
|
||||
caninput_source_num_bytes2 = "The number of bytes the data is made from starting at selected start byte number"
|
||||
caninput_source_num_bytes3 = "The number of bytes the data is made from starting at selected start byte number"
|
||||
caninput_source_num_bytes4 = "The number of bytes the data is made from starting at selected start byte number"
|
||||
caninput_source_num_bytes5 = "The number of bytes the data is made from starting at selected start byte number"
|
||||
caninput_source_num_bytes6 = "The number of bytes the data is made from starting at selected start byte number"
|
||||
caninput_source_num_bytes7 = "The number of bytes the data is made from starting at selected start byte number"
|
||||
caninput_source_num_bytes8 = "The number of bytes the data is made from starting at selected start byte number"
|
||||
caninput_source_num_bytes9 = "The number of bytes the data is made from starting at selected start byte number"
|
||||
caninput_source_num_bytes10 = "The number of bytes the data is made from starting at selected start byte number"
|
||||
caninput_source_num_bytes11 = "The number of bytes the data is made from starting at selected start byte number"
|
||||
caninput_source_num_bytes12 = "The number of bytes the data is made from starting at selected start byte number"
|
||||
caninput_source_num_bytes13 = "The number of bytes the data is made from starting at selected start byte number"
|
||||
caninput_source_num_bytes14 = "The number of bytes the data is made from starting at selected start byte number"
|
||||
caninput_source_num_bytes15 = "The number of bytes the data is made from starting at selected start byte number"
|
||||
caninput_sel9b = "This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 9 "
|
||||
caninput_sel10b = "This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 10 "
|
||||
caninput_sel11b = "This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 11 "
|
||||
caninput_sel12b = "This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 12 "
|
||||
caninput_sel13b = "This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 13 "
|
||||
caninput_sel14b = "This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 14 "
|
||||
caninput_sel15b = "This Enables External/CAN data via the Secondary Serial CANBUS expansion module or local analog/digital on input channel 15 "
|
||||
|
||||
cmdEnableTestMode = "Click this to enable test mode. This will not be available if the engine is running"
|
||||
cmdStopTestMode = "Click this to disable test mode"
|
||||
cmdtestinj150dc = "This will cycle the output at 50% Duty cycle at a 1s interval"
|
||||
cmdtestinj250dc = "This will cycle the output at 50% Duty cycle at a 1s interval"
|
||||
cmdtestinj350dc = "This will cycle the output at 50% Duty cycle at a 1s interval"
|
||||
cmdtestinj450dc = "This will cycle the output at 50% Duty cycle at a 1s interval"
|
||||
cmdtestinj550dc = "This will cycle the output at 50% Duty cycle at a 1s interval"
|
||||
cmdtestinj650dc = "This will cycle the output at 50% Duty cycle at a 1s interval"
|
||||
cmdtestinj750dc = "This will cycle the output at 50% Duty cycle at a 1s interval"
|
||||
cmdtestinj850dc = "This will cycle the output at 50% Duty cycle at a 1s interval"
|
||||
cmdtestspk150dc = "This will cycle the output at 50% Duty cycle at a 1s interval"
|
||||
cmdtestspk250dc = "This will cycle the output at 50% Duty cycle at a 1s interval"
|
||||
cmdtestspk350dc = "This will cycle the output at 50% Duty cycle at a 1s interval"
|
||||
cmdtestspk450dc = "This will cycle the output at 50% Duty cycle at a 1s interval"
|
||||
caninput_source_can_address0 = "The source 11bit CAN address of the data for channel 0"
|
||||
caninput_source_can_address1 = "The source 11bit CAN address of the data for channel 1"
|
||||
caninput_source_can_address2 = "The source 11bit CAN address of the data for channel 2"
|
||||
caninput_source_can_address3 = "The source 11bit CAN address of the data for channel 3"
|
||||
caninput_source_can_address4 = "The source 11bit CAN address of the data for channel 4"
|
||||
caninput_source_can_address5 = "The source 11bit CAN address of the data for channel 5"
|
||||
caninput_source_can_address6 = "The source 11bit CAN address of the data for channel 6"
|
||||
caninput_source_can_address7 = "The source 11bit CAN address of the data for channel 7"
|
||||
caninput_source_can_address8 = "The source 11bit CAN address of the data for channel 8 "
|
||||
caninput_source_can_address9 = "The source 11bit CAN address of the data for channel 9"
|
||||
caninput_source_can_address10 = "The source 11bit CAN address of the data for channel 10"
|
||||
caninput_source_can_address11 = "The source 11bit CAN address of the data for channel 11"
|
||||
caninput_source_can_address12 = "The source 11bit CAN address of the data for channel 12"
|
||||
caninput_source_can_address13 = "The source 11bit CAN address of the data for channel 13"
|
||||
caninput_source_can_address14 = "The source 11bit CAN address of the data for channel 14"
|
||||
caninput_source_can_address15 = "The source 11bit CAN address of the data for channel 15"
|
||||
caninput_source_start_byte0 = "The Starting byte the data begins at for channel 0"
|
||||
caninput_source_start_byte1 = "The Starting byte the data begins at for channel 1"
|
||||
caninput_source_start_byte2 = "The Starting byte the data begins at for channel 2"
|
||||
caninput_source_start_byte3 = "The Starting byte the data begins at for channel 3"
|
||||
caninput_source_start_byte4 = "The Starting byte the data begins at for channel 4"
|
||||
caninput_source_start_byte5 = "The Starting byte the data begins at for channel 5"
|
||||
caninput_source_start_byte6 = "The Starting byte the data begins at for channel 6"
|
||||
caninput_source_start_byte7 = "The Starting byte the data begins at for channel 7"
|
||||
caninput_source_start_byte8 = "The Starting byte the data begins at for channel 8"
|
||||
caninput_source_start_byte9 = "The Starting byte the data begins at for channel 9"
|
||||
caninput_source_start_byte10 = "The Starting byte the data begins at for channel 10"
|
||||
caninput_source_start_byte11 = "The Starting byte the data begins at for channel 11"
|
||||
caninput_source_start_byte12 = "The Starting byte the data begins at for channel 12"
|
||||
caninput_source_start_byte13 = "The Starting byte the data begins at for channel 13"
|
||||
caninput_source_start_byte14 = "The Starting byte the data begins at for channel 14"
|
||||
caninput_source_start_byte15 = "The Starting byte the data begins at for channel 15"
|
||||
caninput_source_num_bytes0 = "The number of bytes the data is made from starting at selected start byte number"
|
||||
caninput_source_num_bytes1 = "The number of bytes the data is made from starting at selected start byte number"
|
||||
caninput_source_num_bytes2 = "The number of bytes the data is made from starting at selected start byte number"
|
||||
caninput_source_num_bytes3 = "The number of bytes the data is made from starting at selected start byte number"
|
||||
caninput_source_num_bytes4 = "The number of bytes the data is made from starting at selected start byte number"
|
||||
caninput_source_num_bytes5 = "The number of bytes the data is made from starting at selected start byte number"
|
||||
caninput_source_num_bytes6 = "The number of bytes the data is made from starting at selected start byte number"
|
||||
caninput_source_num_bytes7 = "The number of bytes the data is made from starting at selected start byte number"
|
||||
caninput_source_num_bytes8 = "The number of bytes the data is made from starting at selected start byte number"
|
||||
caninput_source_num_bytes9 = "The number of bytes the data is made from starting at selected start byte number"
|
||||
caninput_source_num_bytes10 = "The number of bytes the data is made from starting at selected start byte number"
|
||||
caninput_source_num_bytes11 = "The number of bytes the data is made from starting at selected start byte number"
|
||||
caninput_source_num_bytes12 = "The number of bytes the data is made from starting at selected start byte number"
|
||||
caninput_source_num_bytes13 = "The number of bytes the data is made from starting at selected start byte number"
|
||||
caninput_source_num_bytes14 = "The number of bytes the data is made from starting at selected start byte number"
|
||||
caninput_source_num_bytes15 = "The number of bytes the data is made from starting at selected start byte number"
|
||||
|
||||
ADCFILTER_TPS = "Recommended value: 50"
|
||||
ADCFILTER_CLT = "Recommended value: 180"
|
||||
ADCFILTER_IAT = "Recommended value: 180"
|
||||
ADCFILTER_O2 = "Recommended value: 128"
|
||||
ADCFILTER_BAT = "Recommended value: 128"
|
||||
ADCFILTER_MAP = "This setting is only available when using the Instantaneious MAP sampling method. Recommended value: 20"
|
||||
ADCFILTER_BARO = "This setting is only available when using an external Baro sensor. Recommended value: 64"
|
||||
cmdEnableTestMode = "Click this to enable test mode. This will not be available if the engine is running"
|
||||
cmdStopTestMode = "Click this to disable test mode"
|
||||
cmdtestinj150dc = "This will cycle the output at 50% Duty cycle at a 1s interval"
|
||||
cmdtestinj250dc = "This will cycle the output at 50% Duty cycle at a 1s interval"
|
||||
cmdtestinj350dc = "This will cycle the output at 50% Duty cycle at a 1s interval"
|
||||
cmdtestinj450dc = "This will cycle the output at 50% Duty cycle at a 1s interval"
|
||||
cmdtestinj550dc = "This will cycle the output at 50% Duty cycle at a 1s interval"
|
||||
cmdtestinj650dc = "This will cycle the output at 50% Duty cycle at a 1s interval"
|
||||
cmdtestinj750dc = "This will cycle the output at 50% Duty cycle at a 1s interval"
|
||||
cmdtestinj850dc = "This will cycle the output at 50% Duty cycle at a 1s interval"
|
||||
cmdtestspk150dc = "This will cycle the output at 50% Duty cycle at a 1s interval"
|
||||
cmdtestspk250dc = "This will cycle the output at 50% Duty cycle at a 1s interval"
|
||||
cmdtestspk350dc = "This will cycle the output at 50% Duty cycle at a 1s interval"
|
||||
cmdtestspk450dc = "This will cycle the output at 50% Duty cycle at a 1s interval"
|
||||
|
||||
boostIntv = "The closed loop control interval will run every this many ms. Generally values between 50% and 100% of the valve frequency work best"
|
||||
VVTasOnOff = "Whether or not the VVT table should be treated as on and off control only. If you are using the VVT map to control a switch, this should be Yes. If you are using the VVT control to drive a PWM signal, this should be No"
|
||||
ADCFILTER_TPS = "Recommended value: 50"
|
||||
ADCFILTER_CLT = "Recommended value: 180"
|
||||
ADCFILTER_IAT = "Recommended value: 180"
|
||||
ADCFILTER_O2 = "Recommended value: 128"
|
||||
ADCFILTER_BAT = "Recommended value: 128"
|
||||
ADCFILTER_MAP = "This setting is only available when using the Instantaneious MAP sampling method. Recommended value: 20"
|
||||
ADCFILTER_BARO = "This setting is only available when using an external Baro sensor. Recommended value: 64"
|
||||
|
||||
stagedInjSizePri= "Size of the primary injectors. The sum of the Pri and Sec injectors values MUST match the value used in the req_fuel calculation"
|
||||
stagedInjSizeSec= "Size of the secondary injectors. The sum of the Pri and Sec injectors values MUST match the value used in the req_fuel calculation"
|
||||
#if resetcontrol_adv
|
||||
resetControl = "How to control the Arduino's automatic reset feature. NOTE: Some of these settings require modifying your hardware and replacing the Arduino bootloader. See the Wiki for more details.\n\nDisabled: Allow the Arduino to reset when a new serial connection is made.\n\nPrevent When Running: Hold the control pin high while the engine is running.\n\nPrevent Always: Always hold the control pin high.\n\nSerial Command: Normally hold the control pin high, but pull it low when the 'U' serial command is issued and reset upon receiving more data."
|
||||
#else
|
||||
resetControl = "If set to Serial Command, normally hold the control pin high but pull it low when the 'U' serial command is issued and reset upon receiving more data. The control pin should be connected to the Arduino's reset pin."
|
||||
#endif
|
||||
boostIntv = "The closed loop control interval will run every this many ms. Generally values between 50% and 100% of the valve frequency work best"
|
||||
VVTasOnOff = "Whether or not the VVT table should be treated as on and off control only. If you are using the VVT map to control a switch, this should be Yes. If you are using the VVT control to drive a PWM signal, this should be No"
|
||||
|
||||
stagedInjSizePri= "Size of the primary injectors. The sum of the Pri and Sec injectors values MUST match the value used in the req_fuel calculation"
|
||||
stagedInjSizeSec= "Size of the secondary injectors. The sum of the Pri and Sec injectors values MUST match the value used in the req_fuel calculation"
|
||||
#if resetcontrol_adv
|
||||
resetControl = "How to control the Arduino's automatic reset feature. NOTE: Some of these settings require modifying your hardware and replacing the Arduino bootloader. See the Wiki for more details.\n\nDisabled: Allow the Arduino to reset when a new serial connection is made.\n\nPrevent When Running: Hold the control pin high while the engine is running.\n\nPrevent Always: Always hold the control pin high.\n\nSerial Command: Normally hold the control pin high, but pull it low when the 'U' serial command is issued and reset upon receiving more data."
|
||||
#else
|
||||
resetControl = "If set to Serial Command, normally hold the control pin high but pull it low when the 'U' serial command is issued and reset upon receiving more data. The control pin should be connected to the Arduino's reset pin."
|
||||
#endif
|
||||
resetControlPin = "The Arduino pin used to control resets."
|
||||
|
||||
battVCorMode = "The Battery Voltage Correction value from the table below can either be applied on the whole injection Pulse Width value, or only on the Open Time value."
|
||||
battVCorMode = "The Battery Voltage Correction value from the table below can either be applied on the whole injection Pulse Width value, or only on the Open Time value."
|
||||
|
||||
[UserDefined]
|
||||
|
||||
|
@ -1957,10 +1962,11 @@ menuDialog = main
|
|||
dialog = fanSettings,"Fan Settings",7
|
||||
topicHelp = "https://wiki.speeduino.com/en/configuration/Thermo_fan"
|
||||
field = "Fan Mode", fanEnable
|
||||
field = "Fan when off", fanWhenOff, { fanEnable }
|
||||
field = "Allow fan when off", fanWhenOff, { fanEnable }
|
||||
field = "Allow fan when cranking", fanWhenCranking, { fanEnable }
|
||||
field = "Fan output pin", fanPin, { fanEnable }
|
||||
field = "Fan Output Inverted", fanInv , { fanEnable }
|
||||
field = "Fan temperature SP", fanSP, { fanEnable }
|
||||
field = "Fan switching temperature", fanSP, { fanEnable }
|
||||
field = "Fan hysteresis", fanHyster, { fanEnable }
|
||||
|
||||
dialog = stepper_idle, "Stepper Idle"
|
||||
|
@ -3007,6 +3013,7 @@ menuDialog = main
|
|||
displayOnlyField = "idleUpPin", idleUpPin, {idleUpEnabled}
|
||||
displayOnlyField = "launchPin", launchPin, {launchEnable}
|
||||
displayOnlyField = "vvtPin", vvtPin, {vvtEnabled}
|
||||
displayOnlyField = "vssPin", vssPin, {vssMode > 1}
|
||||
displayOnlyField = "boostPin", boostPin, {boostEnabled}
|
||||
displayOnlyField = "baroPin", baroPin,{useExtBaro}
|
||||
displayOnlyField = "EMAPPin", EMAPPin, {useEMAP}
|
||||
|
@ -3525,7 +3532,8 @@ cmdVSSratio6 = "E\x99\x06"
|
|||
mapGauge_bar = map_bar, "Engine MAP (BAR)", "Bar", -1, 3, -1, -1, 5, 5, 2, 2
|
||||
mapGauge_vacBoost = map_vacboost, "Engine MAP (in-Hg/PSI)", "in-Hg/PSI", -30, 30, -30, -30, 30, 30, 1, 1
|
||||
baroGauge = baro, "Baro Pressure", "kPa", 0, {maphigh}, 0, 20, {mapwarn}, {mapdang}, 0, 0
|
||||
batteryVoltage = batteryVoltage,"Battery Voltage", "volts", 0, 25, 8, 9, 15, 16, 2, 2
|
||||
batteryVoltage = batteryVoltage,"Battery Voltage", "volts", 0, 25, 8, 9, 15, 16, 2, 2
|
||||
vssGauge = vss, "Vehicle Speed", "km/h", 0, 250, 5, 10, 180, 200, 0, 0
|
||||
|
||||
tpsADCGauge = tpsADC, "TPS ADC", "", 0, 255, -1, -1, 256, 256, 0, 0
|
||||
throttleGauge = throttle, "Throttle Position", "%TPS", 0, 100, -1, 1, 90, 100, 0, 0
|
||||
|
|
|
@ -28,6 +28,9 @@ void fanControl();
|
|||
#define N2O_STAGE2_PIN_HIGH() *n2o_stage2_pin_port |= (n2o_stage2_pin_mask)
|
||||
#define READ_N2O_ARM_PIN() ((*n2o_arming_pin_port & n2o_arming_pin_mask) ? true : false)
|
||||
|
||||
#define FAN_ON() ((configPage6.fanInv) ? FAN_PIN_LOW() : FAN_PIN_HIGH())
|
||||
#define FAN_OFF() ((configPage6.fanInv) ? FAN_PIN_HIGH() : FAN_PIN_LOW())
|
||||
|
||||
volatile PORT_TYPE *boost_pin_port;
|
||||
volatile PINMASK_TYPE boost_pin_mask;
|
||||
volatile PORT_TYPE *vvt_pin_port;
|
||||
|
|
|
@ -41,16 +41,22 @@ void fanControl()
|
|||
|
||||
if ( (currentStatus.coolant >= onTemp) && (fanPermit == true) )
|
||||
{
|
||||
//Fan needs to be turned on. Checked for normal or inverted fan signal
|
||||
if( configPage6.fanInv == 0 ) { FAN_PIN_HIGH(); }
|
||||
else { FAN_PIN_LOW(); }
|
||||
//Fan needs to be turned on.
|
||||
if(BIT_CHECK(currentStatus.engine, BIT_ENGINE_CRANK) && (configPage2.fanWhenCranking == 0))
|
||||
{
|
||||
//If the user has elected to disable the fan during cranking, make sure it's off
|
||||
FAN_OFF();
|
||||
}
|
||||
else
|
||||
{
|
||||
FAN_ON();
|
||||
}
|
||||
currentStatus.fanOn = true;
|
||||
}
|
||||
else if ( (currentStatus.coolant <= offTemp) || (!fanPermit) )
|
||||
{
|
||||
//Fan needs to be turned off. Checked for normal or inverted fan signal
|
||||
if( configPage6.fanInv == 0 ) { FAN_PIN_LOW(); }
|
||||
else { FAN_PIN_HIGH(); }
|
||||
//Fan needs to be turned off.
|
||||
FAN_OFF();
|
||||
currentStatus.fanOn = false;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -7,7 +7,9 @@
|
|||
#if defined(__AVR_ATmega1280__) || defined(__AVR_ATmega2560__) || defined(__AVR_ATmega2561__)
|
||||
#define BOARD_DIGITAL_GPIO_PINS 54
|
||||
#define BOARD_NR_GPIO_PINS 62
|
||||
#ifndef LED_BUILTIN
|
||||
#define LED_BUILTIN 13
|
||||
#endif
|
||||
#define CORE_AVR
|
||||
#define BOARD_H "board_avr2560.h"
|
||||
#define INJ_CHANNELS 4
|
||||
|
@ -630,7 +632,8 @@ struct config2 {
|
|||
uint16_t EMAPMax;
|
||||
|
||||
byte fanWhenOff : 1; // Only run fan when engine is running
|
||||
byte fanUnused : 7;
|
||||
byte fanWhenCranking : 1; //**< Setting whether the fan output will stay on when the engine is cranking */
|
||||
byte fanUnused : 6;
|
||||
byte asePct[4]; //Afterstart enrichment (%)
|
||||
byte aseCount[4]; //Afterstart enrichment cycles. This is the number of ignition cycles that the afterstart enrichment % lasts for
|
||||
byte aseBins[4]; //Afterstart enrichment temp axis
|
||||
|
|
|
@ -448,6 +448,9 @@ void loop()
|
|||
BIT_CLEAR(currentStatus.engine, BIT_ENGINE_RUN);
|
||||
currentStatus.runSecs = 0; //We're cranking (hopefully), so reset the engine run time to prompt ASE.
|
||||
if(configPage4.ignBypassEnabled > 0) { digitalWrite(pinIgnBypass, LOW); }
|
||||
|
||||
//Check whether the user has selected to disable to the fan during cranking
|
||||
if(configPage2.fanWhenCranking == 0) { FAN_OFF(); }
|
||||
}
|
||||
//END SETTING STATUSES
|
||||
//-----------------------------------------------------------------------------------------------------
|
||||
|
|
Loading…
Reference in New Issue