update flash structure & TS config
This commit is contained in:
parent
072aae18d5
commit
cb82c85481
|
@ -96,7 +96,7 @@
|
|||
! This is the version of the data stored in flash configuration
|
||||
! Any time an incompatible change is made to the configuration format stored in flash,
|
||||
! update this string to the current date!
|
||||
#define FLASH_DATA_VERSION 250225
|
||||
#define FLASH_DATA_VERSION 250226
|
||||
|
||||
! all the sub-structures are going to be nested within the primary structure, that's
|
||||
! needed to get a proper TunerStudio file
|
||||
|
@ -490,9 +490,10 @@ uint16_t engineSnifferRpmThreshold;Engine sniffer would be disabled above this r
|
|||
|
||||
struct injector_s
|
||||
float flow;This is your injector flow at the fuel pressure used in the vehicle\nSee units setting below;"", 1, 0, 0, 99999, 2
|
||||
! todo: make this a table using VBAT_INJECTOR_CURVE_PRESSURE_SIZE for second coordinate. yes, default value '2'
|
||||
float[VBAT_INJECTOR_CURVE_SIZE] battLagCorrBins;;"volts", 1, 0, 0, 20, 2
|
||||
float[VBAT_INJECTOR_CURVE_SIZE] battLagCorr;ms delay between injector open and close dead times;"ms", 1, 0, 0, 50, 2
|
||||
int16_t[VBAT_INJECTOR_CURVE_PRESSURE_SIZE] autoscale battLagCorrBattBins;;"volts", 0.01, 0, 0, 20, 2
|
||||
! 30k Kpa considering the highest value I found online for a GDI engine, for a Mustang GT PP1
|
||||
int16_t[VBAT_INJECTOR_CURVE_PRESSURE_SIZE] autoscale battLagCorrPressBins;Injector correction pressure;"kPa", 0.01, 0, 0, 30000, 2
|
||||
int16_t[VBAT_INJECTOR_CURVE_PRESSURE_SIZE x VBAT_INJECTOR_CURVE_PRESSURE_SIZE] autoscale battLagCorrTable;ms delay between injector open and close dead times;"ms", 0.01, 0, 0, 50, 2
|
||||
end_struct
|
||||
|
||||
injector_s injector
|
||||
|
|
|
@ -493,22 +493,6 @@ enable2ndByteCanID = false
|
|||
yBins = map_samplingWindow
|
||||
gauge = MAPGauge
|
||||
|
||||
curve = injectorsDeadTime, "Injector dead time"
|
||||
columnLabel = "Battery", "Dead Time"
|
||||
xAxis = 6, 16, 11
|
||||
yAxis = 0, 8, 9
|
||||
xBins = injector_battLagCorrBins, VBatt
|
||||
yBins = injector_battLagCorr
|
||||
gauge = VBattGauge
|
||||
|
||||
curve = injectorsSecondaryDeadTime, "Secondary injector dead time"
|
||||
columnLabel = "Battery", "Dead Time"
|
||||
xAxis = 6, 16, 11
|
||||
yAxis = 0, 8, 9
|
||||
xBins = injectorSecondary_battLagCorrBins, VBatt
|
||||
yBins = injectorSecondary_battLagCorr
|
||||
gauge = VBattGauge
|
||||
|
||||
curve = vrThresholdCurve1, "VR 1 Threshold"
|
||||
columnLabel = "RPM", "Voltage"
|
||||
xAxis = 0, 8000, 9
|
||||
|
@ -1477,6 +1461,18 @@ curve = rangeMatrix, "Range Switch Input Matrix"
|
|||
yBins = alternatorVoltageTargetLoadBins, ignitionLoad
|
||||
zBins = alternatorVoltageTargetTable
|
||||
|
||||
table = injectorsDeadTime, injectorsDeadTimeMap, "Injector dead time"
|
||||
xyLabels = "Battery", "Pressure"
|
||||
xBins = injector_battLagCorrBattBins, VBatt
|
||||
yBins = injector_battLagCorrPressBins, pressureCorrectionReference
|
||||
zBins = injector_battLagCorrTable
|
||||
|
||||
table = injectorsSecondaryDeadTime, injectorsSecondaryDeadTimeMap, "Secondary injector dead time"
|
||||
xyLabels = "Battery", "Pressure"
|
||||
xBins = injectorSecondary_battLagCorrBattBins, VBatt
|
||||
yBins = injectorSecondary_battLagCorrPressBins, pressureCorrectionReference
|
||||
zBins = injectorSecondary_battLagCorrTable
|
||||
|
||||
[GaugeConfigurations]
|
||||
@@LIVE_DATA_GAUGES_FROM_FILE@@
|
||||
@@BOARD_GAUGES_FROM_FILE@@
|
||||
|
|
Loading…
Reference in New Issue