From 23862103e566744e4d38e6ca4404a702e6bf7f52 Mon Sep 17 00:00:00 2001 From: Murray Date: Sat, 20 Jan 2018 16:33:14 -0600 Subject: [PATCH] extremely rough flex table editors. added flexBoostCorrection to currentStatus. shortened flex correction table names. gave each flex table its own set of eth% bins. fixed the incredibly broken EEPROM update code. --- reference/speeduino.ini | 33 ++++++++++++++++++--------------- speeduino/auxiliaries.ino | 13 ++++++++++--- speeduino/comms.h | 2 +- speeduino/comms.ino | 3 +++ speeduino/corrections.ino | 4 ++-- speeduino/globals.h | 20 ++++++++++++-------- speeduino/speeduino.ino | 24 ++++++++++++------------ speeduino/updates.ino | 26 ++++++++++++++++++-------- 8 files changed, 76 insertions(+), 49 deletions(-) diff --git a/reference/speeduino.ini b/reference/speeduino.ini index 31d9f46f..5ac1b5e9 100644 --- a/reference/speeduino.ini +++ b/reference/speeduino.ini @@ -717,13 +717,15 @@ page = 10 stagedInjSizePri = scalar, U16, 28, "cc/min", 1, 0, 0, 1500, 0 stagedInjSizeSec = scalar, U16, 30, "cc/min", 1, 0, 0, 1500, 0 - flexCorrectionBins = array, U08, 31, [6], "%", 1.0, 0.0, 0.0, 250.0, 0 + flexBoostBins = array, U08, 32, [6], "%", 1.0, 0.0, 0.0, 250.0, 0 ; The boost range is obviously arbitrary since int16_t has ~32k in both directions - flexCorrectionBoost = array, S16, 37, [6], "kPa", 1.0, 0.0, -500.0, 500.0, 0 - flexCorrectionFuel = array, U08, 49, [6], "%", 1.0, 0.0, 0.0, 250.0, 0 - flexCorrectionAdv = array, U08, 55, [6], "Deg", 1.0, 0.0, 0.0, 250.0, 0 + flexBoostAdj = array, S16, 38, [6], "kPa", 1.0, 0.0, -500.0, 500.0, 0 + flexFuelBins = array, U08, 50, [6], "%", 1.0, 0.0, 0.0, 250.0, 0 + flexFuelAdj = array, U08, 56, [6], "%", 1.0, 0.0, 0.0, 250.0, 0 + flexAdvBins = array, U08, 62, [6], "%", 1.0, 0.0, 0.0, 250.0, 0 + flexAdvAdj = array, U08, 68, [6], "Deg", 1.0, 0.0, 0.0, 250.0, 0 - unused11_53_192 = array, U08, 61,[131], "RPM", 100.0, 0.0, 100, 25500, 0 + unused11_68_192 = array, U08, 69,[123], "RPM", 100.0, 0.0, 100, 25500, 0 ;------------------------------------------------------------------------------- @@ -1994,27 +1996,27 @@ cmdtestspk450dc = "E\x03\x0C" ; Flex fuel correction curves curve = flex_fuel_curve, "Flex Fuel Adjustments" - columnLabel = "Ethanol %", "Fuel Adj." + columnLabel = "Ethanol", "Fuel" xAxis = 0, 100, 5 yAxis = 0, 255, 10 - xBins = flexCorrectionBins, flex - yBins = flexCorrectionFuel + xBins = flexFuelBins, flex + yBins = flexFuelAdj ;showTextValues = true curve = flex_adv_curve, "Flex Timing Advance" - columnLabel = "Ethanol %", "Add'l Advance" + columnLabel = "Ethanol", "Advance" xAxis = 0, 100, 5 yAxis = 0, 100, 5 - xBins = flexCorrectionBins, flex - yBins = flexCorrectionAdv + xBins = flexAdvBins, flex + yBins = flexAdvAdj ;showTextValues = true curve = flex_boost_curve, "Flex Boost Adjustments" - columnLabel = "Ethanol %", "Boost Adj." + columnLabel = "Ethanol", "Boost" xAxis = 0, 100, 5 yAxis = -100, 200, 5 - xBins = flexCorrectionBins, flex - yBins = flexCorrectionBoost + xBins = flexBoostBins, flex + yBins = flexBoostAdj ;showTextValues = true [TableEditor] @@ -2277,7 +2279,7 @@ cmdtestspk450dc = "E\x03\x0C" ; you change it. ochGetCommand = "r\$tsCanId\x30%2o%2c" - ochBlockSize = 81 + ochBlockSize = 83 secl = scalar, U08, 0, "sec", 1.000, 0.000 status1 = scalar, U08, 1, "bits", 1.000, 0.000 @@ -2364,6 +2366,7 @@ cmdtestspk450dc = "E\x03\x0C" pulseWidth2 = scalar, U16, 75, "ms", 0.001, 0.000 pulseWidth3 = scalar, U16, 77, "ms", 0.001, 0.000 pulseWidth4 = scalar, U16, 79, "ms", 0.001, 0.000 + flexBoostCor = scalar, S16, 81, "kPa", 1.000, 0.000 #if CELSIUS coolant = { coolantRaw - 40 } ; Temperature readings are offset by 40 to allow for negatives diff --git a/speeduino/auxiliaries.ino b/speeduino/auxiliaries.ino index 3a78670b..a23d4899 100644 --- a/speeduino/auxiliaries.ino +++ b/speeduino/auxiliaries.ino @@ -80,12 +80,16 @@ void boostControl() //If flex fuel is enabled, there can be an adder to the boost target based on ethanol content if( configPage1.flexEnabled == 1 ) { - int16_t boostAdder = flexLookupCache.boost = BIT_CHECK(TIMER_mask, BIT_TIMER_4HZ) || !flexLookupCache.boostReady - ? table2D_getValue(&flexCorrectionBoostTable, currentStatus.ethanolPct) + int16_t boostAdder = currentStatus.flexBoostCorrection = flexLookupCache.boost = BIT_CHECK(TIMER_mask, BIT_TIMER_4HZ) || !flexLookupCache.boostReady + ? table2D_getValue(&flexBoostTable, currentStatus.ethanolPct) : flexLookupCache.boost; currentStatus.boostTarget += boostAdder; } + else + { + currentStatus.flexBoostCorrection = 0; + } if(currentStatus.boostTarget > 0) { @@ -122,7 +126,10 @@ void boostControl() boostDisable(); } } - else { DISABLE_BOOST_TIMER(); } // Disable timer channel + else { // Disable timer channel and zero the flex boost correction status + DISABLE_BOOST_TIMER(); + currentStatus.flexBoostCorrection = 0; + } boostCounter++; } diff --git a/speeduino/comms.h b/speeduino/comms.h index c18ff689..a750d8e4 100644 --- a/speeduino/comms.h +++ b/speeduino/comms.h @@ -12,7 +12,7 @@ #define canbusPage 9//Config Page 9 #define warmupPage 10 //Config Page 10 -#define SERIAL_PACKET_SIZE 81 +#define SERIAL_PACKET_SIZE 83 byte currentPage = 1;//Not the same as the speeduino config page numbers bool isMap = true; diff --git a/speeduino/comms.ino b/speeduino/comms.ino index 5247c772..bb91dd48 100644 --- a/speeduino/comms.ino +++ b/speeduino/comms.ino @@ -457,6 +457,9 @@ void sendValues(uint16_t offset, uint16_t packetLength, byte cmd, byte portNum) fullStatus[79] = lowByte(currentStatus.PW4); //Pulsewidth 4 multiplied by 10 in ms. Have to convert from uS to mS. fullStatus[80] = highByte(currentStatus.PW4); //Pulsewidth 4 multiplied by 10 in ms. Have to convert from uS to mS. + fullStatus[81] = lowByte(currentStatus.flexBoostCorrection); + fullStatus[82] = highByte(currentStatus.flexBoostCorrection); + for(byte x=0; x