initial commit
This commit is contained in:
114
projectCfg/custom.ini
Normal file
114
projectCfg/custom.ini
Normal file
@@ -0,0 +1,114 @@
|
||||
encoding=UTF-8
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
[GaugeConfigurations]
|
||||
;-------------------------------------------------------------------------------
|
||||
; Define a gauge's characteristics here, then go to a specific layout
|
||||
; block (Tuning or FrontPage) and use the name you've defined here to
|
||||
; display that gauge in a particular position.
|
||||
;
|
||||
; Name = Case-sensitive, user-defined name for this gauge configuration.
|
||||
; Var = Case-sensitive name of variable to be displayed, see the
|
||||
; OutputChannels block in this file for possible values.
|
||||
; Title = Title displayed at the top of the gauge.
|
||||
; Units = Units displayed below value on gauge.
|
||||
; Lo = Lower scale limit of gauge.
|
||||
; Hi = Upper scale limit of gauge.
|
||||
; LoD = Lower limit at which danger color is used for gauge background.
|
||||
; LoW = Lower limit at which warning color is used.
|
||||
; HiW = Upper limit at which warning color is used.
|
||||
; HiD = Upper limit at which danger color is used.
|
||||
; vd = Decimal places in displayed value
|
||||
; ld = Label decimal places for display of Lo and Hi, above.
|
||||
|
||||
; The following can be either numeric values or an expression:
|
||||
; Lo, Hi, LoD, LoW, HiW, HiD, ld
|
||||
; For title and Units TunerStudio String functions can be used.
|
||||
|
||||
;Name Var Title Units Lo Hi LoD LoW HiW HiD vd ld
|
||||
gaugeCategory = "Generic sensor inputs"
|
||||
Fuel_Pressure = fuel_pressure , "Fuel Pressure", "PSI", 0.0, 110.0, 20.0, 30.0, 90.0, 100.0, 1.0, 1.0
|
||||
OilPressure = oil_pressure , "Oil Pressure", "PSI", 0.0, 110.0, 10.0, 20.0, 90.0, 100.0, 1.0, 1.0
|
||||
|
||||
|
||||
|
||||
|
||||
[OutputChannels]
|
||||
;OutputChannels have to basic forms:
|
||||
; 1) Controller Channels - values contained in the runtime data stream recieved from the controller.
|
||||
; 2) Expression based Channels - new channels based on any other channels or Constant using
|
||||
; mathematical operations and TunerStudio functions.
|
||||
; Type one are primarily used by Firmware developers, type 2 can easily be user extensions.
|
||||
;
|
||||
; Type 1 format for scalar:
|
||||
; channelName = scalar, dataType, offset, "Units", scale, translate
|
||||
; channelName can be any alphanumeric string. It must start with a letter and contain no special characters or white spaces.
|
||||
; dataType will be U08, S08, U16, S16, U16, S32 or F32. For F32
|
||||
; offset - the index of the 1st byte in the read datastream, this can be numeric or key words nextOffset and lastOffset
|
||||
; scale and translate will be applied to the raw value using the standard formulas:
|
||||
; msValue = userValue / scale - translate
|
||||
; userValue = (msValue + translate) * scale
|
||||
; Also of note, scale and translate can be expressions, units can use String function expressions
|
||||
; Example:
|
||||
; seconds = scalar, U16, 0, "s", 1.000, 0.0
|
||||
;
|
||||
; Type 1 format for paramClass bit
|
||||
; channelName = bits, dataType, offset, bitsOfInterest
|
||||
; Examples:
|
||||
; ready = bits, U08, 11, [0:0]
|
||||
; crank = bits, U08, 11, [1:1]
|
||||
; startw = bits, U08, 11, [2:2]
|
||||
; warmup = bits, U08, 11, [3:3]
|
||||
; tpsaccaen = bits, U08, 11, [4:4]
|
||||
; tpsaccden = bits, U08, 11, [5:5]
|
||||
;
|
||||
; 6 bit fields defined from 1 byte at offset 11.
|
||||
; the bits of interest are described in the format [n:m] where n is the starting bit and m the last bit.
|
||||
; in the above examples, n=m so each channel is a single bit.
|
||||
;
|
||||
;
|
||||
; Type 2 format:
|
||||
; channelName = { someExpression }, "Units"
|
||||
; someExpression can be made up of any set of constants and OutputChannels using any
|
||||
; of the TunerStudio operators and functions.
|
||||
;
|
||||
; For more information on TunerStudio functions, see:
|
||||
; http://tunerstudio.com/index.php/manuals/88-math-parser-functions
|
||||
;------------------------------------------------------------------------------------------
|
||||
|
||||
;channelName = class, dataType, offset, "Units", scale, translate
|
||||
;------------ ------- --------- ------- -------- ------ ---------
|
||||
|
||||
|
||||
fuel_pressure = {0.0 + (100.0 - 0.0) * ((sensor04 - 102.3 )/( 920.7 - 102.3 ))}, "psi"
|
||||
oil_pressure = {0.0 + (100.0 - 0.0) * ((sensor02 - 102.3 )/( 920.7 - 102.3 ))}, "psi"
|
||||
|
||||
|
||||
|
||||
|
||||
[Datalog]
|
||||
; The entries are saved in the datalog file in the order in which they
|
||||
; appear in the list below.
|
||||
;
|
||||
; Channel - Case sensitive name of output channel to be logged.
|
||||
; Label - String written to header line of log.
|
||||
; Type - normally float or int, no longer used.
|
||||
; Format - C-style output format of data or tag:
|
||||
; Boolean tags: yesNo, onOff, highLow, activeInactive
|
||||
; For Hex output: hex
|
||||
; Enabled Cond - This field will only be logged if the enable
|
||||
; condition is blank or resolves to true.
|
||||
; Lag - If for any reason you need to have a field lag
|
||||
; n records behind realtime. Use a number or expression
|
||||
; Channel Label Type Format Enabled Cond Lag
|
||||
; -------------- ---------- ----- ------ ------------ ---
|
||||
|
||||
|
||||
entry = oil_pressure, "oil_pressure", float, "%.1f"
|
||||
entry = fuel_pressure, "fuel_pressure", float, "%.1f"
|
||||
|
||||
|
||||
|
||||
14838
projectCfg/mainController.ini
Normal file
14838
projectCfg/mainController.ini
Normal file
File diff suppressed because it is too large
Load Diff
6
projectCfg/persistedChannelValues.properties
Normal file
6
projectCfg/persistedChannelValues.properties
Normal file
@@ -0,0 +1,6 @@
|
||||
#Persisted Channels storage file by EFI Analytics, Inc
|
||||
#Last Saved on: Thu Jan 12 16:38:31 AEDT 2023
|
||||
#Thu Jan 12 16:38:31 AEDT 2023
|
||||
_(\ (\ deltatime\ <\ 1000.0\ )\ )\ ?\ ((\ (\ tsFuelFlowGph\ *\ deltatime\ /\ 3600.0\ )\ ))\ \:\ (0.0)=0.009912412382524851
|
||||
_(\ (\ tsInputSpeedMPH\ *\ 1.60934\ )\ /\ 3600.0\ *\ deltatime\ )=0.0
|
||||
_(\ tsInputSpeedMPH\ /\ 3600.0\ *\ deltatime\ )=0.0
|
||||
6
projectCfg/persistedChannelValues.properties.bak
Normal file
6
projectCfg/persistedChannelValues.properties.bak
Normal file
@@ -0,0 +1,6 @@
|
||||
#Persisted Channels storage file by EFI Analytics, Inc
|
||||
#Last Saved on: Wed Jan 11 20:13:05 AEDT 2023
|
||||
#Wed Jan 11 20:13:05 AEDT 2023
|
||||
_(\ (\ tsInputSpeedMPH\ *\ 1.60934\ )\ /\ 3600.0\ *\ deltatime\ )=0.0
|
||||
_(\ (\ deltatime\ <\ 1000.0\ )\ )\ ?\ ((\ (\ tsFuelFlowGph\ *\ deltatime\ /\ 3600.0\ )\ ))\ \:\ (0.0)=0.009912412382524851
|
||||
_(\ tsInputSpeedMPH\ /\ 3600.0\ *\ deltatime\ )=0.0
|
||||
454
projectCfg/project.properties
Normal file
454
projectCfg/project.properties
Normal file
@@ -0,0 +1,454 @@
|
||||
#Project Attributes.
|
||||
#TunerStudio by EFI Analytics, Inc
|
||||
#Last Saved on: Fri Jan 27 06:56:57 AEDT 2023
|
||||
#Fri Jan 27 06:56:57 AEDT 2023
|
||||
TrimTablePanel_inj_trimdTbl_egoSensorIndex=1
|
||||
tcluparamsTorque\ Convertor\ Lockup_width=388
|
||||
TrimTablePanel_inj_trimcTbl_lambdaChannel=afr1
|
||||
Triggers.ActiveTriggers=
|
||||
fuelpumpFuel\ Pump\ and\ Pressure\ Control_Y=51
|
||||
fuelpumpFuel\ Pump\ and\ Pressure\ Control_X=606
|
||||
generalsettings2General\ Settings_height=713
|
||||
MAFtableMAF\ Flow\ Curve_Y=11
|
||||
MAFtableMAF\ Flow\ Curve_X=365
|
||||
vvtparamsVVT\ Settings_height=801
|
||||
ignitionTbl1Ignition\ Table\ 1\ (Spark\ Advance)_width=695
|
||||
idlebinsIdle\ Warmup\ Duty/Steps_height=491
|
||||
veGenerator_txtPkTqMap=100
|
||||
fuelpumpFuel\ Pump\ and\ Pressure\ Control_width=685
|
||||
TrimTablePanel_inj_trimeTbl_egoCorChannel=egocor1
|
||||
veGenerator_cBoost=Naturally Aspirated
|
||||
inj_trimehInjector\ Cyl\ 5-7\ Trims_Y=76
|
||||
inj_trimehInjector\ Cyl\ 5-7\ Trims_X=366
|
||||
tcluparamsTorque\ Convertor\ Lockup_Y=319
|
||||
tcluparamsTorque\ Convertor\ Lockup_X=766
|
||||
egoControlAFR\ /\ EGO\ Control_Y=81
|
||||
egoControlAFR\ /\ EGO\ Control_X=391
|
||||
userDash0.DashName=Fuel
|
||||
tuneFileDir=C\:\\Users\\dell\\Documents\\TunerStudioProjects\\TrimbornHotrod
|
||||
specialSpecial\ Options_Y=363
|
||||
outputtest_io_2Output\ Test\ Mode\ -\ I/O\ 2_height=685
|
||||
specialSpecial\ Options_X=762
|
||||
dwellSettingsDwell\ Battery\ Correction_Y=180
|
||||
dwellSettingsDwell\ Battery\ Correction_X=489
|
||||
idle_voltage_comp_curvePWM\ Idle\ Voltage\ Compensation_width=388
|
||||
engine_controlEngine\ Control_width=388
|
||||
TrimTablePanel_inj_trimdTbl_egoCorChannel=egocor2
|
||||
egtEGT\ /\ Thermocouple\ Inputs_Y=230
|
||||
boostBoost\ Control\ Setings_height=633
|
||||
can_outpc_bcastCAN\ Realtime\ Data\ Broadcasting_Y=72
|
||||
egtEGT\ /\ Thermocouple\ Inputs_X=660
|
||||
can_outpc_bcastCAN\ Realtime\ Data\ Broadcasting_X=621
|
||||
can_outpc_bcast_2CAN\ Realtime\ Data\ Broadcasting\ 2_width=424
|
||||
idleVeIdle\ VE_width=549
|
||||
pinusagecanExpansion\ I/O\ Pins\ List/Usage\ -\ only\ works\ when\ online_Y=208
|
||||
pinusagecanExpansion\ I/O\ Pins\ List/Usage\ -\ only\ works\ when\ online_X=538
|
||||
TrimTablePanel_inj_trimhTbl_egoSensorIndex=1
|
||||
refTable_000_chkCelsius=true
|
||||
pinusageI/O\ Pins\ List\ Showing\ Usage\ -\ only\ works\ when\ online_height=500
|
||||
iactestOutput\ Test\ Mode\ -\ Idle\ Valve_height=472
|
||||
sensorsGeneric\ Sensor\ Inputs_width=957
|
||||
oilpressOil\ Pressure_width=792
|
||||
wueAfrTargetOffsetCurve_Set\ X\ Axis\ Minimum=-40.0
|
||||
engine_state_settingsEngine\ State\ Settings_Y=107
|
||||
refTable_000_txtBiasResistor=2490.0
|
||||
engine_state_settingsEngine\ State\ Settings_X=665
|
||||
iopinlistFeature\ List\ Showing\ I/O\ pins_width=908
|
||||
projectName=TrimbornHotrod
|
||||
selectedComDriver=Multi Interface MegaSquirt Driver
|
||||
inj_trimadInjector\ Cyl\ 1-4\ Trims_Y=76
|
||||
inj_trimadInjector\ Cyl\ 1-4\ Trims_X=366
|
||||
canegoCAN\ EGO,\ GPS_Y=282
|
||||
canegoCAN\ EGO,\ GPS_X=766
|
||||
TrimTablePanel_inj_trimcTbl_egoCorChannel=egocor1
|
||||
primingPWPriming\ Pulse_width=726
|
||||
overrunOver-Run\ Fuel\ Cut_Y=61
|
||||
veGenerator_txtDisplacementCid=3
|
||||
overrunOver-Run\ Fuel\ Cut_X=476
|
||||
knockSettingsKnock\ Sensor\ Settings_width=1092
|
||||
combinedCLidleClosed-Loop\ Idle\ Settings_height=574
|
||||
gen_pwm_aGeneric\ PWM\ A_Y=300
|
||||
gen_pwm_aGeneric\ PWM\ A_X=637
|
||||
coldAdvanceCold\ Advance_Y=118
|
||||
coldAdvanceCold\ Advance_X=320
|
||||
matclt_curveMAT/CLT\ correction_width=388
|
||||
idlebinsIdle\ Warmup\ Duty/Steps_width=732
|
||||
dashbcastDash\ Broadcasting_Y=409
|
||||
dashbcastDash\ Broadcasting_X=766
|
||||
ac_idleupAir\ Conditioning\ Idle-Up_Y=150
|
||||
accelsettingsAccel\ Enrich\ Settings_Y=213
|
||||
ac_idleupAir\ Conditioning\ Idle-Up_X=766
|
||||
accelsettingsAccel\ Enrich\ Settings_X=475
|
||||
TrimTablePanel_inj_trim1Tbl_egoSensorIndex=0
|
||||
refTable_000_txtResistor3=177.0
|
||||
idleAdvanceIdle\ Advance\ Settings_Y=359
|
||||
refTable_000_txtResistor2=2238.0
|
||||
veGenerator_txtPkTqRpm=3000
|
||||
injsettingsInjector\ Dead-Time_width=1116
|
||||
idleAdvanceIdle\ Advance\ Settings_X=645
|
||||
refTable_000_txtResistor1=100700.0
|
||||
TrimTablePanel_inj_trimhTbl_lambdaChannel=afr2
|
||||
injseqtestInjector\ Sequential\ Testing_width=388
|
||||
veTable1TblFuel\ VE\ Table\ 1_Y=140
|
||||
veTable1TblFuel\ VE\ Table\ 1_X=335
|
||||
userDash5.FileName=O2 Sensors.dash
|
||||
sensorCalCalibrate\ MAP/Baro_width=388
|
||||
inj_trimehInjector\ Cyl\ 5-7\ Trims_height=576
|
||||
can_outpc_bcastCAN\ Realtime\ Data\ Broadcasting_width=465
|
||||
userDash2.DashName=Pressure&Temps
|
||||
TrimTablePanel_inj_trim2Tbl_lambdaChannel=afr1
|
||||
battcalibCalibrate\ Battery\ Voltage_height=248
|
||||
VeAnalyzeConsole.veTable1Tbl_verticalSplitPos=524
|
||||
can_outpc_bcast_4CAN\ Realtime\ Data\ Broadcasting\ 4_height=552
|
||||
inj_trimilInjector\ Cyl\ 9-12\ Trims_height=576
|
||||
map_sample_dialogMAP\ Sample\ Settings_height=623
|
||||
canvssCAN\ VSS\ and\ gear\ selection_width=388
|
||||
inj_trimilInjector\ Cyl\ 9-12\ Trims_Y=76
|
||||
commPort=COM1
|
||||
inj_trimilInjector\ Cyl\ 9-12\ Trims_X=366
|
||||
VeAnalyzeConsole.idleve1Tbl_verticalSplitPos=524
|
||||
knockSettingsKnock\ Sensor\ Settings_Y=0
|
||||
knockSettingsKnock\ Sensor\ Settings_X=137
|
||||
idlebinsIdle\ Warmup\ Duty/Steps_Y=118
|
||||
inj_trimadInjector\ Cyl\ 1-4\ Trims_height=576
|
||||
map_sample_dialogMAP\ Sample\ Settings_width=643
|
||||
idlebinsIdle\ Warmup\ Duty/Steps_X=317
|
||||
coldAdvanceCold\ Advance_width=726
|
||||
userDash1.FileName=Spark.dash
|
||||
injspkonoffInj/Spk\ Disabling\ Test\ Mode_height=401
|
||||
pwmidle_crank_dutyorsteps_curveIdle\ Cranking\ Duty/Steps_height=530
|
||||
outputtestOutput\ Test\ Mode\ -\ Inj/Spk_width=670
|
||||
speedsensorsSpeed\ and\ Gear\ Sensors_width=935
|
||||
useCommonDashboardDir=false
|
||||
pinusageI/O\ Pins\ List\ Showing\ Usage\ -\ only\ works\ when\ online_Y=33
|
||||
pinusageI/O\ Pins\ List\ Showing\ Usage\ -\ only\ works\ when\ online_X=174
|
||||
ssShaft\ Speed\ Sensors_Y=355
|
||||
ssShaft\ Speed\ Sensors_X=766
|
||||
tableswTable\ Switch/Dual\ Fuel_width=735
|
||||
combinedignitionIgnition\ Options\ /\ Wheel\ Decoder_Y=11
|
||||
combinedignitionIgnition\ Options\ /\ Wheel\ Decoder_X=510
|
||||
specialSpecial\ Options_height=354
|
||||
gen_pwm_aGeneric\ PWM\ A_width=645
|
||||
ssShaft\ Speed\ Sensors_width=388
|
||||
refTable_001_txtTemp3=99.0
|
||||
fuelpumpFuel\ Pump\ and\ Pressure\ Control_height=640
|
||||
refTable_001_txtTemp2=30.0
|
||||
idle_voltage_comp_curvePWM\ Idle\ Voltage\ Compensation_Y=180
|
||||
refTable_001_txtTemp1=-40.0
|
||||
idle_voltage_comp_curvePWM\ Idle\ Voltage\ Compensation_X=489
|
||||
alternatorAlternator\ Control_height=712
|
||||
pwmidle_crank_dutyorsteps_stepscurve_Set\ X\ Axis\ Minimum=-40.0
|
||||
pwmidle_crank_dutyorsteps_curveIdle\ Cranking\ Duty/Steps_width=831
|
||||
canvssCAN\ VSS\ and\ gear\ selection_Y=280
|
||||
mafdialogMAF\ Settings_width=388
|
||||
canvssCAN\ VSS\ and\ gear\ selection_X=766
|
||||
baseEngine\ and\ Sequential\ Settings_width=627
|
||||
sparkcalcsSpark\ Calculations\ Summary_width=835
|
||||
pinusageI/O\ Pins\ List\ Showing\ Usage\ -\ only\ works\ when\ online_width=939
|
||||
baudRate=115200
|
||||
ioboxIO-Box\ Settings_Y=101
|
||||
ioboxIO-Box\ Settings_X=641
|
||||
fan_controlFan\ Control_height=574
|
||||
TrimTablePanel_inj_trimhTbl_egoCorChannel=egocor2
|
||||
speedsensorsSpeed\ and\ Gear\ Sensors_Y=27
|
||||
speedsensorsSpeed\ and\ Gear\ Sensors_X=343
|
||||
combinedCLidleClosed-Loop\ Idle\ Settings_Y=253
|
||||
pinusagecanExpansion\ I/O\ Pins\ List/Usage\ -\ only\ works\ when\ online_width=844
|
||||
combinedCLidleClosed-Loop\ Idle\ Settings_X=611
|
||||
ms3_port_edit_wrap1Programmable\ On/Off\ Outputs\ 1_width=555
|
||||
iactestOutput\ Test\ Mode\ -\ Idle\ Valve_width=613
|
||||
combinedignitionIgnition\ Options\ /\ Wheel\ Decoder_height=704
|
||||
inj_timing_tblInjector\ Timing_width=539
|
||||
VeAnalyzeConsole.veTable1Tbl_selectedDash=Standard
|
||||
TrimTablePanel_inj_trim2Tbl_egoCorChannel=egocor1
|
||||
AEpump_settingsAccel-Pump\ Accel\ Enrichment_height=664
|
||||
userDash4.DashName=MAF
|
||||
CommSettingDESKTOP-CDTND29CommDriver.controllerInterfaceId=FTDI - D2XX driver
|
||||
fan_controlFan\ Control_width=388
|
||||
pinusagecanExpansion\ I/O\ Pins\ List/Usage\ -\ only\ works\ when\ online_height=664
|
||||
iopinlistFeature\ List\ Showing\ I/O\ pins_Y=0
|
||||
iopinlistFeature\ List\ Showing\ I/O\ pins_X=458
|
||||
canbroadcastCAN\ Broadcasting_height=478
|
||||
TrimTablePanel_inj_trimbTbl_lambdaChannel=afr2
|
||||
TrimTablePanel_inj_trimeTbl_egoSensorIndex=0
|
||||
userDash3.FileName=Idle.dash
|
||||
fan_controlFan\ Control_Y=83
|
||||
canparamsCAN\ Parameters_width=685
|
||||
fan_controlFan\ Control_X=677
|
||||
crsettingsCranking\ /\ Startup\ Settings_Y=205
|
||||
crsettingsCranking\ /\ Startup\ Settings_X=706
|
||||
pinusagel2I/O\ Pins\ List2\ Showing\ Usage\ -\ only\ works\ when\ online_Y=418
|
||||
pinusagel2I/O\ Pins\ List2\ Showing\ Usage\ -\ only\ works\ when\ online_X=628
|
||||
vvtparamsVVT\ Settings_Y=139
|
||||
WueAnalyzeConsole.wueAnalyzer_warmup_curve_selectedDash=Standard
|
||||
vvtparamsVVT\ Settings_X=486
|
||||
can_rcvCAN\ receiving_height=612
|
||||
refTable_001_chkFahrenheit=false
|
||||
veGenerator_txtIdleMap=35
|
||||
pwmidle_crank_dutyorsteps_curveIdle\ Cranking\ Duty/Steps_Y=132
|
||||
tachoTacho\ Output_width=388
|
||||
pwmidle_crank_dutyorsteps_curveIdle\ Cranking\ Duty/Steps_X=461
|
||||
barometerCorrBarometric\ Correction_width=678
|
||||
TrimTablePanel_inj_trimaTbl_lambdaChannel=afr1
|
||||
alternatorAlternator\ Control_Y=184
|
||||
alternatorAlternator\ Control_X=569
|
||||
combinedCLidleClosed-Loop\ Idle\ Settings_width=698
|
||||
idle_voltage_comp_curvePWM\ Idle\ Voltage\ Compensation_height=367
|
||||
veTable1TblFuel\ VE\ Table\ 1_height=447
|
||||
projectDescription=
|
||||
injseqtestInjector\ Sequential\ Testing_height=276
|
||||
etcElectronic\ Throttle\ Control_width=814
|
||||
VeAnalyzeConsole.inj_trimaTbl_selectedDash=Standard
|
||||
CommSettingCom\ Port=COM1
|
||||
combinedidleIdle\ Control_height=419
|
||||
baseEngine\ and\ Sequential\ Settings_height=488
|
||||
egtEGT\ /\ Thermocouple\ Inputs_height=538
|
||||
refTable_000_chkFahrenheit=false
|
||||
CommSettingBaud\ Rate=115200
|
||||
battcalibCalibrate\ Battery\ Voltage_width=388
|
||||
alternatorAlternator\ Control_width=782
|
||||
veGenerator_txtPkHp=250
|
||||
etcElectronic\ Throttle\ Control_height=500
|
||||
accelsettingsAccel\ Enrich\ Settings_width=416
|
||||
canegoCAN\ EGO,\ GPS_height=486
|
||||
combinedignitionIgnition\ Options\ /\ Wheel\ Decoder_width=765
|
||||
logFileDir=C\:\\Users\\dell\\Documents\\TunerStudioProjects\\TrimbornHotrod\\DataLogs
|
||||
veGenerator_txtDisplacementCc=55
|
||||
ipwBins_Set\ X\ Axis\ Minimum=-40.0
|
||||
combinedidleIdle\ Control_Y=330
|
||||
combinedidleIdle\ Control_X=633
|
||||
TrimTablePanel_inj_trimbTbl_egoCorChannel=egocor2
|
||||
CommSettingMSCommDriver.FTDI\ -\ D2XX\ driverDevice\ Serial\ \#=AI05FJ73
|
||||
overrunOver-Run\ Fuel\ Cut_width=413
|
||||
injsettingsInjector\ Dead-Time_height=595
|
||||
crsettingsCranking\ /\ Startup\ Settings_height=456
|
||||
injspkonoffInj/Spk\ Disabling\ Test\ Mode_Y=339
|
||||
injspkonoffInj/Spk\ Disabling\ Test\ Mode_X=612
|
||||
vvtparamsVVT\ Settings_width=947
|
||||
generalsettings2General\ Settings_Y=23
|
||||
generalsettings2General\ Settings_X=595
|
||||
overrunOver-Run\ Fuel\ Cut_height=606
|
||||
refTable_001_chkCelsius=true
|
||||
dashbcastDash\ Broadcasting_width=388
|
||||
TrimTablePanel_inj_trim2Tbl_egoSensorIndex=0
|
||||
can_outpc_bcastCAN\ Realtime\ Data\ Broadcasting_height=598
|
||||
MAFtableMAF\ Flow\ Curve_width=801
|
||||
TrimTablePanel_inj_trimgTbl_lambdaChannel=afr1
|
||||
can_rcvCAN\ receiving_Y=58
|
||||
ioboxIO-Box\ Settings_height=667
|
||||
can_rcvCAN\ receiving_X=80
|
||||
TrimTablePanel_inj_trimaTbl_egoCorChannel=egocor1
|
||||
veGenerator_txtIdleRpm=700
|
||||
idleAdvanceIdle\ Advance\ Settings_height=361
|
||||
ac_idleupAir\ Conditioning\ Idle-Up_height=618
|
||||
CommSettingMSCommDriver.FTDI\ -\ D2XX\ driverBaud\ Rate=115200
|
||||
can_outpc_bcast_2CAN\ Realtime\ Data\ Broadcasting\ 2_height=552
|
||||
manifoldTempCorr2MAT\ Air\ Density\ Table_width=691
|
||||
generic_pid_aGeneric\ Closed-Loop\ A_height=532
|
||||
firmwareDescription=MS3 1.5.1 release 20171006 16\:30BST (c) JSM/KC ********
|
||||
canparamsCAN\ Parameters_height=645
|
||||
knockSettingsKnock\ Sensor\ Settings_height=738
|
||||
dwellSettingsDwell\ Battery\ Correction_height=367
|
||||
TrimTablePanel_inj_trim1Tbl_lambdaChannel=afr1
|
||||
egoControlAFR\ /\ EGO\ Control_width=868
|
||||
AEpump_settingsAccel-Pump\ Accel\ Enrichment_width=943
|
||||
iopinlistFeature\ List\ Showing\ I/O\ pins_height=738
|
||||
TrimTablePanel_inj_trimaTbl_egoSensorIndex=0
|
||||
sparkcalcsSpark\ Calculations\ Summary_height=738
|
||||
dwellSettings_showText=true
|
||||
dashbcastDash\ Broadcasting_height=262
|
||||
TrimTablePanel_inj_trimfTbl_lambdaChannel=afr2
|
||||
refTable_002_txtY2=18.7
|
||||
refTable_002_txtY1=9.7
|
||||
CommSettingMSCommDriver.controllerInterfaceId=FTDI - D2XX driver
|
||||
engine_controlEngine\ Control_Y=443
|
||||
engine_controlEngine\ Control_X=766
|
||||
map_sample_dialogMAP\ Sample\ Settings_Y=52
|
||||
map_sample_dialogMAP\ Sample\ Settings_X=361
|
||||
flash_unlockUn/Lock\ Calibrations_Y=259
|
||||
idleVeIdle\ VE_Y=284
|
||||
flash_unlockUn/Lock\ Calibrations_X=489
|
||||
idleVeIdle\ VE_X=685
|
||||
speedsensorsSpeed\ and\ Gear\ Sensors_height=670
|
||||
TrimTablePanel_inj_trimbTbl_egoSensorIndex=1
|
||||
refTable_002_txtX2=4.0
|
||||
refTable_002_txtX1=1.0
|
||||
inj_timing_tblInjector\ Timing_height=383
|
||||
cranktaper_curveeCranking\ Taper\ Curve\ (Events)_width=388
|
||||
coldAdvanceCold\ Advance_height=491
|
||||
tachoTacho\ Output_Y=397
|
||||
egoControlAFR\ /\ EGO\ Control_height=570
|
||||
tachoTacho\ Output_X=766
|
||||
VeAnalyzeConsole.inj_trim1Tbl_selectedDash=Standard
|
||||
accelsettingsAccel\ Enrich\ Settings_height=302
|
||||
userDash1.DashName=Spark
|
||||
outputtest_io_2Output\ Test\ Mode\ -\ I/O\ 2_Y=197
|
||||
outputtest_io_2Output\ Test\ Mode\ -\ I/O\ 2_X=570
|
||||
CommSettingDESKTOP-CDTND29CommDriver.FTDI\ -\ D2XX\ driverBaud\ Rate=115200
|
||||
outputtestOutput\ Test\ Mode\ -\ Inj/Spk_Y=168
|
||||
useCommonTuneViewDir=false
|
||||
outputtestOutput\ Test\ Mode\ -\ Inj/Spk_X=625
|
||||
tcluparamsTorque\ Convertor\ Lockup_height=442
|
||||
battcalibCalibrate\ Battery\ Voltage_Y=240
|
||||
battcalibCalibrate\ Battery\ Voltage_X=489
|
||||
realtimeclockReal\ Time\ Clock_width=388
|
||||
TrimTablePanel_inj_trimgTbl_egoCorChannel=egocor1
|
||||
maxafrAFR\ Safety\ System_height=412
|
||||
outputtest_io_1Output\ Test\ Mode\ -\ I/O_Y=119
|
||||
outputtest_io_1Output\ Test\ Mode\ -\ I/O_X=570
|
||||
userDash0.FileName=Fuel.dash
|
||||
generic_pid_aGeneric\ Closed-Loop\ A_Y=274
|
||||
generic_pid_aGeneric\ Closed-Loop\ A_X=589
|
||||
tachoTacho\ Output_height=286
|
||||
barometerCorrBarometric\ Correction_height=474
|
||||
TrimTablePanel_inj_trim1Tbl_egoCorChannel=egocor1
|
||||
outputtestOutput\ Test\ Mode\ -\ Inj/Spk_height=600
|
||||
can_outpc_bcast_4CAN\ Realtime\ Data\ Broadcasting\ 4_Y=88
|
||||
injspkonoffInj/Spk\ Disabling\ Test\ Mode_width=695
|
||||
can_outpc_bcast_4CAN\ Realtime\ Data\ Broadcasting\ 4_X=429
|
||||
canId=0
|
||||
baseEngine\ and\ Sequential\ Settings_Y=146
|
||||
baseEngine\ and\ Sequential\ Settings_X=544
|
||||
engine_state_settingsEngine\ State\ Settings_height=564
|
||||
TrimTablePanel_inj_trimfTbl_egoCorChannel=egocor2
|
||||
refTable_000_txtTemp3=99.0
|
||||
refTable_000_txtTemp2=30.0
|
||||
refTable_000_txtTemp1=-40.0
|
||||
canegoCAN\ EGO,\ GPS_width=388
|
||||
refTable_001_txtBiasResistor=2490.0
|
||||
MAFtableMAF\ Flow\ Curve_height=705
|
||||
TrimTablePanel_inj_trimfTbl_egoSensorIndex=1
|
||||
veGenerator_txtPkHpMap=100
|
||||
veTable1TblFuel\ VE\ Table\ 1_width=695
|
||||
inj_trimadInjector\ Cyl\ 1-4\ Trims_width=633
|
||||
canvssCAN\ VSS\ and\ gear\ selection_height=520
|
||||
maxafrAFR\ Safety\ System_width=613
|
||||
AEpump_settingsAccel-Pump\ Accel\ Enrichment_Y=32
|
||||
oilpressOil\ Pressure_height=393
|
||||
AEpump_settingsAccel-Pump\ Accel\ Enrichment_X=211
|
||||
MAFtable1_showText=true
|
||||
iacBins_Set\ X\ Axis\ Minimum=-40.0
|
||||
etcElectronic\ Throttle\ Control_Y=114
|
||||
etcElectronic\ Throttle\ Control_X=276
|
||||
can_outpc_bcast_3CAN\ Realtime\ Data\ Broadcasting\ 3_height=552
|
||||
ms3_port_edit_wrap1Programmable\ On/Off\ Outputs\ 1_height=396
|
||||
ecuSettings=CAN_COMMANDS|CELSIUS|INTERNAL_LOG_FIELDS_OFF|OUTMSG_EDITING_OFF|PORT_STATUS_OFF|PW_4X_OFF|
|
||||
pinusagel2I/O\ Pins\ List2\ Showing\ Usage\ -\ only\ works\ when\ online_width=663
|
||||
limitsettingsGauge\ and\ Settings\ Limits_height=446
|
||||
ms3_port_edit_wrap1Programmable\ On/Off\ Outputs\ 1_Y=342
|
||||
ms3_port_edit_wrap1Programmable\ On/Off\ Outputs\ 1_X=682
|
||||
matclt_curveMAT/CLT\ correction_height=367
|
||||
outputtest_io_1Output\ Test\ Mode\ -\ I/O_width=779
|
||||
veGenerator_txtMaxRpm=6000
|
||||
cranktaper_curveeCranking\ Taper\ Curve\ (Events)_Y=180
|
||||
specialSpecial\ Options_width=396
|
||||
cranktaper_curveeCranking\ Taper\ Curve\ (Events)_X=489
|
||||
engine_state_settingsEngine\ State\ Settings_width=530
|
||||
TrimTablePanel_inj_trimgTbl_egoSensorIndex=0
|
||||
realtimeclockReal\ Time\ Clock_height=408
|
||||
gen_pwm_aGeneric\ PWM\ A_height=480
|
||||
matclt_curveMAT/CLT\ correction_Y=188
|
||||
matclt_curveMAT/CLT\ correction_X=481
|
||||
userDash3.DashName=Idle
|
||||
ioboxIO-Box\ Settings_width=637
|
||||
combinedidleIdle\ Control_width=654
|
||||
inj_trimehInjector\ Cyl\ 5-7\ Trims_width=633
|
||||
afrTable1TblAFR\ Table\ 1_Y=172
|
||||
boostBoost\ Control\ Setings_width=713
|
||||
afrTable1TblAFR\ Table\ 1_X=413
|
||||
can_outpc_bcast_3CAN\ Realtime\ Data\ Broadcasting\ 3_Y=88
|
||||
can_outpc_bcast_3CAN\ Realtime\ Data\ Broadcasting\ 3_X=436
|
||||
primingPWPriming\ Pulse_height=491
|
||||
inj_trimilInjector\ Cyl\ 9-12\ Trims_width=633
|
||||
userDash2.FileName=Pressure&Temps.dash
|
||||
ssShaft\ Speed\ Sensors_height=370
|
||||
mafdialogMAF\ Settings_height=374
|
||||
engine_controlEngine\ Control_height=194
|
||||
sensorsGeneric\ Sensor\ Inputs_Y=0
|
||||
sensorsGeneric\ Sensor\ Inputs_X=318
|
||||
inj_timing_tblInjector\ Timing_Y=172
|
||||
inj_timing_tblInjector\ Timing_X=413
|
||||
primingPWPriming\ Pulse_Y=277
|
||||
flash_unlockUn/Lock\ Calibrations_width=388
|
||||
afrTable1TblAFR\ Table\ 1_height=383
|
||||
primingPWPriming\ Pulse_X=597
|
||||
egtEGT\ /\ Thermocouple\ Inputs_width=599
|
||||
pinusagel2I/O\ Pins\ List2\ Showing\ Usage\ -\ only\ works\ when\ online_height=244
|
||||
ignitionTbl1Ignition\ Table\ 1\ (Spark\ Advance)_height=447
|
||||
can_rcvCAN\ receiving_width=1206
|
||||
generalsettings2General\ Settings_width=708
|
||||
outputtest_io_2Output\ Test\ Mode\ -\ I/O\ 2_width=779
|
||||
VeAnalyzeConsole.idleve1Tbl_selectedDash=Standard
|
||||
manifoldTempCorr2MAT\ Air\ Density\ Table_Y=104
|
||||
idleVeIdle\ VE_height=512
|
||||
afrTable1TblAFR\ Table\ 1_width=539
|
||||
manifoldTempCorr2MAT\ Air\ Density\ Table_X=329
|
||||
canparamsCAN\ Parameters_Y=15
|
||||
sparkcalcsSpark\ Calculations\ Summary_Y=0
|
||||
canparamsCAN\ Parameters_X=585
|
||||
sparkcalcsSpark\ Calculations\ Summary_X=265
|
||||
veGenerator_txtPkHpRpm=5000
|
||||
sensorCalCalibrate\ MAP/Baro_height=398
|
||||
tableswTable\ Switch/Dual\ Fuel_Y=0
|
||||
tableswTable\ Switch/Dual\ Fuel_X=592
|
||||
primingPW_Set\ X\ Axis\ Minimum=-40.0
|
||||
limitsettingsGauge\ and\ Settings\ Limits_Y=317
|
||||
limitsettingsGauge\ and\ Settings\ Limits_X=752
|
||||
generic_pid_aGeneric\ Closed-Loop\ A_width=742
|
||||
sensorsGeneric\ Sensor\ Inputs_height=658
|
||||
protocolEnvelope=
|
||||
wueAnalyzer_warmup_curve_Set\ X\ Axis\ Minimum=-40.0
|
||||
boostBoost\ Control\ Setings_Y=223
|
||||
boostBoost\ Control\ Setings_X=603
|
||||
can_outpc_bcast_4CAN\ Realtime\ Data\ Broadcasting\ 4_width=508
|
||||
can_outpc_bcast_2CAN\ Realtime\ Data\ Broadcasting\ 2_Y=88
|
||||
airdenCorr_Set\ X\ Axis\ Minimum=-40.0
|
||||
can_outpc_bcast_2CAN\ Realtime\ Data\ Broadcasting\ 2_X=471
|
||||
CommSettingDESKTOP-CDTND29CommDriver.FTDI\ -\ D2XX\ driverDevice\ Serial\ \#=AI05FJ73
|
||||
outputtest_io_1Output\ Test\ Mode\ -\ I/O_height=649
|
||||
refTable_001_txtResistor3=177.0
|
||||
refTable_001_txtResistor2=2238.0
|
||||
refTable_001_txtResistor1=100700.0
|
||||
sensorCalCalibrate\ MAP/Baro_Y=165
|
||||
sensorCalCalibrate\ MAP/Baro_X=489
|
||||
idleAdvanceIdle\ Advance\ Settings_width=629
|
||||
iactestOutput\ Test\ Mode\ -\ Idle\ Valve_Y=160
|
||||
ac_idleupAir\ Conditioning\ Idle-Up_width=388
|
||||
iactestOutput\ Test\ Mode\ -\ Idle\ Valve_X=525
|
||||
crsettingsCranking\ /\ Startup\ Settings_width=394
|
||||
manifoldTempCorr2MAT\ Air\ Density\ Table_height=536
|
||||
userDash5.DashName=O2 Sensors
|
||||
limitsettingsGauge\ and\ Settings\ Limits_width=416
|
||||
canbroadcastCAN\ Broadcasting_Y=125
|
||||
canbroadcastCAN\ Broadcasting_X=489
|
||||
cranktaper_curveeCranking\ Taper\ Curve\ (Events)_height=367
|
||||
TrimTablePanel_inj_trimeTbl_lambdaChannel=afr1
|
||||
coldAdvance_Set\ X\ Axis\ Minimum=-40.0
|
||||
userDash4.FileName=MAF.dash
|
||||
oilpressOil\ Pressure_Y=343
|
||||
oilpressOil\ Pressure_X=564
|
||||
realtimeclockReal\ Time\ Clock_Y=160
|
||||
realtimeclockReal\ Time\ Clock_X=489
|
||||
tableswTable\ Switch/Dual\ Fuel_height=738
|
||||
canbroadcastCAN\ Broadcasting_width=388
|
||||
TrimTablePanel_inj_trimcTbl_egoSensorIndex=0
|
||||
flash_unlockUn/Lock\ Calibrations_height=210
|
||||
TrimTablePanel_inj_trimdTbl_lambdaChannel=afr2
|
||||
injsettingsInjector\ Dead-Time_Y=66
|
||||
injsettingsInjector\ Dead-Time_X=125
|
||||
veGenerator_txtPkTq=200
|
||||
maxafrAFR\ Safety\ System_Y=334
|
||||
maxafrAFR\ Safety\ System_X=653
|
||||
mafdialogMAF\ Settings_Y=128
|
||||
mafdialogMAF\ Settings_X=766
|
||||
ecuConfigFile=mainController.ini
|
||||
dashBoardFile=\\dashboard\\\\dashboard.dash
|
||||
pwmidle_crank_dutyorsteps_dutycurve_Set\ X\ Axis\ Minimum=-40.0
|
||||
barometerCorrBarometric\ Correction_Y=127
|
||||
ignitionTbl1Ignition\ Table\ 1\ (Spark\ Advance)_Y=140
|
||||
barometerCorrBarometric\ Correction_X=344
|
||||
dwellSettingsDwell\ Battery\ Correction_width=388
|
||||
ignitionTbl1Ignition\ Table\ 1\ (Spark\ Advance)_X=335
|
||||
can_outpc_bcast_3CAN\ Realtime\ Data\ Broadcasting\ 3_width=494
|
||||
injseqtestInjector\ Sequential\ Testing_Y=402
|
||||
injseqtestInjector\ Sequential\ Testing_X=766
|
||||
454
projectCfg/project.properties.bkup
Normal file
454
projectCfg/project.properties.bkup
Normal file
@@ -0,0 +1,454 @@
|
||||
#Project Attributes.
|
||||
#TunerStudio by EFI Analytics, Inc
|
||||
#Last Saved on: Fri Jan 27 06:50:25 AEDT 2023
|
||||
#Fri Jan 27 06:50:25 AEDT 2023
|
||||
TrimTablePanel_inj_trimdTbl_egoSensorIndex=1
|
||||
tcluparamsTorque\ Convertor\ Lockup_width=388
|
||||
TrimTablePanel_inj_trimcTbl_lambdaChannel=afr1
|
||||
Triggers.ActiveTriggers=
|
||||
fuelpumpFuel\ Pump\ and\ Pressure\ Control_Y=51
|
||||
fuelpumpFuel\ Pump\ and\ Pressure\ Control_X=606
|
||||
generalsettings2General\ Settings_height=713
|
||||
MAFtableMAF\ Flow\ Curve_Y=11
|
||||
MAFtableMAF\ Flow\ Curve_X=365
|
||||
vvtparamsVVT\ Settings_height=801
|
||||
ignitionTbl1Ignition\ Table\ 1\ (Spark\ Advance)_width=695
|
||||
idlebinsIdle\ Warmup\ Duty/Steps_height=491
|
||||
veGenerator_txtPkTqMap=100
|
||||
fuelpumpFuel\ Pump\ and\ Pressure\ Control_width=685
|
||||
TrimTablePanel_inj_trimeTbl_egoCorChannel=egocor1
|
||||
veGenerator_cBoost=Naturally Aspirated
|
||||
inj_trimehInjector\ Cyl\ 5-7\ Trims_Y=76
|
||||
inj_trimehInjector\ Cyl\ 5-7\ Trims_X=366
|
||||
tcluparamsTorque\ Convertor\ Lockup_Y=319
|
||||
tcluparamsTorque\ Convertor\ Lockup_X=766
|
||||
egoControlAFR\ /\ EGO\ Control_Y=81
|
||||
egoControlAFR\ /\ EGO\ Control_X=391
|
||||
userDash0.DashName=Fuel
|
||||
tuneFileDir=C\:\\Users\\dell\\Documents\\TunerStudioProjects\\TrimbornHotrod
|
||||
specialSpecial\ Options_Y=363
|
||||
outputtest_io_2Output\ Test\ Mode\ -\ I/O\ 2_height=685
|
||||
specialSpecial\ Options_X=762
|
||||
dwellSettingsDwell\ Battery\ Correction_Y=180
|
||||
dwellSettingsDwell\ Battery\ Correction_X=489
|
||||
idle_voltage_comp_curvePWM\ Idle\ Voltage\ Compensation_width=388
|
||||
engine_controlEngine\ Control_width=388
|
||||
TrimTablePanel_inj_trimdTbl_egoCorChannel=egocor2
|
||||
egtEGT\ /\ Thermocouple\ Inputs_Y=230
|
||||
boostBoost\ Control\ Setings_height=633
|
||||
can_outpc_bcastCAN\ Realtime\ Data\ Broadcasting_Y=72
|
||||
egtEGT\ /\ Thermocouple\ Inputs_X=660
|
||||
can_outpc_bcastCAN\ Realtime\ Data\ Broadcasting_X=621
|
||||
can_outpc_bcast_2CAN\ Realtime\ Data\ Broadcasting\ 2_width=424
|
||||
idleVeIdle\ VE_width=549
|
||||
pinusagecanExpansion\ I/O\ Pins\ List/Usage\ -\ only\ works\ when\ online_Y=208
|
||||
pinusagecanExpansion\ I/O\ Pins\ List/Usage\ -\ only\ works\ when\ online_X=538
|
||||
TrimTablePanel_inj_trimhTbl_egoSensorIndex=1
|
||||
refTable_000_chkCelsius=true
|
||||
pinusageI/O\ Pins\ List\ Showing\ Usage\ -\ only\ works\ when\ online_height=500
|
||||
iactestOutput\ Test\ Mode\ -\ Idle\ Valve_height=472
|
||||
sensorsGeneric\ Sensor\ Inputs_width=957
|
||||
oilpressOil\ Pressure_width=792
|
||||
wueAfrTargetOffsetCurve_Set\ X\ Axis\ Minimum=-40.0
|
||||
engine_state_settingsEngine\ State\ Settings_Y=107
|
||||
refTable_000_txtBiasResistor=2490.0
|
||||
engine_state_settingsEngine\ State\ Settings_X=665
|
||||
iopinlistFeature\ List\ Showing\ I/O\ pins_width=908
|
||||
projectName=TrimbornHotrod
|
||||
selectedComDriver=Multi Interface MegaSquirt Driver
|
||||
inj_trimadInjector\ Cyl\ 1-4\ Trims_Y=76
|
||||
inj_trimadInjector\ Cyl\ 1-4\ Trims_X=366
|
||||
canegoCAN\ EGO,\ GPS_Y=282
|
||||
canegoCAN\ EGO,\ GPS_X=766
|
||||
TrimTablePanel_inj_trimcTbl_egoCorChannel=egocor1
|
||||
primingPWPriming\ Pulse_width=726
|
||||
overrunOver-Run\ Fuel\ Cut_Y=61
|
||||
veGenerator_txtDisplacementCid=3
|
||||
overrunOver-Run\ Fuel\ Cut_X=476
|
||||
knockSettingsKnock\ Sensor\ Settings_width=1092
|
||||
combinedCLidleClosed-Loop\ Idle\ Settings_height=574
|
||||
gen_pwm_aGeneric\ PWM\ A_Y=300
|
||||
gen_pwm_aGeneric\ PWM\ A_X=637
|
||||
coldAdvanceCold\ Advance_Y=118
|
||||
coldAdvanceCold\ Advance_X=320
|
||||
matclt_curveMAT/CLT\ correction_width=388
|
||||
idlebinsIdle\ Warmup\ Duty/Steps_width=732
|
||||
dashbcastDash\ Broadcasting_Y=409
|
||||
dashbcastDash\ Broadcasting_X=766
|
||||
ac_idleupAir\ Conditioning\ Idle-Up_Y=150
|
||||
accelsettingsAccel\ Enrich\ Settings_Y=213
|
||||
ac_idleupAir\ Conditioning\ Idle-Up_X=766
|
||||
accelsettingsAccel\ Enrich\ Settings_X=475
|
||||
TrimTablePanel_inj_trim1Tbl_egoSensorIndex=0
|
||||
refTable_000_txtResistor3=177.0
|
||||
idleAdvanceIdle\ Advance\ Settings_Y=359
|
||||
refTable_000_txtResistor2=2238.0
|
||||
veGenerator_txtPkTqRpm=3000
|
||||
injsettingsInjector\ Dead-Time_width=1116
|
||||
idleAdvanceIdle\ Advance\ Settings_X=645
|
||||
refTable_000_txtResistor1=100700.0
|
||||
TrimTablePanel_inj_trimhTbl_lambdaChannel=afr2
|
||||
injseqtestInjector\ Sequential\ Testing_width=388
|
||||
veTable1TblFuel\ VE\ Table\ 1_Y=140
|
||||
veTable1TblFuel\ VE\ Table\ 1_X=335
|
||||
userDash5.FileName=O2 Sensors.dash
|
||||
sensorCalCalibrate\ MAP/Baro_width=388
|
||||
inj_trimehInjector\ Cyl\ 5-7\ Trims_height=576
|
||||
can_outpc_bcastCAN\ Realtime\ Data\ Broadcasting_width=465
|
||||
userDash2.DashName=Pressure&Temps
|
||||
TrimTablePanel_inj_trim2Tbl_lambdaChannel=afr1
|
||||
battcalibCalibrate\ Battery\ Voltage_height=248
|
||||
VeAnalyzeConsole.veTable1Tbl_verticalSplitPos=524
|
||||
can_outpc_bcast_4CAN\ Realtime\ Data\ Broadcasting\ 4_height=552
|
||||
inj_trimilInjector\ Cyl\ 9-12\ Trims_height=576
|
||||
map_sample_dialogMAP\ Sample\ Settings_height=623
|
||||
canvssCAN\ VSS\ and\ gear\ selection_width=388
|
||||
inj_trimilInjector\ Cyl\ 9-12\ Trims_Y=76
|
||||
commPort=COM1
|
||||
inj_trimilInjector\ Cyl\ 9-12\ Trims_X=366
|
||||
VeAnalyzeConsole.idleve1Tbl_verticalSplitPos=524
|
||||
knockSettingsKnock\ Sensor\ Settings_Y=0
|
||||
knockSettingsKnock\ Sensor\ Settings_X=137
|
||||
idlebinsIdle\ Warmup\ Duty/Steps_Y=118
|
||||
inj_trimadInjector\ Cyl\ 1-4\ Trims_height=576
|
||||
map_sample_dialogMAP\ Sample\ Settings_width=643
|
||||
idlebinsIdle\ Warmup\ Duty/Steps_X=317
|
||||
coldAdvanceCold\ Advance_width=726
|
||||
userDash1.FileName=Spark.dash
|
||||
injspkonoffInj/Spk\ Disabling\ Test\ Mode_height=401
|
||||
pwmidle_crank_dutyorsteps_curveIdle\ Cranking\ Duty/Steps_height=530
|
||||
outputtestOutput\ Test\ Mode\ -\ Inj/Spk_width=670
|
||||
speedsensorsSpeed\ and\ Gear\ Sensors_width=935
|
||||
useCommonDashboardDir=false
|
||||
pinusageI/O\ Pins\ List\ Showing\ Usage\ -\ only\ works\ when\ online_Y=33
|
||||
pinusageI/O\ Pins\ List\ Showing\ Usage\ -\ only\ works\ when\ online_X=174
|
||||
ssShaft\ Speed\ Sensors_Y=355
|
||||
ssShaft\ Speed\ Sensors_X=766
|
||||
tableswTable\ Switch/Dual\ Fuel_width=735
|
||||
combinedignitionIgnition\ Options\ /\ Wheel\ Decoder_Y=11
|
||||
combinedignitionIgnition\ Options\ /\ Wheel\ Decoder_X=510
|
||||
specialSpecial\ Options_height=354
|
||||
gen_pwm_aGeneric\ PWM\ A_width=645
|
||||
ssShaft\ Speed\ Sensors_width=388
|
||||
refTable_001_txtTemp3=99.0
|
||||
fuelpumpFuel\ Pump\ and\ Pressure\ Control_height=640
|
||||
refTable_001_txtTemp2=30.0
|
||||
idle_voltage_comp_curvePWM\ Idle\ Voltage\ Compensation_Y=180
|
||||
refTable_001_txtTemp1=-40.0
|
||||
idle_voltage_comp_curvePWM\ Idle\ Voltage\ Compensation_X=489
|
||||
alternatorAlternator\ Control_height=712
|
||||
pwmidle_crank_dutyorsteps_stepscurve_Set\ X\ Axis\ Minimum=-40.0
|
||||
pwmidle_crank_dutyorsteps_curveIdle\ Cranking\ Duty/Steps_width=831
|
||||
canvssCAN\ VSS\ and\ gear\ selection_Y=280
|
||||
mafdialogMAF\ Settings_width=388
|
||||
canvssCAN\ VSS\ and\ gear\ selection_X=766
|
||||
baseEngine\ and\ Sequential\ Settings_width=627
|
||||
sparkcalcsSpark\ Calculations\ Summary_width=835
|
||||
pinusageI/O\ Pins\ List\ Showing\ Usage\ -\ only\ works\ when\ online_width=939
|
||||
baudRate=115200
|
||||
ioboxIO-Box\ Settings_Y=101
|
||||
ioboxIO-Box\ Settings_X=641
|
||||
fan_controlFan\ Control_height=574
|
||||
TrimTablePanel_inj_trimhTbl_egoCorChannel=egocor2
|
||||
speedsensorsSpeed\ and\ Gear\ Sensors_Y=27
|
||||
speedsensorsSpeed\ and\ Gear\ Sensors_X=343
|
||||
combinedCLidleClosed-Loop\ Idle\ Settings_Y=253
|
||||
pinusagecanExpansion\ I/O\ Pins\ List/Usage\ -\ only\ works\ when\ online_width=844
|
||||
combinedCLidleClosed-Loop\ Idle\ Settings_X=611
|
||||
ms3_port_edit_wrap1Programmable\ On/Off\ Outputs\ 1_width=555
|
||||
iactestOutput\ Test\ Mode\ -\ Idle\ Valve_width=613
|
||||
combinedignitionIgnition\ Options\ /\ Wheel\ Decoder_height=704
|
||||
inj_timing_tblInjector\ Timing_width=539
|
||||
VeAnalyzeConsole.veTable1Tbl_selectedDash=Standard
|
||||
TrimTablePanel_inj_trim2Tbl_egoCorChannel=egocor1
|
||||
AEpump_settingsAccel-Pump\ Accel\ Enrichment_height=664
|
||||
userDash4.DashName=MAF
|
||||
CommSettingDESKTOP-CDTND29CommDriver.controllerInterfaceId=FTDI - D2XX driver
|
||||
fan_controlFan\ Control_width=388
|
||||
pinusagecanExpansion\ I/O\ Pins\ List/Usage\ -\ only\ works\ when\ online_height=664
|
||||
iopinlistFeature\ List\ Showing\ I/O\ pins_Y=0
|
||||
iopinlistFeature\ List\ Showing\ I/O\ pins_X=458
|
||||
canbroadcastCAN\ Broadcasting_height=478
|
||||
TrimTablePanel_inj_trimbTbl_lambdaChannel=afr2
|
||||
TrimTablePanel_inj_trimeTbl_egoSensorIndex=0
|
||||
userDash3.FileName=Idle.dash
|
||||
fan_controlFan\ Control_Y=83
|
||||
canparamsCAN\ Parameters_width=685
|
||||
fan_controlFan\ Control_X=677
|
||||
crsettingsCranking\ /\ Startup\ Settings_Y=205
|
||||
crsettingsCranking\ /\ Startup\ Settings_X=706
|
||||
pinusagel2I/O\ Pins\ List2\ Showing\ Usage\ -\ only\ works\ when\ online_Y=418
|
||||
pinusagel2I/O\ Pins\ List2\ Showing\ Usage\ -\ only\ works\ when\ online_X=628
|
||||
vvtparamsVVT\ Settings_Y=139
|
||||
WueAnalyzeConsole.wueAnalyzer_warmup_curve_selectedDash=Standard
|
||||
vvtparamsVVT\ Settings_X=486
|
||||
can_rcvCAN\ receiving_height=612
|
||||
refTable_001_chkFahrenheit=false
|
||||
veGenerator_txtIdleMap=35
|
||||
pwmidle_crank_dutyorsteps_curveIdle\ Cranking\ Duty/Steps_Y=132
|
||||
tachoTacho\ Output_width=388
|
||||
pwmidle_crank_dutyorsteps_curveIdle\ Cranking\ Duty/Steps_X=461
|
||||
barometerCorrBarometric\ Correction_width=678
|
||||
TrimTablePanel_inj_trimaTbl_lambdaChannel=afr1
|
||||
alternatorAlternator\ Control_Y=184
|
||||
alternatorAlternator\ Control_X=569
|
||||
combinedCLidleClosed-Loop\ Idle\ Settings_width=698
|
||||
idle_voltage_comp_curvePWM\ Idle\ Voltage\ Compensation_height=367
|
||||
veTable1TblFuel\ VE\ Table\ 1_height=447
|
||||
projectDescription=
|
||||
injseqtestInjector\ Sequential\ Testing_height=276
|
||||
etcElectronic\ Throttle\ Control_width=814
|
||||
VeAnalyzeConsole.inj_trimaTbl_selectedDash=Standard
|
||||
CommSettingCom\ Port=COM1
|
||||
combinedidleIdle\ Control_height=419
|
||||
baseEngine\ and\ Sequential\ Settings_height=488
|
||||
egtEGT\ /\ Thermocouple\ Inputs_height=538
|
||||
refTable_000_chkFahrenheit=false
|
||||
CommSettingBaud\ Rate=115200
|
||||
battcalibCalibrate\ Battery\ Voltage_width=388
|
||||
alternatorAlternator\ Control_width=782
|
||||
veGenerator_txtPkHp=250
|
||||
etcElectronic\ Throttle\ Control_height=500
|
||||
accelsettingsAccel\ Enrich\ Settings_width=416
|
||||
canegoCAN\ EGO,\ GPS_height=486
|
||||
combinedignitionIgnition\ Options\ /\ Wheel\ Decoder_width=765
|
||||
logFileDir=C\:\\Users\\dell\\Documents\\TunerStudioProjects\\TrimbornHotrod\\DataLogs
|
||||
veGenerator_txtDisplacementCc=55
|
||||
ipwBins_Set\ X\ Axis\ Minimum=-40.0
|
||||
combinedidleIdle\ Control_Y=330
|
||||
combinedidleIdle\ Control_X=633
|
||||
TrimTablePanel_inj_trimbTbl_egoCorChannel=egocor2
|
||||
CommSettingMSCommDriver.FTDI\ -\ D2XX\ driverDevice\ Serial\ \#=AI05FJ73
|
||||
overrunOver-Run\ Fuel\ Cut_width=413
|
||||
injsettingsInjector\ Dead-Time_height=595
|
||||
crsettingsCranking\ /\ Startup\ Settings_height=456
|
||||
injspkonoffInj/Spk\ Disabling\ Test\ Mode_Y=339
|
||||
injspkonoffInj/Spk\ Disabling\ Test\ Mode_X=612
|
||||
vvtparamsVVT\ Settings_width=947
|
||||
generalsettings2General\ Settings_Y=23
|
||||
generalsettings2General\ Settings_X=595
|
||||
overrunOver-Run\ Fuel\ Cut_height=606
|
||||
refTable_001_chkCelsius=true
|
||||
dashbcastDash\ Broadcasting_width=388
|
||||
TrimTablePanel_inj_trim2Tbl_egoSensorIndex=0
|
||||
can_outpc_bcastCAN\ Realtime\ Data\ Broadcasting_height=598
|
||||
MAFtableMAF\ Flow\ Curve_width=801
|
||||
TrimTablePanel_inj_trimgTbl_lambdaChannel=afr1
|
||||
can_rcvCAN\ receiving_Y=58
|
||||
ioboxIO-Box\ Settings_height=667
|
||||
can_rcvCAN\ receiving_X=80
|
||||
TrimTablePanel_inj_trimaTbl_egoCorChannel=egocor1
|
||||
veGenerator_txtIdleRpm=700
|
||||
idleAdvanceIdle\ Advance\ Settings_height=361
|
||||
ac_idleupAir\ Conditioning\ Idle-Up_height=618
|
||||
CommSettingMSCommDriver.FTDI\ -\ D2XX\ driverBaud\ Rate=115200
|
||||
manifoldTempCorr2MAT\ Air\ Density\ Table_width=691
|
||||
can_outpc_bcast_2CAN\ Realtime\ Data\ Broadcasting\ 2_height=552
|
||||
generic_pid_aGeneric\ Closed-Loop\ A_height=532
|
||||
firmwareDescription=MS3 1.5.1 release 20171006 16\:30BST (c) JSM/KC ********
|
||||
canparamsCAN\ Parameters_height=645
|
||||
knockSettingsKnock\ Sensor\ Settings_height=738
|
||||
dwellSettingsDwell\ Battery\ Correction_height=367
|
||||
TrimTablePanel_inj_trim1Tbl_lambdaChannel=afr1
|
||||
egoControlAFR\ /\ EGO\ Control_width=868
|
||||
AEpump_settingsAccel-Pump\ Accel\ Enrichment_width=943
|
||||
iopinlistFeature\ List\ Showing\ I/O\ pins_height=738
|
||||
TrimTablePanel_inj_trimaTbl_egoSensorIndex=0
|
||||
sparkcalcsSpark\ Calculations\ Summary_height=738
|
||||
dwellSettings_showText=true
|
||||
dashbcastDash\ Broadcasting_height=262
|
||||
TrimTablePanel_inj_trimfTbl_lambdaChannel=afr2
|
||||
refTable_002_txtY2=18.7
|
||||
refTable_002_txtY1=9.7
|
||||
CommSettingMSCommDriver.controllerInterfaceId=FTDI - D2XX driver
|
||||
engine_controlEngine\ Control_Y=443
|
||||
engine_controlEngine\ Control_X=766
|
||||
map_sample_dialogMAP\ Sample\ Settings_Y=52
|
||||
map_sample_dialogMAP\ Sample\ Settings_X=361
|
||||
flash_unlockUn/Lock\ Calibrations_Y=259
|
||||
idleVeIdle\ VE_Y=284
|
||||
flash_unlockUn/Lock\ Calibrations_X=489
|
||||
idleVeIdle\ VE_X=685
|
||||
speedsensorsSpeed\ and\ Gear\ Sensors_height=670
|
||||
TrimTablePanel_inj_trimbTbl_egoSensorIndex=1
|
||||
refTable_002_txtX2=4.0
|
||||
refTable_002_txtX1=1.0
|
||||
inj_timing_tblInjector\ Timing_height=383
|
||||
cranktaper_curveeCranking\ Taper\ Curve\ (Events)_width=388
|
||||
coldAdvanceCold\ Advance_height=491
|
||||
tachoTacho\ Output_Y=397
|
||||
egoControlAFR\ /\ EGO\ Control_height=570
|
||||
tachoTacho\ Output_X=766
|
||||
VeAnalyzeConsole.inj_trim1Tbl_selectedDash=Standard
|
||||
accelsettingsAccel\ Enrich\ Settings_height=302
|
||||
userDash1.DashName=Spark
|
||||
outputtest_io_2Output\ Test\ Mode\ -\ I/O\ 2_Y=197
|
||||
outputtest_io_2Output\ Test\ Mode\ -\ I/O\ 2_X=570
|
||||
CommSettingDESKTOP-CDTND29CommDriver.FTDI\ -\ D2XX\ driverBaud\ Rate=115200
|
||||
outputtestOutput\ Test\ Mode\ -\ Inj/Spk_Y=168
|
||||
useCommonTuneViewDir=false
|
||||
outputtestOutput\ Test\ Mode\ -\ Inj/Spk_X=625
|
||||
tcluparamsTorque\ Convertor\ Lockup_height=442
|
||||
battcalibCalibrate\ Battery\ Voltage_Y=240
|
||||
realtimeclockReal\ Time\ Clock_width=388
|
||||
battcalibCalibrate\ Battery\ Voltage_X=489
|
||||
TrimTablePanel_inj_trimgTbl_egoCorChannel=egocor1
|
||||
outputtest_io_1Output\ Test\ Mode\ -\ I/O_Y=119
|
||||
maxafrAFR\ Safety\ System_height=412
|
||||
outputtest_io_1Output\ Test\ Mode\ -\ I/O_X=570
|
||||
userDash0.FileName=Fuel.dash
|
||||
generic_pid_aGeneric\ Closed-Loop\ A_Y=274
|
||||
generic_pid_aGeneric\ Closed-Loop\ A_X=589
|
||||
tachoTacho\ Output_height=286
|
||||
barometerCorrBarometric\ Correction_height=474
|
||||
TrimTablePanel_inj_trim1Tbl_egoCorChannel=egocor1
|
||||
outputtestOutput\ Test\ Mode\ -\ Inj/Spk_height=600
|
||||
injspkonoffInj/Spk\ Disabling\ Test\ Mode_width=695
|
||||
can_outpc_bcast_4CAN\ Realtime\ Data\ Broadcasting\ 4_Y=88
|
||||
can_outpc_bcast_4CAN\ Realtime\ Data\ Broadcasting\ 4_X=429
|
||||
canId=0
|
||||
baseEngine\ and\ Sequential\ Settings_Y=146
|
||||
baseEngine\ and\ Sequential\ Settings_X=544
|
||||
engine_state_settingsEngine\ State\ Settings_height=564
|
||||
refTable_000_txtTemp3=99.0
|
||||
TrimTablePanel_inj_trimfTbl_egoCorChannel=egocor2
|
||||
refTable_000_txtTemp2=30.0
|
||||
refTable_000_txtTemp1=-40.0
|
||||
refTable_001_txtBiasResistor=2490.0
|
||||
canegoCAN\ EGO,\ GPS_width=388
|
||||
MAFtableMAF\ Flow\ Curve_height=705
|
||||
TrimTablePanel_inj_trimfTbl_egoSensorIndex=1
|
||||
veTable1TblFuel\ VE\ Table\ 1_width=695
|
||||
veGenerator_txtPkHpMap=100
|
||||
canvssCAN\ VSS\ and\ gear\ selection_height=520
|
||||
inj_trimadInjector\ Cyl\ 1-4\ Trims_width=633
|
||||
maxafrAFR\ Safety\ System_width=613
|
||||
oilpressOil\ Pressure_height=393
|
||||
AEpump_settingsAccel-Pump\ Accel\ Enrichment_Y=32
|
||||
MAFtable1_showText=true
|
||||
AEpump_settingsAccel-Pump\ Accel\ Enrichment_X=211
|
||||
iacBins_Set\ X\ Axis\ Minimum=-40.0
|
||||
etcElectronic\ Throttle\ Control_Y=114
|
||||
ms3_port_edit_wrap1Programmable\ On/Off\ Outputs\ 1_height=396
|
||||
can_outpc_bcast_3CAN\ Realtime\ Data\ Broadcasting\ 3_height=552
|
||||
etcElectronic\ Throttle\ Control_X=276
|
||||
pinusagel2I/O\ Pins\ List2\ Showing\ Usage\ -\ only\ works\ when\ online_width=663
|
||||
ecuSettings=CAN_COMMANDS|CELSIUS|INTERNAL_LOG_FIELDS_OFF|OUTMSG_EDITING_OFF|PORT_STATUS_OFF|PW_4X_OFF|
|
||||
limitsettingsGauge\ and\ Settings\ Limits_height=446
|
||||
ms3_port_edit_wrap1Programmable\ On/Off\ Outputs\ 1_Y=342
|
||||
matclt_curveMAT/CLT\ correction_height=367
|
||||
ms3_port_edit_wrap1Programmable\ On/Off\ Outputs\ 1_X=682
|
||||
outputtest_io_1Output\ Test\ Mode\ -\ I/O_width=779
|
||||
veGenerator_txtMaxRpm=6000
|
||||
specialSpecial\ Options_width=396
|
||||
cranktaper_curveeCranking\ Taper\ Curve\ (Events)_Y=180
|
||||
engine_state_settingsEngine\ State\ Settings_width=530
|
||||
cranktaper_curveeCranking\ Taper\ Curve\ (Events)_X=489
|
||||
TrimTablePanel_inj_trimgTbl_egoSensorIndex=0
|
||||
realtimeclockReal\ Time\ Clock_height=408
|
||||
gen_pwm_aGeneric\ PWM\ A_height=480
|
||||
matclt_curveMAT/CLT\ correction_Y=188
|
||||
matclt_curveMAT/CLT\ correction_X=481
|
||||
userDash3.DashName=Idle
|
||||
ioboxIO-Box\ Settings_width=637
|
||||
combinedidleIdle\ Control_width=654
|
||||
afrTable1TblAFR\ Table\ 1_Y=172
|
||||
inj_trimehInjector\ Cyl\ 5-7\ Trims_width=633
|
||||
afrTable1TblAFR\ Table\ 1_X=413
|
||||
boostBoost\ Control\ Setings_width=713
|
||||
can_outpc_bcast_3CAN\ Realtime\ Data\ Broadcasting\ 3_Y=88
|
||||
primingPWPriming\ Pulse_height=491
|
||||
can_outpc_bcast_3CAN\ Realtime\ Data\ Broadcasting\ 3_X=436
|
||||
inj_trimilInjector\ Cyl\ 9-12\ Trims_width=633
|
||||
userDash2.FileName=Pressure&Temps.dash
|
||||
ssShaft\ Speed\ Sensors_height=370
|
||||
mafdialogMAF\ Settings_height=374
|
||||
engine_controlEngine\ Control_height=194
|
||||
sensorsGeneric\ Sensor\ Inputs_Y=0
|
||||
sensorsGeneric\ Sensor\ Inputs_X=318
|
||||
inj_timing_tblInjector\ Timing_Y=172
|
||||
inj_timing_tblInjector\ Timing_X=413
|
||||
flash_unlockUn/Lock\ Calibrations_width=388
|
||||
primingPWPriming\ Pulse_Y=277
|
||||
primingPWPriming\ Pulse_X=597
|
||||
afrTable1TblAFR\ Table\ 1_height=383
|
||||
egtEGT\ /\ Thermocouple\ Inputs_width=599
|
||||
pinusagel2I/O\ Pins\ List2\ Showing\ Usage\ -\ only\ works\ when\ online_height=244
|
||||
ignitionTbl1Ignition\ Table\ 1\ (Spark\ Advance)_height=447
|
||||
generalsettings2General\ Settings_width=708
|
||||
can_rcvCAN\ receiving_width=1206
|
||||
outputtest_io_2Output\ Test\ Mode\ -\ I/O\ 2_width=779
|
||||
VeAnalyzeConsole.idleve1Tbl_selectedDash=Standard
|
||||
manifoldTempCorr2MAT\ Air\ Density\ Table_Y=104
|
||||
manifoldTempCorr2MAT\ Air\ Density\ Table_X=329
|
||||
afrTable1TblAFR\ Table\ 1_width=539
|
||||
idleVeIdle\ VE_height=512
|
||||
sparkcalcsSpark\ Calculations\ Summary_Y=0
|
||||
canparamsCAN\ Parameters_Y=15
|
||||
sparkcalcsSpark\ Calculations\ Summary_X=265
|
||||
canparamsCAN\ Parameters_X=585
|
||||
sensorCalCalibrate\ MAP/Baro_height=398
|
||||
veGenerator_txtPkHpRpm=5000
|
||||
tableswTable\ Switch/Dual\ Fuel_Y=0
|
||||
tableswTable\ Switch/Dual\ Fuel_X=592
|
||||
primingPW_Set\ X\ Axis\ Minimum=-40.0
|
||||
limitsettingsGauge\ and\ Settings\ Limits_Y=317
|
||||
limitsettingsGauge\ and\ Settings\ Limits_X=752
|
||||
generic_pid_aGeneric\ Closed-Loop\ A_width=742
|
||||
sensorsGeneric\ Sensor\ Inputs_height=658
|
||||
protocolEnvelope=
|
||||
wueAnalyzer_warmup_curve_Set\ X\ Axis\ Minimum=-40.0
|
||||
boostBoost\ Control\ Setings_Y=223
|
||||
boostBoost\ Control\ Setings_X=603
|
||||
can_outpc_bcast_4CAN\ Realtime\ Data\ Broadcasting\ 4_width=508
|
||||
airdenCorr_Set\ X\ Axis\ Minimum=-40.0
|
||||
can_outpc_bcast_2CAN\ Realtime\ Data\ Broadcasting\ 2_Y=88
|
||||
CommSettingDESKTOP-CDTND29CommDriver.FTDI\ -\ D2XX\ driverDevice\ Serial\ \#=AI05FJ73
|
||||
can_outpc_bcast_2CAN\ Realtime\ Data\ Broadcasting\ 2_X=471
|
||||
outputtest_io_1Output\ Test\ Mode\ -\ I/O_height=649
|
||||
refTable_001_txtResistor3=177.0
|
||||
refTable_001_txtResistor2=2238.0
|
||||
sensorCalCalibrate\ MAP/Baro_Y=165
|
||||
refTable_001_txtResistor1=100700.0
|
||||
sensorCalCalibrate\ MAP/Baro_X=489
|
||||
idleAdvanceIdle\ Advance\ Settings_width=629
|
||||
iactestOutput\ Test\ Mode\ -\ Idle\ Valve_Y=160
|
||||
iactestOutput\ Test\ Mode\ -\ Idle\ Valve_X=525
|
||||
ac_idleupAir\ Conditioning\ Idle-Up_width=388
|
||||
manifoldTempCorr2MAT\ Air\ Density\ Table_height=536
|
||||
crsettingsCranking\ /\ Startup\ Settings_width=394
|
||||
userDash5.DashName=O2 Sensors
|
||||
limitsettingsGauge\ and\ Settings\ Limits_width=416
|
||||
canbroadcastCAN\ Broadcasting_Y=125
|
||||
canbroadcastCAN\ Broadcasting_X=489
|
||||
cranktaper_curveeCranking\ Taper\ Curve\ (Events)_height=367
|
||||
TrimTablePanel_inj_trimeTbl_lambdaChannel=afr1
|
||||
coldAdvance_Set\ X\ Axis\ Minimum=-40.0
|
||||
userDash4.FileName=MAF.dash
|
||||
oilpressOil\ Pressure_Y=343
|
||||
oilpressOil\ Pressure_X=564
|
||||
realtimeclockReal\ Time\ Clock_Y=160
|
||||
tableswTable\ Switch/Dual\ Fuel_height=738
|
||||
realtimeclockReal\ Time\ Clock_X=489
|
||||
canbroadcastCAN\ Broadcasting_width=388
|
||||
TrimTablePanel_inj_trimcTbl_egoSensorIndex=0
|
||||
flash_unlockUn/Lock\ Calibrations_height=210
|
||||
TrimTablePanel_inj_trimdTbl_lambdaChannel=afr2
|
||||
injsettingsInjector\ Dead-Time_Y=66
|
||||
injsettingsInjector\ Dead-Time_X=125
|
||||
maxafrAFR\ Safety\ System_Y=334
|
||||
veGenerator_txtPkTq=200
|
||||
maxafrAFR\ Safety\ System_X=653
|
||||
mafdialogMAF\ Settings_Y=128
|
||||
mafdialogMAF\ Settings_X=766
|
||||
dashBoardFile=\\dashboard\\\\dashboard.dash
|
||||
ecuConfigFile=mainController.ini
|
||||
barometerCorrBarometric\ Correction_Y=127
|
||||
pwmidle_crank_dutyorsteps_dutycurve_Set\ X\ Axis\ Minimum=-40.0
|
||||
dwellSettingsDwell\ Battery\ Correction_width=388
|
||||
barometerCorrBarometric\ Correction_X=344
|
||||
ignitionTbl1Ignition\ Table\ 1\ (Spark\ Advance)_Y=140
|
||||
ignitionTbl1Ignition\ Table\ 1\ (Spark\ Advance)_X=335
|
||||
can_outpc_bcast_3CAN\ Realtime\ Data\ Broadcasting\ 3_width=494
|
||||
injseqtestInjector\ Sequential\ Testing_Y=402
|
||||
injseqtestInjector\ Sequential\ Testing_X=766
|
||||
15
projectCfg/vehicle.properties
Normal file
15
projectCfg/vehicle.properties
Normal file
@@ -0,0 +1,15 @@
|
||||
#Vehicles Attributes.
|
||||
#TunerStudio by Philip Tobin
|
||||
#Tue Jan 10 20:51:26 AEDT 2023
|
||||
injectorSize=308
|
||||
converterStall=
|
||||
firstGearRatio=
|
||||
fourthGearRatio=
|
||||
finalDriveRatio=
|
||||
transmissionType=Manual
|
||||
fifthGearRatio=
|
||||
weight=
|
||||
thirdGearRatio=
|
||||
sixthGearRatio=
|
||||
secondGearRatio=
|
||||
engineDisplacement=5300
|
||||
Reference in New Issue
Block a user