i rewrote some code to add a boost gauge and vaccum gauge to the frontend, and now i get this error:
Megasquirt-II.ini:1657: Unkown Identifier 'It' terminate megatune?
clicking on no does absolutely nothing, so i figure i'll just head over to line 1657 and see what's up. turns out line 1657 looks like this.
curve = barometerCorr, "Non-Linear Barometric Correction"
; topicHelp = "http://www.megasquirt.info/xxx"
columnLabel = "Barometer", "Correction"
xAxis = 60, 120, 7
1656 yAxis = -30, 30, 7
1657 xBins = baroCorrVals, barometer
1658 yBins = baroCorrDelta
gauge = barometerGauge
and that's nowheres close to what i added to get different gauges.... and furthermore there's no "It" anywhere near there...
this is what I added
For example, to create boost and vacuum gauges in MegaTune, you would add to:
* [OutputChannels]
vacuum = {(barometer-map)*0.2953007} ; Calculate vacuum in in-Hg.
boost = {map %lt; barometer ? 0.0 : (map-barometer)*0.1450377} ; Calculate boost in PSIG.
* [GaugeConfigurations]
; Name Var Title Units Lo Hi LoD LoW HiW HiD vd ld
vacuumGauge = vacuum, "Engine Vacuum", "in-HG", 0, 30, 0, 0, 30, 30, 1, 1
boostgauge = boost, "Engine Boost", "PSIG", 0, 20, 0, 0, 15, 20, 1, 1
* [FrontPage]
gauge7 = vacuumGauge
gauge8 = boostgauge
oh wait, i think i found something, here's boost = {map
%lt;
so now does anyone know why that gives an error message? whatever parameter %lt is supposed to be isn't coded or is given another name?
