Is that code put in the custom.ini?efahl wrote:You could set the auto-tune up to do something like this, which would work irrespective of whether you were running closed- or open-loop:Just make up a vex file "afrtable.vex" and you're off to the races.Code: Select all
[OutputChannels] ... lambda = { 1.5 - 5.0 * egoADC/255.0 } afr = { lambda * 14.7 } targetAFR = { vexInterp(rpm, map, 0, "afrtable.vex") } AFRcorr = { (afr / targetAFR) * 100.0 } ... [AutoTune] table = veTableMap corrector = AFRcorr ...
Is the AFR Vex for use while in open loop because it wouldn't be reading the table? (or something?)
Is there a site that's explaining how this AutoTune works? I'm sure there's some 20 page thread somewhere, but one page that puts in the main points would be great if there is one.