Merge remote-tracking branch 'upstream/master' into remove-plain-maf
This commit is contained in:
commit
08be750098
|
@ -18,6 +18,7 @@ jobs:
|
|||
# Board configurations
|
||||
- build-target: frankenso_na6
|
||||
folder: frankenso
|
||||
ini-file: rusefi_frankenso_na6.ini
|
||||
|
||||
- build-target: kinetis
|
||||
folder: kinetis
|
||||
|
@ -28,7 +29,7 @@ jobs:
|
|||
|
||||
- build-target: mre_f4_hardware_QC_special_build
|
||||
folder: microrusefi
|
||||
ini-file: rusefi_microrusefi.ini
|
||||
ini-file: rusefi_mre_f4.ini
|
||||
|
||||
- build-target: mre_f7
|
||||
folder: microrusefi
|
||||
|
|
|
@ -44,6 +44,8 @@ See https://rusefi.com/forum/viewtopic.php?f=5&t=9
|
|||
|
||||
| Release date | Revision | Details |
|
||||
| ------------ | --------- | ------- |
|
||||
| 07/26/2020 | r24635 | improvement #1637: DC motor idle air valve for late 90s German vehicles |
|
||||
| 07/21/2020 | | bugfix #1592 injectors could stay open on transition from cranking to running under certain conditions |
|
||||
| 06/17/2020 | r23656 | bugfix #1491 major performance/scheduling improvement |
|
||||
| 05/21/2020 | r22961 | rusEFI console start-up time improvements |
|
||||
| 04/18/2020 | r22231 | Renix 44-2-2 trigger support added |
|
||||
|
|
|
@ -16,6 +16,7 @@ android {
|
|||
|
||||
defaultConfig {
|
||||
applicationId "com.rusefi.app"
|
||||
// Version 21 = Android_5.0_Lollipop
|
||||
minSdkVersion 21
|
||||
targetSdkVersion 30
|
||||
versionCode 1
|
||||
|
|
|
@ -7,7 +7,6 @@ import com.hoho.android.usbserial.driver.ProbeTable;
|
|||
import com.hoho.android.usbserial.driver.UsbSerialDriver;
|
||||
import com.hoho.android.usbserial.driver.UsbSerialPort;
|
||||
import com.hoho.android.usbserial.driver.UsbSerialProber;
|
||||
import com.opensr5.Logger;
|
||||
import com.opensr5.io.DataListener;
|
||||
import com.rusefi.binaryprotocol.IncomingDataBuffer;
|
||||
import com.rusefi.dfu.DfuLogic;
|
||||
|
@ -31,9 +30,9 @@ public class AndroidSerial extends AbstractIoStream {
|
|||
return prober.findAllDrivers(usbManager);
|
||||
}
|
||||
|
||||
public AndroidSerial(UsbSerialPort usbSerialPort, Logger logger) {
|
||||
public AndroidSerial(UsbSerialPort usbSerialPort) {
|
||||
this.usbSerialPort = usbSerialPort;
|
||||
dataBuffer = IncomingDataBuffer.createDataBuffer("", this, logger);
|
||||
dataBuffer = IncomingDataBuffer.createDataBuffer("", this);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -49,7 +48,7 @@ public class AndroidSerial extends AbstractIoStream {
|
|||
@Override
|
||||
public void setInputListener(DataListener listener) {
|
||||
ByteReader reader = buffer -> usbSerialPort.read(buffer, 5000);
|
||||
ByteReader.runReaderLoop("", listener, reader, Logger.CONSOLE);
|
||||
ByteReader.runReaderLoop("", listener, reader, this);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -34,7 +34,6 @@ import android.widget.TextView;
|
|||
|
||||
import com.hoho.android.usbserial.driver.UsbSerialDriver;
|
||||
import com.hoho.android.usbserial.driver.UsbSerialPort;
|
||||
import com.opensr5.Logger;
|
||||
import com.rusefi.Listener;
|
||||
import com.rusefi.dfu.DfuConnection;
|
||||
import com.rusefi.dfu.DfuImage;
|
||||
|
@ -233,9 +232,9 @@ public class rusEFI extends Activity {
|
|||
port.open(connection);
|
||||
port.setParameters(115200, 8, UsbSerialPort.STOPBITS_1, UsbSerialPort.PARITY_NONE);
|
||||
|
||||
AndroidSerial serial = new AndroidSerial(port, Logger.CONSOLE);
|
||||
AndroidSerial serial = new AndroidSerial(port);
|
||||
mResultView.append("Switching to DFU\n");
|
||||
DfuHelper.sendDfuRebootCommand(serial, new StringBuilder(), Logger.CONSOLE);
|
||||
DfuHelper.sendDfuRebootCommand(serial, new StringBuilder());
|
||||
|
||||
} catch (IOException e) {
|
||||
throw new IllegalStateException(e);
|
||||
|
|
|
@ -11,13 +11,13 @@ BOOTLOADER_CODE_DESTINATION_FILE=$BOOTLOADER_CODE_DESTINATION_PATH/bootloader_ge
|
|||
echo "$SCRIPT_NAME: Starting bootloader compilation..."
|
||||
make -j4 -f src/Makefile $1 $2 $3
|
||||
|
||||
[ $? -eq 0 ] || { echo "make compilation failed"; exit 1; }
|
||||
# downstream scripts detect error condition by checking if the output file exists so we need to make sure we remove it
|
||||
[ $? -eq 0 ] || { echo "ERROR: bootloader compilation failed"; rm -f blbuild/$BOOTLOADER_CODE_DESTINATION_FILE ; exit 1; }
|
||||
|
||||
echo "$SCRIPT_NAME: Bootloader build success."
|
||||
|
||||
cd blbuild
|
||||
# Generate a header file with binary bootloader code
|
||||
rm -f $BOOTLOADER_CODE_DESTINATION_FILE
|
||||
java -jar ../../../java_tools/bin2header.jar bootloader.bin "$BOOTLOADER_CODE_DESTINATION_FILE" "$BOOTLOADER_COMMENT static const volatile uint8_t bootloader_code[] BOOTLOADER_SECTION"
|
||||
[ $? -eq 0 ] || { echo "$SCRIPT_NAME: error generating header file"; exit 1; }
|
||||
cd ..
|
||||
|
|
|
@ -593,6 +593,10 @@ case LM_REAL_MAF:
|
|||
return "LM_REAL_MAF";
|
||||
case LM_SPEED_DENSITY:
|
||||
return "LM_SPEED_DENSITY";
|
||||
case LM_ALPHA_N_2:
|
||||
return "LM_ALPHA_N_2";
|
||||
case LM_MOCK:
|
||||
return "LM_MOCK";
|
||||
}
|
||||
return NULL;
|
||||
}
|
||||
|
@ -776,6 +780,10 @@ case GPPWM_Map:
|
|||
return "GPPWM_Map";
|
||||
case GPPWM_Tps:
|
||||
return "GPPWM_Tps";
|
||||
case GPPWM_FuelLoad:
|
||||
return "GPPWM_FuelLoad";
|
||||
case GPPWM_IgnLoad:
|
||||
return "GPPWM_IgnLoad";
|
||||
}
|
||||
return NULL;
|
||||
}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// this section was generated automatically by rusEfi tool ConfigDefinition.jar based on kinetis_gen_config.bat integration/rusefi_config.txt Wed Jul 22 19:41:17 UTC 2020
|
||||
// this section was generated automatically by rusEfi tool ConfigDefinition.jar based on kinetis_gen_config.bat integration/rusefi_config.txt Tue Jul 28 13:12:25 UTC 2020
|
||||
// by class com.rusefi.output.CHeaderConsumer
|
||||
// begin
|
||||
#pragma once
|
||||
|
@ -832,7 +832,7 @@ struct engine_configuration_s {
|
|||
*/
|
||||
float knockBandCustom;
|
||||
/**
|
||||
* On single-coil or wasted spark setups you have to lower dwell at high RPM
|
||||
* On Single Coil or Wasted Spark setups you have to lower dwell at high RPM
|
||||
* offset 332
|
||||
*/
|
||||
float sparkDwellRpmBins[DWELL_CURVE_SIZE];
|
||||
|
@ -892,7 +892,7 @@ struct engine_configuration_s {
|
|||
*/
|
||||
angle_t crankingTimingAngle;
|
||||
/**
|
||||
* "One Coil" is for use on distributed ignition system. "Individual Coils" is to be used when you have one coil per cylinder (COP or similar). "Wasted" means one coil is driving two spark plugs in two cylinders, with one of the sparks not doing anything since it's happening on the exhaust cycle
|
||||
* "Single Coil" is for use on distributed ignition system. "Individual Coils" is to be used when you have one coil per cylinder (COP or similar). "Wasted Spark" means one coil is driving two spark plugs in two cylinders, with one of the sparks not doing anything since it's happening on the exhaust cycle
|
||||
* set ignition_mode X
|
||||
* offset 440
|
||||
*/
|
||||
|
@ -1460,8 +1460,8 @@ struct engine_configuration_s {
|
|||
offset 744 bit 26 */
|
||||
bool is_enabled_spi_4 : 1;
|
||||
/**
|
||||
* Disable the electronic throttle motor for testing.
|
||||
* This mode is for testing ETB position sensors, etc without actually driving the throttle.
|
||||
* Disable the electronic throttle motor and DC idle motor for testing.
|
||||
* This mode is for testing ETB/DC idle position sensors, etc without actually driving the throttle.
|
||||
offset 744 bit 27 */
|
||||
bool pauseEtbControl : 1;
|
||||
/**
|
||||
|
@ -1759,8 +1759,11 @@ struct engine_configuration_s {
|
|||
offset 976 bit 10 */
|
||||
bool stftIgnoreErrorMagnitude : 1;
|
||||
/**
|
||||
* Used on some German vehicles around late 90s: cable-operated throttle and DC motor idle air valve.
|
||||
* Set the primary TPS to the cable-operated throttle's sensor
|
||||
* Set the secondary TPS to the mini ETB's position sensor(s).
|
||||
offset 976 bit 11 */
|
||||
bool unusedBit_251_11 : 1;
|
||||
bool dcMotorIdleValve : 1;
|
||||
/**
|
||||
offset 976 bit 12 */
|
||||
bool unusedBit_251_12 : 1;
|
||||
|
@ -2140,7 +2143,7 @@ struct engine_configuration_s {
|
|||
offset 1476 bit 14 */
|
||||
bool useOnlyRisingEdgeForTrigger : 1;
|
||||
/**
|
||||
* This is needed if your coils are individually wired (COP) and you wish to use batch ignition (wasted spark).
|
||||
* This is needed if your coils are individually wired (COP) and you wish to use batch ignition (Wasted Spark).
|
||||
offset 1476 bit 15 */
|
||||
bool twoWireBatchIgnition : 1;
|
||||
/**
|
||||
|
@ -3530,4 +3533,4 @@ struct persistent_config_s {
|
|||
typedef struct persistent_config_s persistent_config_s;
|
||||
|
||||
// end
|
||||
// this section was generated automatically by rusEfi tool ConfigDefinition.jar based on kinetis_gen_config.bat integration/rusefi_config.txt Wed Jul 22 19:41:17 UTC 2020
|
||||
// this section was generated automatically by rusEfi tool ConfigDefinition.jar based on kinetis_gen_config.bat integration/rusefi_config.txt Tue Jul 28 13:12:25 UTC 2020
|
||||
|
|
|
@ -276,6 +276,7 @@
|
|||
#define cutSparkOnHardLimit_offset 1464
|
||||
#define cylinderBore_offset 408
|
||||
#define cylindersCount_offset 400
|
||||
#define dcMotorIdleValve_offset 976
|
||||
#define debug_mode_e_enum "Alternator PID", "TPS acceleration enrichment", "INVALID", "Idle Control", "Engine Load accl enrich", "Trigger Counters", "FSIO_ADC", "AUX_PID_1", "VVT input", "Cranking", "Timing", "Closed-loop fuel corr PID", "VSS", "SD card", "sr5", "Knock", "mode16", "Electronic Throttle", "Executor", "Bench Test / TS commands", "Aux Valves", "Analog inputs #1", "INSTANT_RPM", "FSIO_EXPRESSION_1_7", "Status", "CJ125", "CAN", "MAP", "Metrics", "ETB#2", "Ion Sense", "TLE8888", "Analog inputs #2", "Dwell Metric", "INVALID", "ETB Logic", "Boost Control", "Start/Stop", "Launch", "ETB Autotune", "FSIO_COMPOSITE_LOG", "FSIO_EXPRESSION_8_14", "FSIO_SPECIAL", "Mode43", "Mode44"
|
||||
#define debugMapAveraging_offset 807
|
||||
#define debugMode_offset 2092
|
||||
|
@ -304,7 +305,7 @@
|
|||
#define enableLaunchRetard_offset 976
|
||||
#define enableVerboseCanTx_offset 744
|
||||
#define engine_configuration_s_size 6000
|
||||
#define engine_load_mode_e_enum "MAF", "Alpha-N/TPS", "INVALID", "SPEED DENSITY", "MAF Air Charge", "INVALID", "INVALID"
|
||||
#define engine_load_mode_e_enum "MAF", "Alpha-N/TPS", "INVALID", "Speed Density", "MAF Air Charge", "Alpha-N", "INVALID"
|
||||
#define ENGINE_MAKE_BMW "BMW"
|
||||
#define ENGINE_MAKE_GM "GM"
|
||||
#define ENGINE_MAKE_LADA "Lada"
|
||||
|
@ -658,7 +659,7 @@
|
|||
#define gppwm4_pwmFrequency_offset 4410
|
||||
#define gppwm4_rpmBins_offset 4424
|
||||
#define gppwm4_table_offset 4432
|
||||
#define gppwm_channel_e_enum "TPS", "MAP", "CLT", "IAT"
|
||||
#define gppwm_channel_e_enum "TPS", "MAP", "CLT", "IAT", "Fuel Load", "Ignition Load", "INVALID", "INVALID"
|
||||
#define gppwm_channel_size 88
|
||||
#define GPPWM_CHANNELS 4
|
||||
#define GPPWM_LOAD_COUNT 8
|
||||
|
@ -1074,8 +1075,8 @@
|
|||
#define showHumanReadableWarning_offset 976
|
||||
#define showSdCardWarning_offset 76
|
||||
#define SIGNATURE_BOARD kin
|
||||
#define SIGNATURE_DATE 2020.07.22
|
||||
#define SIGNATURE_HASH 3833170085
|
||||
#define SIGNATURE_DATE 2020.07.28
|
||||
#define SIGNATURE_HASH 2529711359
|
||||
#define silentTriggerError_offset 1464
|
||||
#define slowAdcAlpha_offset 2088
|
||||
#define sparkDwellRpmBins_offset 332
|
||||
|
@ -1343,7 +1344,7 @@
|
|||
#define ts_show_spi true
|
||||
#define ts_show_trigger_comparator true
|
||||
#define ts_show_tunerstudio_port true
|
||||
#define TS_SIGNATURE "rusEFI 2020.07.22.kin.3833170085"
|
||||
#define TS_SIGNATURE "rusEFI 2020.07.28.kin.2529711359"
|
||||
#define TS_SINGLE_WRITE_COMMAND 'W'
|
||||
#define tunerStudioSerialSpeed_offset 728
|
||||
#define twoWireBatchIgnition_offset 1476
|
||||
|
@ -1378,7 +1379,6 @@
|
|||
#define unusedAuxVoltage1_TODO_332_offset 2713
|
||||
#define unusedAuxVoltage2_TODO_332_offset 2714
|
||||
#define unusedBit4_1476_offset 1476
|
||||
#define unusedBit_251_11_offset 976
|
||||
#define unusedBit_251_12_offset 976
|
||||
#define unusedBit_251_13_offset 976
|
||||
#define unusedBit_251_14_offset 976
|
||||
|
|
|
@ -166,6 +166,14 @@ static void setupDefaultSensorInputs() {
|
|||
// iat = "23 - AN temp 2"
|
||||
engineConfiguration->iat.adcChannel = EFI_ADC_1;
|
||||
engineConfiguration->iat.config.bias_resistor = 2700;
|
||||
|
||||
setCommonNTCSensor(&engineConfiguration->auxTempSensor1, 2700);
|
||||
setCommonNTCSensor(&engineConfiguration->auxTempSensor2, 2700);
|
||||
|
||||
#if HW_CHECK_MODE
|
||||
engineConfiguration->auxTempSensor1.adcChannel = EFI_ADC_2;
|
||||
engineConfiguration->auxTempSensor2.adcChannel = EFI_ADC_3;
|
||||
#endif // HW_CHECK_MODE
|
||||
}
|
||||
|
||||
void setPinConfigurationOverrides(void) {
|
||||
|
|
|
@ -898,10 +898,12 @@ int tunerStudioHandleCrcCommand(ts_channel_s *tsChannel, char *data, int incomin
|
|||
break;
|
||||
#endif /* ENABLE_PERF_TRACE */
|
||||
case TS_GET_CONFIG_ERROR: {
|
||||
#if HW_CHECK_MODE
|
||||
#define configError "FACTORY_MODE_PLEASE_CONTACT_SUPPORT"
|
||||
#else
|
||||
char * configError = getFirmwareError();
|
||||
#if HW_CHECK_MODE
|
||||
// analog input errors are returned as firmware error in QC mode
|
||||
if (!hasFirmwareError()) {
|
||||
strcpy(configError, "FACTORY_MODE_PLEASE_CONTACT_SUPPORT");
|
||||
}
|
||||
#endif // HW_CHECK_MODE
|
||||
sr5SendResponse(tsChannel, TS_CRC, reinterpret_cast<const uint8_t*>(configError), strlen(configError));
|
||||
break;
|
||||
|
|
|
@ -323,7 +323,7 @@ static void showFuelInfo2(float rpm, float engineLoad) {
|
|||
|
||||
#if EFI_ENGINE_CONTROL
|
||||
static void showFuelInfo(void) {
|
||||
showFuelInfo2((float) GET_RPM(), getEngineLoadT(PASS_ENGINE_PARAMETER_SIGNATURE));
|
||||
showFuelInfo2((float) GET_RPM(), getFuelingLoad(PASS_ENGINE_PARAMETER_SIGNATURE));
|
||||
}
|
||||
#endif
|
||||
|
||||
|
|
|
@ -99,7 +99,11 @@ static bool startupPositionError = false;
|
|||
|
||||
#define STARTUP_NEUTRAL_POSITION_ERROR_THRESHOLD 5
|
||||
|
||||
static SensorType indexToTpsSensor(size_t index) {
|
||||
static SensorType indexToTpsSensor(size_t index, bool dcMotorIdleValve) {
|
||||
if (dcMotorIdleValve) {
|
||||
return SensorType::Tps2;
|
||||
}
|
||||
|
||||
switch(index) {
|
||||
case 0: return SensorType::Tps1;
|
||||
default: return SensorType::Tps2;
|
||||
|
@ -127,7 +131,8 @@ static percent_t currentEtbDuty;
|
|||
// this macro clamps both positive and negative percentages from about -100% to 100%
|
||||
#define ETB_PERCENT_TO_DUTY(x) (clampF(-ETB_DUTY_LIMIT, 0.01f * (x), ETB_DUTY_LIMIT))
|
||||
|
||||
void EtbController::init(DcMotor *motor, int ownIndex, pid_s *pidParameters, const ValueProvider3D* pedalMap) {
|
||||
void EtbController::init(SensorType positionSensor, DcMotor *motor, int ownIndex, pid_s *pidParameters, const ValueProvider3D* pedalMap) {
|
||||
m_positionSensor = positionSensor;
|
||||
m_motor = motor;
|
||||
m_myIndex = ownIndex;
|
||||
m_pid.initPidClass(pidParameters);
|
||||
|
@ -149,7 +154,7 @@ void EtbController::showStatus(Logging* logger) {
|
|||
}
|
||||
|
||||
expected<percent_t> EtbController::observePlant() const {
|
||||
return Sensor::get(indexToTpsSensor(m_myIndex));
|
||||
return Sensor::get(m_positionSensor);
|
||||
}
|
||||
|
||||
void EtbController::setIdlePosition(percent_t pos) {
|
||||
|
@ -162,6 +167,15 @@ expected<percent_t> EtbController::getSetpoint() const {
|
|||
return unexpected;
|
||||
}
|
||||
|
||||
// VW ETB idle mode uses an ETB only for idle (a mini-ETB sets the lower stop, and a normal cable
|
||||
// can pull the throttle up off the stop.), so we directly control the throttle with the idle position.
|
||||
if (CONFIG(dcMotorIdleValve)) {
|
||||
#if EFI_TUNER_STUDIO
|
||||
tsOutputChannels.etbTarget = m_idlePosition;
|
||||
#endif // EFI_TUNER_STUDIO
|
||||
return clampF(0, m_idlePosition, 100);
|
||||
}
|
||||
|
||||
// If the pedal map hasn't been set, we can't provide a setpoint.
|
||||
if (!m_pedalMap) {
|
||||
return unexpected;
|
||||
|
@ -195,7 +209,7 @@ expected<percent_t> EtbController::getSetpoint() const {
|
|||
if (m_myIndex == 0) {
|
||||
tsOutputChannels.etbTarget = targetPosition;
|
||||
}
|
||||
#endif
|
||||
#endif // EFI_TUNER_STUDIO
|
||||
|
||||
return targetPosition;
|
||||
}
|
||||
|
@ -736,14 +750,18 @@ void doInitElectronicThrottle(DECLARE_ENGINE_PARAMETER_SIGNATURE) {
|
|||
addConsoleActionI("etb_freq", setEtbFrequency);
|
||||
#endif /* EFI_PROD_CODE */
|
||||
|
||||
// If you don't have a pedal, we have no business here.
|
||||
if (!Sensor::hasSensor(SensorType::AcceleratorPedalPrimary)) {
|
||||
// If you don't have a pedal (or VW idle valve mode), we have no business here.
|
||||
if (!CONFIG(dcMotorIdleValve) && !Sensor::hasSensor(SensorType::AcceleratorPedalPrimary)) {
|
||||
return;
|
||||
}
|
||||
|
||||
pedal2tpsMap.init(config->pedalToTpsTable, config->pedalToTpsPedalBins, config->pedalToTpsRpmBins);
|
||||
|
||||
engine->etbActualCount = Sensor::hasSensor(SensorType::Tps2) ? 2 : 1;
|
||||
if (CONFIG(dcMotorIdleValve)) {
|
||||
engine->etbActualCount = 1;
|
||||
} else {
|
||||
engine->etbActualCount = Sensor::hasSensor(SensorType::Tps2) ? 2 : 1;
|
||||
}
|
||||
|
||||
for (int i = 0 ; i < engine->etbActualCount; i++) {
|
||||
auto motor = initDcMotor(i, CONFIG(etb_use_two_wires) PASS_ENGINE_PARAMETER_SUFFIX);
|
||||
|
@ -751,7 +769,8 @@ void doInitElectronicThrottle(DECLARE_ENGINE_PARAMETER_SIGNATURE) {
|
|||
// If this motor is actually set up, init the etb
|
||||
if (motor)
|
||||
{
|
||||
engine->etbControllers[i]->init(motor, i, &engineConfiguration->etb, &pedal2tpsMap);
|
||||
auto positionSensor = indexToTpsSensor(i, CONFIG(dcMotorIdleValve));
|
||||
engine->etbControllers[i]->init(positionSensor, motor, i, &engineConfiguration->etb, &pedal2tpsMap);
|
||||
INJECT_ENGINE_REFERENCE(engine->etbControllers[i]);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -19,6 +19,7 @@
|
|||
#include "engine.h"
|
||||
#include "closed_loop_controller.h"
|
||||
#include "expected.h"
|
||||
#include "sensor.h"
|
||||
|
||||
class DcMotor;
|
||||
class Logging;
|
||||
|
@ -26,7 +27,7 @@ class Logging;
|
|||
class IEtbController : public ClosedLoopController<percent_t, percent_t> {
|
||||
public:
|
||||
DECLARE_ENGINE_PTR;
|
||||
virtual void init(DcMotor *motor, int ownIndex, pid_s *pidParameters, const ValueProvider3D* pedalMap) = 0;
|
||||
virtual void init(SensorType positionSensor, DcMotor *motor, int ownIndex, pid_s *pidParameters, const ValueProvider3D* pedalMap) = 0;
|
||||
virtual void reset() = 0;
|
||||
virtual void setIdlePosition(percent_t pos) = 0;
|
||||
virtual void start() = 0;
|
||||
|
@ -35,7 +36,7 @@ public:
|
|||
|
||||
class EtbController : public IEtbController {
|
||||
public:
|
||||
void init(DcMotor *motor, int ownIndex, pid_s *pidParameters, const ValueProvider3D* pedalMap) override;
|
||||
void init(SensorType positionSensor, DcMotor *motor, int ownIndex, pid_s *pidParameters, const ValueProvider3D* pedalMap) override;
|
||||
void setIdlePosition(percent_t pos) override;
|
||||
void reset() override;
|
||||
void start() override {}
|
||||
|
@ -74,6 +75,7 @@ protected:
|
|||
|
||||
private:
|
||||
int m_myIndex = 0;
|
||||
SensorType m_positionSensor = SensorType::Invalid;
|
||||
DcMotor *m_motor = nullptr;
|
||||
Pid m_pid;
|
||||
bool m_shouldResetPid = false;
|
||||
|
|
|
@ -7,6 +7,7 @@
|
|||
#include "expected.h"
|
||||
#include "sensor.h"
|
||||
#include "map.h"
|
||||
#include "engine_math.h"
|
||||
|
||||
EXTERN_ENGINE;
|
||||
|
||||
|
@ -27,6 +28,10 @@ expected<float> readGppwmChannel(gppwm_channel_e channel DECLARE_ENGINE_PARAMETE
|
|||
return Sensor::get(SensorType::Clt);
|
||||
case GPPWM_Iat:
|
||||
return Sensor::get(SensorType::Iat);
|
||||
case GPPWM_FuelLoad:
|
||||
return getFuelingLoad(PASS_ENGINE_PARAMETER_SIGNATURE);
|
||||
case GPPWM_IgnLoad:
|
||||
return getIgnitionLoad(PASS_ENGINE_PARAMETER_SIGNATURE);
|
||||
default:
|
||||
return unexpected;
|
||||
}
|
||||
|
|
|
@ -202,7 +202,9 @@ void setIdleMode(idle_mode_e value DECLARE_ENGINE_PARAMETER_SUFFIX) {
|
|||
showIdleInfo();
|
||||
}
|
||||
|
||||
static void applyIACposition(percent_t position) {
|
||||
#endif // EFI_UNIT_TEST
|
||||
|
||||
void applyIACposition(percent_t position DECLARE_ENGINE_PARAMETER_SUFFIX) {
|
||||
/**
|
||||
* currently idle level is an percent value (0-100 range), and PWM takes a float in the 0..1 range
|
||||
* todo: unify?
|
||||
|
@ -216,12 +218,16 @@ static void applyIACposition(percent_t position) {
|
|||
}
|
||||
|
||||
#if EFI_ELECTRONIC_THROTTLE_BODY
|
||||
setEtbIdlePosition(position);
|
||||
#endif
|
||||
setEtbIdlePosition(position PASS_ENGINE_PARAMETER_SUFFIX);
|
||||
#endif // EFI_ELECTRONIC_THROTTLE_BODY
|
||||
#if ! EFI_UNIT_TEST
|
||||
} if (CONFIG(useStepperIdle)) {
|
||||
} else if (CONFIG(useStepperIdle)) {
|
||||
iacMotor.setTargetPosition(duty * engineConfiguration->idleStepperTotalSteps);
|
||||
#endif /* EFI_UNIT_TEST */
|
||||
} else if (CONFIG(dcMotorIdleValve)) {
|
||||
#if EFI_ELECTRONIC_THROTTLE_BODY
|
||||
setEtbIdlePosition(position PASS_ENGINE_PARAMETER_SUFFIX);
|
||||
#endif // EFI_ELECTRONIC_THROTTLE_BODY
|
||||
} else {
|
||||
if (!CONFIG(isDoubleSolenoidIdle)) {
|
||||
idleSolenoidOpen.setSimplePwmDutyCycle(duty);
|
||||
|
@ -239,11 +245,13 @@ static void applyIACposition(percent_t position) {
|
|||
}
|
||||
}
|
||||
|
||||
#if ! EFI_UNIT_TEST
|
||||
|
||||
percent_t getIdlePosition(void) {
|
||||
return engine->engineState.idle.currentIdlePosition;
|
||||
}
|
||||
|
||||
void setIdleValvePosition(int positionPercent) {
|
||||
void setManualIdleValvePosition(int positionPercent) {
|
||||
if (positionPercent < 1 || positionPercent > 99)
|
||||
return;
|
||||
scheduleMsg(logger, "setting idle valve position %d", positionPercent);
|
||||
|
@ -571,11 +579,8 @@ static percent_t automaticIdleController(float tpsPos DECLARE_ENGINE_PARAMETER_S
|
|||
}
|
||||
|
||||
engine->engineState.idle.currentIdlePosition = iacPosition;
|
||||
#if ! EFI_UNIT_TEST
|
||||
applyIACposition(engine->engineState.idle.currentIdlePosition);
|
||||
#endif /* EFI_UNIT_TEST */
|
||||
}
|
||||
|
||||
applyIACposition(engine->engineState.idle.currentIdlePosition PASS_ENGINE_PARAMETER_SUFFIX);
|
||||
}
|
||||
|
||||
IdleController idleControllerInstance;
|
||||
|
||||
|
|
|
@ -20,7 +20,10 @@ public:
|
|||
};
|
||||
|
||||
percent_t getIdlePosition(void);
|
||||
void setIdleValvePosition(int positionPercent);
|
||||
|
||||
void applyIACposition(percent_t position DECLARE_ENGINE_PARAMETER_SUFFIX);
|
||||
void setManualIdleValvePosition(int positionPercent);
|
||||
|
||||
void startIdleThread(Logging*sharedLogger DECLARE_ENGINE_PARAMETER_SUFFIX);
|
||||
void setDefaultIdleParameters(DECLARE_CONFIG_PARAMETER_SIGNATURE);
|
||||
void startIdleBench(void);
|
||||
|
|
|
@ -315,7 +315,7 @@ void TpsAccelEnrichment::onEngineCycleTps(DECLARE_ENGINE_PARAMETER_SIGNATURE) {
|
|||
}
|
||||
|
||||
void LoadAccelEnrichment::onEngineCycle(DECLARE_ENGINE_PARAMETER_SIGNATURE) {
|
||||
onNewValue(getEngineLoadT(PASS_ENGINE_PARAMETER_SIGNATURE) PASS_ENGINE_PARAMETER_SUFFIX);
|
||||
onNewValue(getFuelingLoad(PASS_ENGINE_PARAMETER_SIGNATURE) PASS_ENGINE_PARAMETER_SUFFIX);
|
||||
}
|
||||
|
||||
AccelEnrichment::AccelEnrichment() {
|
||||
|
|
|
@ -0,0 +1,10 @@
|
|||
#include "airmass.h"
|
||||
|
||||
AirmassModelBase::AirmassModelBase(const ValueProvider3D& veTable) : m_veTable(&veTable) {}
|
||||
|
||||
float AirmassModelBase::getVe(int rpm, float load) const {
|
||||
efiAssert(OBD_PCM_Processor_Fault, m_veTable != nullptr, "VE table null", 0);
|
||||
|
||||
// TODO: allow override of the Y axis value based on a config field
|
||||
return m_veTable->getValue(rpm, load);
|
||||
}
|
|
@ -1,6 +1,24 @@
|
|||
#pragma once
|
||||
|
||||
#include "engine.h"
|
||||
|
||||
class ValueProvider3D;
|
||||
|
||||
struct AirmassResult {
|
||||
float CylinderAirmass = 0;
|
||||
float EngineLoadPercent = 100;
|
||||
};
|
||||
|
||||
struct AirmassModelBase {
|
||||
DECLARE_ENGINE_PTR;
|
||||
|
||||
AirmassModelBase(const ValueProvider3D& veTable);
|
||||
virtual AirmassResult getAirmass(int rpm) = 0;
|
||||
|
||||
protected:
|
||||
// Retrieve the user-calibrated volumetric efficiency from the table
|
||||
float getVe(int rpm, percent_t load) const;
|
||||
|
||||
private:
|
||||
const ValueProvider3D* const m_veTable;
|
||||
};
|
||||
|
|
|
@ -0,0 +1,27 @@
|
|||
#include "alphan_airmass.h"
|
||||
#include "sensor.h"
|
||||
|
||||
AirmassResult AlphaNAirmass::getAirmass(int rpm) {
|
||||
auto tps = Sensor::get(SensorType::Tps1);
|
||||
|
||||
if (!tps.Valid) {
|
||||
// We are fully reliant on TPS - if the TPS fails, stop the engine.
|
||||
return {};
|
||||
}
|
||||
|
||||
// In this case, VE directly describes the cylinder filling relative to the ideal
|
||||
float ve = getVe(rpm, tps.Value);
|
||||
|
||||
// TODO: should this be barometric pressure and/or temperature compensated?
|
||||
float airmass = getAirmassImpl(
|
||||
ve / 100.0f,
|
||||
101.325f, // std atmosphere pressure
|
||||
273.0f + 20.0f // std atmosphere pressure
|
||||
PASS_ENGINE_PARAMETER_SUFFIX
|
||||
);
|
||||
|
||||
return {
|
||||
airmass,
|
||||
tps.Value
|
||||
};
|
||||
}
|
|
@ -0,0 +1,10 @@
|
|||
#pragma once
|
||||
|
||||
#include "speed_density_base.h"
|
||||
|
||||
class AlphaNAirmass : public SpeedDensityBase {
|
||||
public:
|
||||
AlphaNAirmass(const ValueProvider3D& veTable) : SpeedDensityBase(veTable) {}
|
||||
|
||||
AirmassResult getAirmass(int rpm) override;
|
||||
};
|
|
@ -0,0 +1,46 @@
|
|||
#include "global.h"
|
||||
#include "engine.h"
|
||||
#include "maf_airmass.h"
|
||||
#include "maf.h"
|
||||
|
||||
EXTERN_ENGINE;
|
||||
|
||||
AirmassResult MafAirmass::getAirmass(int rpm) {
|
||||
float maf = getRealMaf(PASS_ENGINE_PARAMETER_SIGNATURE) + engine->engineLoadAccelEnrichment.getEngineLoadEnrichment(PASS_ENGINE_PARAMETER_SIGNATURE);
|
||||
return getAirmassImpl(maf, rpm);
|
||||
}
|
||||
|
||||
/**
|
||||
* Function block now works to create a standardised load from the cylinder filling as well as tune fuel via VE table.
|
||||
* @return total duration of fuel injection per engine cycle, in milliseconds
|
||||
*/
|
||||
AirmassResult MafAirmass::getAirmassImpl(float massAirFlow, int rpm) const {
|
||||
// If the engine is stopped, MAF is meaningless
|
||||
if (rpm == 0) {
|
||||
return {};
|
||||
}
|
||||
|
||||
// kg/hr -> g/s
|
||||
float gramPerSecond = massAirFlow * 1000 / 3600;
|
||||
|
||||
// 1/min -> 1/s
|
||||
float revsPerSecond = rpm / 60.0f;
|
||||
float airPerRevolution = gramPerSecond / revsPerSecond;
|
||||
|
||||
// Now we have to divide among cylinders - on a 4 stroke, half of the cylinders happen every rev
|
||||
// This math is floating point to work properly on engines with odd cyl count
|
||||
float halfCylCount = CONFIG(specs.cylindersCount) / 2.0f;
|
||||
|
||||
float cylinderAirmass = airPerRevolution / halfCylCount;
|
||||
|
||||
//Create % load for fuel table using relative naturally aspiratedcylinder filling
|
||||
float airChargeLoad = 100 * cylinderAirmass / ENGINE(standardAirCharge);
|
||||
|
||||
//Correct air mass by VE table
|
||||
float correctedAirmass = cylinderAirmass * getVe(rpm, airChargeLoad) / 100;
|
||||
|
||||
return {
|
||||
correctedAirmass,
|
||||
airChargeLoad, // AFR/VE/ignition table Y axis
|
||||
};
|
||||
}
|
|
@ -0,0 +1,13 @@
|
|||
#pragma once
|
||||
|
||||
#include "airmass.h"
|
||||
|
||||
class MafAirmass final : public AirmassModelBase {
|
||||
public:
|
||||
MafAirmass(const ValueProvider3D& veTable) : AirmassModelBase(veTable) {}
|
||||
|
||||
AirmassResult getAirmass(int rpm) override;
|
||||
|
||||
// Compute airmass based on flow & engine speed
|
||||
AirmassResult getAirmassImpl(float massAirFlow, int rpm) const;
|
||||
};
|
|
@ -0,0 +1,43 @@
|
|||
#include "global.h"
|
||||
#include "engine.h"
|
||||
#include "speed_density_airmass.h"
|
||||
#include "map.h"
|
||||
#include "perf_trace.h"
|
||||
|
||||
EXTERN_ENGINE;
|
||||
|
||||
AirmassResult SpeedDensityAirmass::getAirmass(int rpm) {
|
||||
ScopePerf perf(PE::GetSpeedDensityFuel);
|
||||
|
||||
/**
|
||||
* most of the values are pre-calculated for performance reasons
|
||||
*/
|
||||
float tChargeK = ENGINE(engineState.sd.tChargeK);
|
||||
if (cisnan(tChargeK)) {
|
||||
warning(CUSTOM_ERR_TCHARGE_NOT_READY2, "tChargeK not ready"); // this would happen before we have CLT reading for example
|
||||
return {};
|
||||
}
|
||||
|
||||
float map = getMap(PASS_ENGINE_PARAMETER_SIGNATURE);
|
||||
efiAssert(CUSTOM_ERR_ASSERT, !cisnan(map), "NaN map", {});
|
||||
|
||||
engine->engineState.sd.manifoldAirPressureAccelerationAdjustment = engine->engineLoadAccelEnrichment.getEngineLoadEnrichment(PASS_ENGINE_PARAMETER_SIGNATURE);
|
||||
|
||||
float adjustedMap = engine->engineState.sd.adjustedManifoldAirPressure = map + engine->engineState.sd.manifoldAirPressureAccelerationAdjustment;
|
||||
efiAssert(CUSTOM_ERR_ASSERT, !cisnan(adjustedMap), "NaN adjustedMap", {});
|
||||
|
||||
float airMass = getAirmassImpl(ENGINE(engineState.currentBaroCorrectedVE), adjustedMap, tChargeK PASS_ENGINE_PARAMETER_SUFFIX);
|
||||
if (cisnan(airMass)) {
|
||||
warning(CUSTOM_ERR_6685, "NaN airMass");
|
||||
return {};
|
||||
}
|
||||
#if EFI_PRINTF_FUEL_DETAILS
|
||||
printf("getSpeedDensityAirmass map=%.2f adjustedMap=%.2f airMass=%.2f\t\n",
|
||||
map, adjustedMap, engine->engineState.sd.adjustedManifoldAirPressure);
|
||||
#endif /*EFI_PRINTF_FUEL_DETAILS */
|
||||
|
||||
return {
|
||||
airMass,
|
||||
map, // AFR/VE table Y axis
|
||||
};
|
||||
}
|
|
@ -0,0 +1,9 @@
|
|||
#pragma once
|
||||
|
||||
#include "speed_density_base.h"
|
||||
|
||||
class SpeedDensityAirmass : public SpeedDensityBase {
|
||||
public:
|
||||
SpeedDensityAirmass(const ValueProvider3D& veTable) : SpeedDensityBase(veTable) {}
|
||||
AirmassResult getAirmass(int rpm) override;
|
||||
};
|
|
@ -9,11 +9,14 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#include "engine.h"
|
||||
#include "airmass.h"
|
||||
|
||||
float idealGasLaw(float volume, float pressure, float temperature);
|
||||
|
||||
class SpeedDensityBase {
|
||||
class SpeedDensityBase : public AirmassModelBase {
|
||||
protected:
|
||||
SpeedDensityBase(const ValueProvider3D& veTable) : AirmassModelBase(veTable) {}
|
||||
|
||||
public:
|
||||
static float getAirmassImpl(float ve, float manifoldPressure, float temperature DECLARE_ENGINE_PARAMETER_SUFFIX);
|
||||
};
|
||||
|
|
|
@ -11,4 +11,8 @@ CONTROLLERS_ALGO_SRC_CPP = $(PROJECT_DIR)/controllers/algo/advance_map.cpp \
|
|||
$(PROJECT_DIR)/controllers/algo/engine2.cpp \
|
||||
$(PROJECT_DIR)/controllers/gauges/lcd_menu_tree.cpp \
|
||||
$(PROJECT_DIR)/controllers/algo/event_registry.cpp \
|
||||
$(PROJECT_DIR)/controllers/algo/airmass/airmass.cpp \
|
||||
$(PROJECT_DIR)/controllers/algo/airmass/alphan_airmass.cpp \
|
||||
$(PROJECT_DIR)/controllers/algo/airmass/maf_airmass.cpp \
|
||||
$(PROJECT_DIR)/controllers/algo/airmass/speed_density_airmass.cpp \
|
||||
$(PROJECT_DIR)/controllers/algo/airmass/speed_density_base.cpp \
|
||||
|
|
|
@ -731,6 +731,10 @@ case LM_REAL_MAF:
|
|||
return "LM_REAL_MAF";
|
||||
case LM_SPEED_DENSITY:
|
||||
return "LM_SPEED_DENSITY";
|
||||
case LM_ALPHA_N_2:
|
||||
return "LM_ALPHA_N_2";
|
||||
case LM_MOCK:
|
||||
return "LM_MOCK";
|
||||
}
|
||||
return NULL;
|
||||
}
|
||||
|
@ -914,6 +918,10 @@ case GPPWM_Map:
|
|||
return "GPPWM_Map";
|
||||
case GPPWM_Tps:
|
||||
return "GPPWM_Tps";
|
||||
case GPPWM_FuelLoad:
|
||||
return "GPPWM_FuelLoad";
|
||||
case GPPWM_IgnLoad:
|
||||
return "GPPWM_IgnLoad";
|
||||
}
|
||||
return NULL;
|
||||
}
|
||||
|
|
|
@ -130,6 +130,14 @@ static void cylinderCleanupControl(DECLARE_ENGINE_PARAMETER_SIGNATURE) {
|
|||
#endif
|
||||
}
|
||||
|
||||
#if HW_CHECK_MODE
|
||||
static void assertCloseTo(const char * msg, float actual, float expected) {
|
||||
if (actual < 0.9 * expected || actual > 1.1 * expected) {
|
||||
firmwareError(OBD_PCM_Processor_Fault, "%s analog input validation failed %f vs %f", msg, actual, expected);
|
||||
}
|
||||
}
|
||||
#endif // HW_CHECK_MODE
|
||||
|
||||
void Engine::periodicSlowCallback(DECLARE_ENGINE_PARAMETER_SIGNATURE) {
|
||||
ScopePerf perf(PE::EnginePeriodicSlowCallback);
|
||||
|
||||
|
@ -163,7 +171,14 @@ void Engine::periodicSlowCallback(DECLARE_ENGINE_PARAMETER_SIGNATURE) {
|
|||
}
|
||||
#endif
|
||||
|
||||
slowCallBackWasInvoked = TRUE;
|
||||
slowCallBackWasInvoked = true;
|
||||
|
||||
#if HW_CHECK_MODE
|
||||
assertCloseTo("clt", Sensor::get(SensorType::Clt).Value, 49.3);
|
||||
assertCloseTo("iat", Sensor::get(SensorType::Iat).Value, 73.2);
|
||||
assertCloseTo("aut1", Sensor::get(SensorType::AuxTemp1).Value, 13.8);
|
||||
assertCloseTo("aut2", Sensor::get(SensorType::AuxTemp2).Value, 6.2);
|
||||
#endif // HW_CHECK_MODE
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -31,6 +31,7 @@
|
|||
#define FAST_CALLBACK_PERIOD_MS 5
|
||||
|
||||
class RpmCalculator;
|
||||
class AirmassModelBase;
|
||||
|
||||
#define MAF_DECODING_CACHE_SIZE 256
|
||||
|
||||
|
@ -334,6 +335,8 @@ public:
|
|||
void knockLogic(float knockVolts DECLARE_ENGINE_PARAMETER_SUFFIX);
|
||||
void printKnockState(void);
|
||||
|
||||
AirmassModelBase* mockAirmassModel = nullptr;
|
||||
|
||||
private:
|
||||
/**
|
||||
* By the way:
|
||||
|
|
|
@ -25,8 +25,6 @@
|
|||
#include "engine_math.h"
|
||||
|
||||
InjectionEvent::InjectionEvent() {
|
||||
isSimultanious = false;
|
||||
ownIndex = 0;
|
||||
memset(outputs, 0, sizeof(outputs));
|
||||
}
|
||||
|
||||
|
|
|
@ -22,13 +22,17 @@ class Engine;
|
|||
class InjectionEvent {
|
||||
public:
|
||||
InjectionEvent();
|
||||
|
||||
// Call this every decoded trigger tooth. It will schedule any relevant events for this injector.
|
||||
void onTriggerTooth(size_t toothIndex, int rpm, efitick_t nowNt);
|
||||
|
||||
/**
|
||||
* This is a performance optimization for IM_SIMULTANEOUS fuel strategy.
|
||||
* It's more efficient to handle all injectors together if that's the case
|
||||
*/
|
||||
bool isSimultanious;
|
||||
bool isSimultanious = false;
|
||||
InjectorOutputPin *outputs[MAX_WIRES_COUNT];
|
||||
int ownIndex;
|
||||
int ownIndex = 0;
|
||||
DECLARE_ENGINE_PTR;
|
||||
event_trigger_position_s injectionStart;
|
||||
|
||||
|
@ -47,13 +51,16 @@ public:
|
|||
WallFuel wallFuel;
|
||||
};
|
||||
|
||||
|
||||
/**
|
||||
* This class knows about when to inject fuel
|
||||
*/
|
||||
class FuelSchedule {
|
||||
public:
|
||||
FuelSchedule();
|
||||
|
||||
// Call this every trigger tooth. It will schedule all required injector events.
|
||||
void onTriggerTooth(size_t toothIndex, int rpm, efitick_t nowNt DECLARE_ENGINE_PARAMETER_SUFFIX);
|
||||
|
||||
/**
|
||||
* this method schedules all fuel events for an engine cycle
|
||||
*/
|
||||
|
|
|
@ -23,6 +23,9 @@
|
|||
|
||||
#include "global.h"
|
||||
#include "airmass.h"
|
||||
#include "alphan_airmass.h"
|
||||
#include "maf_airmass.h"
|
||||
#include "speed_density_airmass.h"
|
||||
#include "fuel_math.h"
|
||||
#include "interpolation.h"
|
||||
#include "engine_configuration.h"
|
||||
|
@ -153,41 +156,6 @@ floatms_t getRunningFuel(floatms_t baseFuel DECLARE_ENGINE_PARAMETER_SUFFIX) {
|
|||
|
||||
/* DISPLAY_ENDIF */
|
||||
|
||||
/**
|
||||
* Function block now works to create a standardised load from the cylinder filling as well as tune fuel via VE table.
|
||||
* @return total duration of fuel injection per engine cycle, in milliseconds
|
||||
*/
|
||||
AirmassResult getRealMafAirmass(float airSpeed, int rpm DECLARE_ENGINE_PARAMETER_SUFFIX) {
|
||||
// If the engine is stopped, MAF is meaningless
|
||||
if (rpm == 0) {
|
||||
return {};
|
||||
}
|
||||
|
||||
// kg/hr -> g/s
|
||||
float gramPerSecond = airSpeed * 1000 / 3600;
|
||||
|
||||
// 1/min -> 1/s
|
||||
float revsPerSecond = rpm / 60.0f;
|
||||
float airPerRevolution = gramPerSecond / revsPerSecond;
|
||||
|
||||
// Now we have to divide among cylinders - on a 4 stroke, half of the cylinders happen every rev
|
||||
// This math is floating point to work properly on engines with odd cyl count
|
||||
float halfCylCount = CONFIG(specs.cylindersCount) / 2.0f;
|
||||
|
||||
float cylinderAirmass = airPerRevolution / halfCylCount;
|
||||
|
||||
//Create % load for fuel table using relative naturally aspiratedcylinder filling
|
||||
float airChargeLoad = 100 * cylinderAirmass / ENGINE(standardAirCharge);
|
||||
|
||||
//Correct air mass by VE table
|
||||
float correctedAirmass = cylinderAirmass * veMap.getValue(rpm, airChargeLoad) / 100;
|
||||
|
||||
return {
|
||||
correctedAirmass,
|
||||
airChargeLoad, // AFR/VE table Y axis
|
||||
};
|
||||
}
|
||||
|
||||
constexpr float convertToGramsPerSecond(float ccPerMinute) {
|
||||
float ccPerSecond = ccPerMinute / 60;
|
||||
return ccPerSecond * 0.72f; // 0.72g/cc fuel density
|
||||
|
@ -202,16 +170,19 @@ float getInjectionDurationForAirmass(float airMass, float afr DECLARE_ENGINE_PAR
|
|||
return airMass / (afr * gPerSec);
|
||||
}
|
||||
|
||||
AirmassResult getAirmass(int rpm DECLARE_ENGINE_PARAMETER_SUFFIX) {
|
||||
static SpeedDensityAirmass sdAirmass(veMap);
|
||||
static MafAirmass mafAirmass(veMap);
|
||||
static AlphaNAirmass alphaNAirmass(veMap);
|
||||
|
||||
AirmassModelBase* getAirmassModel(DECLARE_ENGINE_PARAMETER_SIGNATURE) {
|
||||
switch (CONFIG(fuelAlgorithm)) {
|
||||
case LM_SPEED_DENSITY:
|
||||
return getSpeedDensityAirmass(PASS_ENGINE_PARAMETER_SIGNATURE);
|
||||
case LM_REAL_MAF: {
|
||||
float maf = getRealMaf(PASS_ENGINE_PARAMETER_SIGNATURE) + engine->engineLoadAccelEnrichment.getEngineLoadEnrichment(PASS_ENGINE_PARAMETER_SIGNATURE);
|
||||
return getRealMafAirmass(maf, rpm PASS_ENGINE_PARAMETER_SUFFIX);
|
||||
} default:
|
||||
firmwareError(CUSTOM_ERR_ASSERT, "Fuel mode %d is not airmass mode", CONFIG(fuelAlgorithm));
|
||||
return {};
|
||||
case LM_SPEED_DENSITY: return &sdAirmass;
|
||||
case LM_REAL_MAF: return &mafAirmass;
|
||||
case LM_ALPHA_N_2: return &alphaNAirmass;
|
||||
#if EFI_UNIT_TEST
|
||||
case LM_MOCK: return engine->mockAirmassModel;
|
||||
#endif
|
||||
default: return nullptr;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -228,15 +199,19 @@ floatms_t getBaseFuel(int rpm DECLARE_ENGINE_PARAMETER_SUFFIX) {
|
|||
|
||||
floatms_t baseFuel;
|
||||
|
||||
if ((CONFIG(fuelAlgorithm) == LM_SPEED_DENSITY) || (engineConfiguration->fuelAlgorithm == LM_REAL_MAF)) {
|
||||
if ((CONFIG(fuelAlgorithm) == LM_SPEED_DENSITY) ||
|
||||
(engineConfiguration->fuelAlgorithm == LM_REAL_MAF) ||
|
||||
(engineConfiguration->fuelAlgorithm == LM_ALPHA_N_2) ||
|
||||
(engineConfiguration->fuelAlgorithm == LM_MOCK)) {
|
||||
// airmass modes - get airmass first, then convert to fuel
|
||||
auto airmass = getAirmass(rpm PASS_ENGINE_PARAMETER_SUFFIX);
|
||||
auto model = getAirmassModel(PASS_ENGINE_PARAMETER_SIGNATURE);
|
||||
efiAssert(CUSTOM_ERR_ASSERT, model != nullptr, "Invalid airmass mode", 0.0f);
|
||||
|
||||
auto airmass = model->getAirmass(rpm);
|
||||
|
||||
// The airmass mode will tell us how to look up AFR - use the provided Y axis value
|
||||
float targetAfr = afrMap.getValue(rpm, airmass.EngineLoadPercent);
|
||||
|
||||
// TODO: surface airmass.EngineLoadPercent to tunerstudio for proper display
|
||||
|
||||
// Plop some state for others to read
|
||||
ENGINE(engineState.targetAFR) = targetAfr;
|
||||
ENGINE(engineState.sd.airMassInOneCylinder) = airmass.CylinderAirmass;
|
||||
|
@ -384,6 +359,9 @@ floatms_t getInjectorLag(float vBatt DECLARE_ENGINE_PARAMETER_SUFFIX) {
|
|||
* is to prepare the fuel map data structure for 3d interpolation
|
||||
*/
|
||||
void initFuelMap(DECLARE_ENGINE_PARAMETER_SIGNATURE) {
|
||||
INJECT_ENGINE_REFERENCE(&sdAirmass);
|
||||
INJECT_ENGINE_REFERENCE(&mafAirmass);
|
||||
|
||||
fuelMap.init(config->fuelTable, config->fuelLoadBins, config->fuelRpmBins);
|
||||
#if (IGN_LOAD_COUNT == FUEL_LOAD_COUNT) && (IGN_RPM_COUNT == FUEL_RPM_COUNT)
|
||||
fuelPhaseMap.init(config->injectionPhase, config->injPhaseLoadBins, config->injPhaseRpmBins);
|
||||
|
|
|
@ -22,8 +22,6 @@ floatms_t getBaseFuel(int rpm DECLARE_ENGINE_PARAMETER_SUFFIX);
|
|||
*/
|
||||
floatms_t getRunningFuel(floatms_t baseFuel DECLARE_ENGINE_PARAMETER_SUFFIX);
|
||||
|
||||
AirmassResult getRealMafAirmass(float airMass, int rpm DECLARE_ENGINE_PARAMETER_SUFFIX);
|
||||
|
||||
floatms_t getBaseTableFuel(int rpm, float engineLoad);
|
||||
float getBaroCorrection(DECLARE_ENGINE_PARAMETER_SIGNATURE);
|
||||
int getNumberOfInjections(injection_mode_e mode DECLARE_ENGINE_PARAMETER_SUFFIX);
|
||||
|
|
|
@ -439,6 +439,12 @@ typedef enum {
|
|||
*/
|
||||
LM_REAL_MAF = 4,
|
||||
|
||||
// todo: rename after LM_ALPHA_N is removed
|
||||
LM_ALPHA_N_2 = 5,
|
||||
|
||||
// This mode is for unit testing only, so that tests don't have to rely on a particular real airmass mode
|
||||
LM_MOCK = 100,
|
||||
|
||||
Force_4_bytes_size_engine_load_mode = ENUM_32_BITS,
|
||||
} engine_load_mode_e;
|
||||
|
||||
|
@ -948,6 +954,8 @@ typedef enum __attribute__ ((__packed__)) {
|
|||
GPPWM_Map = 1,
|
||||
GPPWM_Clt = 2,
|
||||
GPPWM_Iat = 3,
|
||||
GPPWM_FuelLoad = 4,
|
||||
GPPWM_IgnLoad = 5,
|
||||
} gppwm_channel_e;
|
||||
|
||||
typedef enum __attribute__ ((__packed__)) {
|
||||
|
|
|
@ -40,6 +40,7 @@
|
|||
#include "electronic_throttle.h"
|
||||
#include "cj125.h"
|
||||
#include "malfunction_central.h"
|
||||
#include "tunerstudio_outputs.h"
|
||||
|
||||
#if EFI_PROD_CODE
|
||||
#include "rusefi.h"
|
||||
|
@ -271,6 +272,9 @@ static void handleCommandX14(uint16_t index) {
|
|||
return;
|
||||
case 0x10:
|
||||
engine->etbAutoTune = false;
|
||||
#if EFI_TUNER_STUDIO
|
||||
tsOutputChannels.calibrationMode = TsCalMode::None;
|
||||
#endif // EFI_TUNER_STUDIO
|
||||
return;
|
||||
#endif
|
||||
case 0xF:
|
||||
|
|
|
@ -123,7 +123,7 @@ static void handleGetDataRequest(const CANRxFrame& rx) {
|
|||
obdSendValue(1, pid, 2, (2<<8)|(0)); // 2 = "Closed loop, using oxygen sensor feedback to determine fuel mix"
|
||||
break;
|
||||
case PID_ENGINE_LOAD:
|
||||
obdSendValue(1, pid, 1, getEngineLoadT(PASS_ENGINE_PARAMETER_SIGNATURE) * 2.55f);
|
||||
obdSendValue(1, pid, 1, getFuelingLoad(PASS_ENGINE_PARAMETER_SIGNATURE) * 2.55f);
|
||||
break;
|
||||
case PID_COOLANT_TEMP:
|
||||
obdSendValue(1, pid, 1, Sensor::get(SensorType::Clt).value_or(0) + 40.0f);
|
||||
|
|
|
@ -34,6 +34,7 @@ CONTROLLERS_SRC_CPP = \
|
|||
$(CONTROLLERS_DIR)/engine_cycle/spark_logic.cpp \
|
||||
$(CONTROLLERS_DIR)/engine_cycle/main_trigger_callback.cpp \
|
||||
$(CONTROLLERS_DIR)/engine_cycle/aux_valves.cpp \
|
||||
$(CONTROLLERS_DIR)/engine_cycle/fuel_schedule.cpp \
|
||||
$(CONTROLLERS_DIR)/flash_main.cpp \
|
||||
$(CONTROLLERS_DIR)/bench_test.cpp \
|
||||
$(CONTROLLERS_DIR)/can/obd2.cpp \
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
#pragma once
|
||||
#define VCS_DATE 20200723
|
||||
#define VCS_DATE 20200729
|
||||
|
|
|
@ -324,6 +324,8 @@ static void printAnalogInfo(void) {
|
|||
printAnalogChannelInfo("pPS", engineConfiguration->throttlePedalPositionAdcChannel);
|
||||
printAnalogChannelInfo("CLT", engineConfiguration->clt.adcChannel);
|
||||
printAnalogChannelInfo("IAT", engineConfiguration->iat.adcChannel);
|
||||
printAnalogChannelInfo("AuxT1", engineConfiguration->auxTempSensor1.adcChannel);
|
||||
printAnalogChannelInfo("AuxT2", engineConfiguration->auxTempSensor2.adcChannel);
|
||||
printAnalogChannelInfo("MAF", engineConfiguration->mafAdcChannel);
|
||||
for (int i = 0; i < FSIO_ANALOG_INPUT_COUNT ; i++) {
|
||||
adc_channel_e ch = engineConfiguration->fsioAdc[i];
|
||||
|
|
|
@ -0,0 +1,163 @@
|
|||
/**
|
||||
* @file fuel_schedule.cpp
|
||||
*
|
||||
* Handles injection scheduling
|
||||
*/
|
||||
|
||||
#include "global.h"
|
||||
#include "engine.h"
|
||||
#include "engine_math.h"
|
||||
#include "event_registry.h"
|
||||
|
||||
EXTERN_ENGINE;
|
||||
|
||||
#if EFI_ENGINE_CONTROL
|
||||
|
||||
FuelSchedule::FuelSchedule() {
|
||||
clear();
|
||||
for (int cylinderIndex = 0; cylinderIndex < MAX_INJECTION_OUTPUT_COUNT; cylinderIndex++) {
|
||||
InjectionEvent *ev = &elements[cylinderIndex];
|
||||
ev->ownIndex = cylinderIndex;
|
||||
}
|
||||
}
|
||||
|
||||
void FuelSchedule::clear() {
|
||||
isReady = false;
|
||||
}
|
||||
|
||||
void FuelSchedule::resetOverlapping() {
|
||||
for (size_t i = 0; i < efi::size(enginePins.injectors); i++) {
|
||||
enginePins.injectors[i].reset();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @returns false in case of error, true if success
|
||||
*/
|
||||
bool FuelSchedule::addFuelEventsForCylinder(int i DECLARE_ENGINE_PARAMETER_SUFFIX) {
|
||||
efiAssert(CUSTOM_ERR_ASSERT, engine!=NULL, "engine is NULL", false);
|
||||
|
||||
floatus_t oneDegreeUs = ENGINE(rpmCalculator.oneDegreeUs); // local copy
|
||||
if (cisnan(oneDegreeUs)) {
|
||||
// in order to have fuel schedule we need to have current RPM
|
||||
// wonder if this line slows engine startup?
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* injection phase is scheduled by injection end, so we need to step the angle back
|
||||
* for the duration of the injection
|
||||
*
|
||||
* todo: since this method is not invoked within trigger event handler and
|
||||
* engineState.injectionOffset is calculated from the same utility timer should we more that logic here?
|
||||
*/
|
||||
floatms_t fuelMs = ENGINE(injectionDuration);
|
||||
efiAssert(CUSTOM_ERR_ASSERT, !cisnan(fuelMs), "NaN fuelMs", false);
|
||||
angle_t injectionDuration = MS2US(fuelMs) / oneDegreeUs;
|
||||
efiAssert(CUSTOM_ERR_ASSERT, !cisnan(injectionDuration), "NaN injectionDuration", false);
|
||||
assertAngleRange(injectionDuration, "injectionDuration_r", CUSTOM_INJ_DURATION);
|
||||
floatus_t injectionOffset = ENGINE(engineState.injectionOffset);
|
||||
if (cisnan(injectionOffset)) {
|
||||
// injection offset map not ready - we are not ready to schedule fuel events
|
||||
return false;
|
||||
}
|
||||
angle_t baseAngle = injectionOffset - injectionDuration;
|
||||
efiAssert(CUSTOM_ERR_ASSERT, !cisnan(baseAngle), "NaN baseAngle", false);
|
||||
assertAngleRange(baseAngle, "baseAngle_r", CUSTOM_ERR_6554);
|
||||
|
||||
injection_mode_e mode = engine->getCurrentInjectionMode(PASS_ENGINE_PARAMETER_SIGNATURE);
|
||||
|
||||
int injectorIndex;
|
||||
if (mode == IM_SIMULTANEOUS || mode == IM_SINGLE_POINT) {
|
||||
// These modes only have one injector
|
||||
injectorIndex = 0;
|
||||
} else if (mode == IM_SEQUENTIAL || (mode == IM_BATCH && CONFIG(twoWireBatchInjection))) {
|
||||
// Map order index -> cylinder index (firing order)
|
||||
injectorIndex = getCylinderId(i PASS_ENGINE_PARAMETER_SUFFIX) - 1;
|
||||
} else if (mode == IM_BATCH) {
|
||||
// Loop over the first half of the firing order twice
|
||||
injectorIndex = i % (engineConfiguration->specs.cylindersCount / 2);
|
||||
} else {
|
||||
firmwareError(CUSTOM_OBD_UNEXPECTED_INJECTION_MODE, "Unexpected injection mode %d", mode);
|
||||
injectorIndex = 0;
|
||||
}
|
||||
|
||||
assertAngleRange(baseAngle, "addFbaseAngle", CUSTOM_ADD_BASE);
|
||||
|
||||
int cylindersCount = CONFIG(specs.cylindersCount);
|
||||
if (cylindersCount < 1) {
|
||||
// May 2020 this somehow still happens with functional tests, maybe race condition?
|
||||
warning(CUSTOM_OBD_ZERO_CYLINDER_COUNT, "Invalid cylinder count: %d", cylindersCount);
|
||||
return false;
|
||||
}
|
||||
|
||||
float angle = baseAngle
|
||||
+ i * ENGINE(engineCycle) / cylindersCount;
|
||||
|
||||
InjectorOutputPin *secondOutput;
|
||||
if (mode == IM_BATCH && CONFIG(twoWireBatchInjection)) {
|
||||
/**
|
||||
* also fire the 2nd half of the injectors so that we can implement a batch mode on individual wires
|
||||
*/
|
||||
// Compute the position of this cylinder's twin in the firing order
|
||||
// Each injector gets fired as a primary (the same as sequential), but also
|
||||
// fires the injector 360 degrees later in the firing order.
|
||||
int secondOrder = (i + (CONFIG(specs.cylindersCount) / 2)) % CONFIG(specs.cylindersCount);
|
||||
int secondIndex = getCylinderId(secondOrder PASS_ENGINE_PARAMETER_SUFFIX) - 1;
|
||||
secondOutput = &enginePins.injectors[secondIndex];
|
||||
} else {
|
||||
secondOutput = nullptr;
|
||||
}
|
||||
|
||||
InjectorOutputPin *output = &enginePins.injectors[injectorIndex];
|
||||
bool isSimultanious = mode == IM_SIMULTANEOUS;
|
||||
|
||||
if (!isSimultanious && !output->isInitialized()) {
|
||||
// todo: extract method for this index math
|
||||
warning(CUSTOM_OBD_INJECTION_NO_PIN_ASSIGNED, "no_pin_inj #%s", output->name);
|
||||
}
|
||||
|
||||
InjectionEvent *ev = &elements[i];
|
||||
ev->ownIndex = i;
|
||||
INJECT_ENGINE_REFERENCE(ev);
|
||||
fixAngle(angle, "addFuel#1", CUSTOM_ERR_6554);
|
||||
|
||||
ev->outputs[0] = output;
|
||||
ev->outputs[1] = secondOutput;
|
||||
|
||||
ev->isSimultanious = isSimultanious;
|
||||
|
||||
if (TRIGGER_WAVEFORM(getSize()) < 1) {
|
||||
warning(CUSTOM_ERR_NOT_INITIALIZED_TRIGGER, "uninitialized TriggerWaveform");
|
||||
return false;
|
||||
}
|
||||
|
||||
efiAssert(CUSTOM_ERR_ASSERT, !cisnan(angle), "findAngle#3", false);
|
||||
assertAngleRange(angle, "findAngle#a33", CUSTOM_ERR_6544);
|
||||
ev->injectionStart.setAngle(angle PASS_ENGINE_PARAMETER_SUFFIX);
|
||||
#if EFI_UNIT_TEST
|
||||
printf("registerInjectionEvent angle=%.2f trgIndex=%d inj %d\r\n", angle, ev->injectionStart.triggerEventIndex, injectorIndex);
|
||||
#endif
|
||||
return true;
|
||||
}
|
||||
|
||||
void FuelSchedule::addFuelEvents(DECLARE_ENGINE_PARAMETER_SIGNATURE) {
|
||||
clear();
|
||||
|
||||
for (int cylinderIndex = 0; cylinderIndex < CONFIG(specs.cylindersCount); cylinderIndex++) {
|
||||
InjectionEvent *ev = &elements[cylinderIndex];
|
||||
ev->ownIndex = cylinderIndex; // todo: is this assignment needed here? we now initialize in constructor
|
||||
bool result = addFuelEventsForCylinder(cylinderIndex PASS_ENGINE_PARAMETER_SUFFIX);
|
||||
if (!result)
|
||||
return;
|
||||
}
|
||||
isReady = true;
|
||||
}
|
||||
|
||||
void FuelSchedule::onTriggerTooth(size_t toothIndex, int rpm, efitick_t nowNt DECLARE_ENGINE_PARAMETER_SUFFIX) {
|
||||
for (int i = 0; i < CONFIG(specs.cylindersCount); i++) {
|
||||
elements[i].onTriggerTooth(toothIndex, rpm, nowNt);
|
||||
}
|
||||
}
|
||||
|
||||
#endif
|
|
@ -187,9 +187,13 @@ void turnInjectionPinLow(InjectionEvent *event) {
|
|||
ENGINE(injectionEvents.addFuelEventsForCylinder(event->ownIndex PASS_ENGINE_PARAMETER_SUFFIX));
|
||||
}
|
||||
|
||||
// todo: rename to 'scheduleInjectorOpenAndClose'?
|
||||
void handleFuelInjectionEvent(int injEventIndex, InjectionEvent *event,
|
||||
int rpm, efitick_t nowNt DECLARE_ENGINE_PARAMETER_SUFFIX) {
|
||||
void InjectionEvent::onTriggerTooth(size_t trgEventIndex, int rpm, efitick_t nowNt) {
|
||||
uint32_t eventIndex = injectionStart.triggerEventIndex;
|
||||
// right after trigger change we are still using old & invalid fuel schedule. good news is we do not change trigger on the fly in real life
|
||||
// efiAssertVoid(CUSTOM_ERR_ASSERT_VOID, eventIndex < ENGINE(triggerShape.getLength()), "handleFuel/event sch index");
|
||||
if (eventIndex != trgEventIndex) {
|
||||
return;
|
||||
}
|
||||
|
||||
/**
|
||||
* todo: this is a bit tricky with batched injection. is it? Does the same
|
||||
|
@ -197,11 +201,11 @@ void handleFuelInjectionEvent(int injEventIndex, InjectionEvent *event,
|
|||
* x2 or /2?
|
||||
*/
|
||||
|
||||
const floatms_t injectionDuration = event->wallFuel.adjust(ENGINE(injectionDuration) PASS_ENGINE_PARAMETER_SUFFIX);
|
||||
const floatms_t injectionDuration = wallFuel.adjust(ENGINE(injectionDuration) PASS_ENGINE_PARAMETER_SUFFIX);
|
||||
#if EFI_PRINTF_FUEL_DETAILS
|
||||
if (printFuelDebug) {
|
||||
printf("fuel index=%d injectionDuration=%.2fms adjusted=%.2fms\n",
|
||||
injEventIndex,
|
||||
eventIndex,
|
||||
ENGINE(injectionDuration),
|
||||
injectionDuration);
|
||||
}
|
||||
|
@ -245,7 +249,7 @@ void handleFuelInjectionEvent(int injEventIndex, InjectionEvent *event,
|
|||
|
||||
// we are ignoring low RPM in order not to handle "engine was stopped to engine now running" transition
|
||||
if (rpm > 2 * engineConfiguration->cranking.rpm) {
|
||||
const char *outputName = event->outputs[0]->name;
|
||||
const char *outputName = outputs[0]->name;
|
||||
if (prevOutputName == outputName
|
||||
&& engineConfiguration->injectionMode != IM_SIMULTANEOUS
|
||||
&& engineConfiguration->injectionMode != IM_SINGLE_POINT) {
|
||||
|
@ -256,48 +260,48 @@ void handleFuelInjectionEvent(int injEventIndex, InjectionEvent *event,
|
|||
|
||||
#if EFI_PRINTF_FUEL_DETAILS
|
||||
if (printFuelDebug) {
|
||||
InjectorOutputPin *output = event->outputs[0];
|
||||
InjectorOutputPin *output = outputs[0];
|
||||
printf("handleFuelInjectionEvent fuelout %s injection_duration %dus engineCycleDuration=%.1fms\t\n", output->name, (int)durationUs,
|
||||
(int)MS2US(getCrankshaftRevolutionTimeMs(GET_RPM_VALUE)) / 1000.0);
|
||||
}
|
||||
#endif /*EFI_PRINTF_FUEL_DETAILS */
|
||||
|
||||
if (event->isScheduled) {
|
||||
if (isScheduled) {
|
||||
#if EFI_PRINTF_FUEL_DETAILS
|
||||
if (printFuelDebug) {
|
||||
InjectorOutputPin *output = event->outputs[0];
|
||||
InjectorOutputPin *output = outputs[0];
|
||||
printf("handleFuelInjectionEvent still used %s now=%.1fms\r\n", output->name, (int)getTimeNowUs() / 1000.0);
|
||||
}
|
||||
#endif /*EFI_PRINTF_FUEL_DETAILS */
|
||||
return; // this InjectionEvent is still needed for an extremely long injection scheduled previously
|
||||
}
|
||||
|
||||
event->isScheduled = true;
|
||||
isScheduled = true;
|
||||
|
||||
action_s startAction, endAction;
|
||||
// We use different callbacks based on whether we're running sequential mode or not - everything else is the same
|
||||
if (event->isSimultanious) {
|
||||
if (isSimultanious) {
|
||||
startAction = { &startSimultaniousInjection, engine };
|
||||
endAction = { &endSimultaniousInjection, event };
|
||||
endAction = { &endSimultaniousInjection, this };
|
||||
} else {
|
||||
// sequential or batch
|
||||
startAction = { &turnInjectionPinHigh, event };
|
||||
endAction = { &turnInjectionPinLow, event };
|
||||
startAction = { &turnInjectionPinHigh, this };
|
||||
endAction = { &turnInjectionPinLow, this };
|
||||
}
|
||||
|
||||
efitick_t startTime = scheduleByAngle(&event->signalTimerUp, nowNt, event->injectionStart.angleOffsetFromTriggerEvent, startAction PASS_ENGINE_PARAMETER_SUFFIX);
|
||||
efitick_t startTime = scheduleByAngle(&signalTimerUp, nowNt, injectionStart.angleOffsetFromTriggerEvent, startAction PASS_ENGINE_PARAMETER_SUFFIX);
|
||||
efitick_t turnOffTime = startTime + US2NT((int)durationUs);
|
||||
engine->executor.scheduleByTimestampNt(&event->endOfInjectionEvent, turnOffTime, endAction);
|
||||
engine->executor.scheduleByTimestampNt(&endOfInjectionEvent, turnOffTime, endAction);
|
||||
|
||||
#if EFI_UNIT_TEST
|
||||
printf("scheduling injection angle=%.2f/delay=%.2f injectionDuration=%.2f\r\n", event->injectionStart.angleOffsetFromTriggerEvent, NT2US(startTime - nowNt), injectionDuration);
|
||||
printf("scheduling injection angle=%.2f/delay=%.2f injectionDuration=%.2f\r\n", injectionStart.angleOffsetFromTriggerEvent, NT2US(startTime - nowNt), injectionDuration);
|
||||
#endif
|
||||
#if EFI_DEFAILED_LOGGING
|
||||
scheduleMsg(logger, "handleFuel pin=%s eventIndex %d duration=%.2fms %d", event->outputs[0]->name,
|
||||
scheduleMsg(logger, "handleFuel pin=%s eventIndex %d duration=%.2fms %d", outputs[0]->name,
|
||||
injEventIndex,
|
||||
injectionDuration,
|
||||
getRevolutionCounter());
|
||||
scheduleMsg(logger, "handleFuel pin=%s delay=%.2f %d", event->outputs[0]->name, NT2US(startTime - nowNt),
|
||||
scheduleMsg(logger, "handleFuel pin=%s delay=%.2f %d", outputs[0]->name, NT2US(startTime - nowNt),
|
||||
getRevolutionCounter());
|
||||
#endif /* EFI_DEFAILED_LOGGING */
|
||||
}
|
||||
|
@ -322,7 +326,7 @@ static ALWAYS_INLINE void handleFuel(const bool limitedFuel, uint32_t trgEventIn
|
|||
}
|
||||
|
||||
/**
|
||||
* Ignition events are defined by addFuelEvents() according to selected
|
||||
* Injection events are defined by addFuelEvents() according to selected
|
||||
* fueling strategy
|
||||
*/
|
||||
FuelSchedule *fs = &ENGINE(injectionEvents);
|
||||
|
@ -342,16 +346,7 @@ static ALWAYS_INLINE void handleFuel(const bool limitedFuel, uint32_t trgEventIn
|
|||
ENGINE(engineLoadAccelEnrichment.onEngineCycle(PASS_ENGINE_PARAMETER_SIGNATURE));
|
||||
}
|
||||
|
||||
for (int injEventIndex = 0; injEventIndex < CONFIG(specs.cylindersCount); injEventIndex++) {
|
||||
InjectionEvent *event = &fs->elements[injEventIndex];
|
||||
uint32_t eventIndex = event->injectionStart.triggerEventIndex;
|
||||
// right after trigger change we are still using old & invalid fuel schedule. good news is we do not change trigger on the fly in real life
|
||||
// efiAssertVoid(CUSTOM_ERR_ASSERT_VOID, eventIndex < ENGINE(triggerShape.getLength()), "handleFuel/event sch index");
|
||||
if (eventIndex != trgEventIndex) {
|
||||
continue;
|
||||
}
|
||||
handleFuelInjectionEvent(injEventIndex, event, rpm, nowNt PASS_ENGINE_PARAMETER_SUFFIX);
|
||||
}
|
||||
fs->onTriggerTooth(trgEventIndex, rpm, nowNt PASS_ENGINE_PARAMETER_SUFFIX);
|
||||
}
|
||||
|
||||
#if EFI_PROD_CODE
|
||||
|
@ -473,6 +468,8 @@ static bool isPrimeInjectionPulseSkipped(DECLARE_ENGINE_PARAMETER_SIGNATURE) {
|
|||
* See testStartOfCrankingPrimingPulse()
|
||||
*/
|
||||
void startPrimeInjectionPulse(DECLARE_ENGINE_PARAMETER_SIGNATURE) {
|
||||
INJECT_ENGINE_REFERENCE(&primeInjEvent);
|
||||
|
||||
// First, we need a protection against 'fake' ignition switch on and off (i.e. no engine started), to avoid repeated prime pulses.
|
||||
// So we check and update the ignition switch counter in non-volatile backup-RAM
|
||||
#if EFI_PROD_CODE
|
||||
|
@ -490,10 +487,6 @@ void startPrimeInjectionPulse(DECLARE_ENGINE_PARAMETER_SIGNATURE) {
|
|||
ignSwitchCounter = -1;
|
||||
// start prime injection if this is a 'fresh start'
|
||||
if (ignSwitchCounter == 0) {
|
||||
// fill-in the prime event struct
|
||||
#if EFI_UNIT_TEST
|
||||
primeInjEvent.engine = engine;
|
||||
#endif /* EFI_UNIT_TEST */
|
||||
primeInjEvent.ownIndex = 0;
|
||||
primeInjEvent.isSimultanious = true;
|
||||
|
||||
|
@ -535,7 +528,7 @@ void updatePrimeInjectionPulseState(DECLARE_ENGINE_PARAMETER_SIGNATURE) {
|
|||
static void showMainInfo(Engine *engine) {
|
||||
#if EFI_PROD_CODE
|
||||
int rpm = GET_RPM();
|
||||
float el = getEngineLoadT(PASS_ENGINE_PARAMETER_SIGNATURE);
|
||||
float el = getFuelingLoad(PASS_ENGINE_PARAMETER_SIGNATURE);
|
||||
scheduleMsg(logger, "rpm %d engine_load %.2f", rpm, el);
|
||||
scheduleMsg(logger, "fuel %.2fms timing %.2f", getInjectionDuration(rpm PASS_ENGINE_PARAMETER_SUFFIX), engine->engineState.timingAdvance);
|
||||
#endif /* EFI_PROD_CODE */
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// this section was generated automatically by rusEfi tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Wed Jul 22 19:40:59 UTC 2020
|
||||
// this section was generated automatically by rusEfi tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Tue Jul 28 13:12:08 UTC 2020
|
||||
// by class com.rusefi.output.CHeaderConsumer
|
||||
// begin
|
||||
#pragma once
|
||||
|
@ -832,7 +832,7 @@ struct engine_configuration_s {
|
|||
*/
|
||||
float knockBandCustom;
|
||||
/**
|
||||
* On single-coil or wasted spark setups you have to lower dwell at high RPM
|
||||
* On Single Coil or Wasted Spark setups you have to lower dwell at high RPM
|
||||
* offset 332
|
||||
*/
|
||||
float sparkDwellRpmBins[DWELL_CURVE_SIZE];
|
||||
|
@ -892,7 +892,7 @@ struct engine_configuration_s {
|
|||
*/
|
||||
angle_t crankingTimingAngle;
|
||||
/**
|
||||
* "One Coil" is for use on distributed ignition system. "Individual Coils" is to be used when you have one coil per cylinder (COP or similar). "Wasted" means one coil is driving two spark plugs in two cylinders, with one of the sparks not doing anything since it's happening on the exhaust cycle
|
||||
* "Single Coil" is for use on distributed ignition system. "Individual Coils" is to be used when you have one coil per cylinder (COP or similar). "Wasted Spark" means one coil is driving two spark plugs in two cylinders, with one of the sparks not doing anything since it's happening on the exhaust cycle
|
||||
* set ignition_mode X
|
||||
* offset 440
|
||||
*/
|
||||
|
@ -1460,8 +1460,8 @@ struct engine_configuration_s {
|
|||
offset 744 bit 26 */
|
||||
bool is_enabled_spi_4 : 1;
|
||||
/**
|
||||
* Disable the electronic throttle motor for testing.
|
||||
* This mode is for testing ETB position sensors, etc without actually driving the throttle.
|
||||
* Disable the electronic throttle motor and DC idle motor for testing.
|
||||
* This mode is for testing ETB/DC idle position sensors, etc without actually driving the throttle.
|
||||
offset 744 bit 27 */
|
||||
bool pauseEtbControl : 1;
|
||||
/**
|
||||
|
@ -1759,8 +1759,11 @@ struct engine_configuration_s {
|
|||
offset 976 bit 10 */
|
||||
bool stftIgnoreErrorMagnitude : 1;
|
||||
/**
|
||||
* Used on some German vehicles around late 90s: cable-operated throttle and DC motor idle air valve.
|
||||
* Set the primary TPS to the cable-operated throttle's sensor
|
||||
* Set the secondary TPS to the mini ETB's position sensor(s).
|
||||
offset 976 bit 11 */
|
||||
bool unusedBit_251_11 : 1;
|
||||
bool dcMotorIdleValve : 1;
|
||||
/**
|
||||
offset 976 bit 12 */
|
||||
bool unusedBit_251_12 : 1;
|
||||
|
@ -2140,7 +2143,7 @@ struct engine_configuration_s {
|
|||
offset 1476 bit 14 */
|
||||
bool useOnlyRisingEdgeForTrigger : 1;
|
||||
/**
|
||||
* This is needed if your coils are individually wired (COP) and you wish to use batch ignition (wasted spark).
|
||||
* This is needed if your coils are individually wired (COP) and you wish to use batch ignition (Wasted Spark).
|
||||
offset 1476 bit 15 */
|
||||
bool twoWireBatchIgnition : 1;
|
||||
/**
|
||||
|
@ -3530,4 +3533,4 @@ struct persistent_config_s {
|
|||
typedef struct persistent_config_s persistent_config_s;
|
||||
|
||||
// end
|
||||
// this section was generated automatically by rusEfi tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Wed Jul 22 19:40:59 UTC 2020
|
||||
// this section was generated automatically by rusEfi tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Tue Jul 28 13:12:08 UTC 2020
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// this file was generated automatically by rusEfi tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Wed Jul 22 19:40:59 UTC 2020
|
||||
// this file was generated automatically by rusEfi tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Tue Jul 28 13:12:08 UTC 2020
|
||||
|
||||
// by class com.rusefi.output.FileFsioSettingsConsumer
|
||||
FSIO_SETTING_FANONTEMPERATURE = 1000,
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// this file was generated automatically by rusEfi tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Wed Jul 22 19:40:59 UTC 2020
|
||||
// this file was generated automatically by rusEfi tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Tue Jul 28 13:12:08 UTC 2020
|
||||
|
||||
// by class com.rusefi.output.FileFsioSettingsConsumer
|
||||
case FSIO_SETTING_FANONTEMPERATURE:
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// this file was generated automatically by rusEfi tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Wed Jul 22 19:40:59 UTC 2020
|
||||
// this file was generated automatically by rusEfi tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Tue Jul 28 13:12:08 UTC 2020
|
||||
|
||||
// by class com.rusefi.output.FileFsioSettingsConsumer
|
||||
static LENameOrdinalPair lefanOnTemperature(FSIO_SETTING_FANONTEMPERATURE, "cfg_fanOnTemperature");
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// this file was generated automatically by rusEfi tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Wed Jul 22 19:40:59 UTC 2020
|
||||
// this file was generated automatically by rusEfi tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Tue Jul 28 13:12:08 UTC 2020
|
||||
|
||||
// by class com.rusefi.output.FileFsioSettingsConsumer
|
||||
case FSIO_SETTING_FANONTEMPERATURE:
|
||||
|
|
|
@ -276,6 +276,7 @@
|
|||
#define cutSparkOnHardLimit_offset 1464
|
||||
#define cylinderBore_offset 408
|
||||
#define cylindersCount_offset 400
|
||||
#define dcMotorIdleValve_offset 976
|
||||
#define debug_mode_e_enum "Alternator PID", "TPS acceleration enrichment", "INVALID", "Idle Control", "Engine Load accl enrich", "Trigger Counters", "FSIO_ADC", "AUX_PID_1", "VVT input", "Cranking", "Timing", "Closed-loop fuel corr PID", "VSS", "SD card", "sr5", "Knock", "mode16", "Electronic Throttle", "Executor", "Bench Test / TS commands", "Aux Valves", "Analog inputs #1", "INSTANT_RPM", "FSIO_EXPRESSION_1_7", "Status", "CJ125", "CAN", "MAP", "Metrics", "ETB#2", "Ion Sense", "TLE8888", "Analog inputs #2", "Dwell Metric", "INVALID", "ETB Logic", "Boost Control", "Start/Stop", "Launch", "ETB Autotune", "FSIO_COMPOSITE_LOG", "FSIO_EXPRESSION_8_14", "FSIO_SPECIAL", "Mode43", "Mode44"
|
||||
#define debugMapAveraging_offset 807
|
||||
#define debugMode_offset 2092
|
||||
|
@ -304,7 +305,7 @@
|
|||
#define enableLaunchRetard_offset 976
|
||||
#define enableVerboseCanTx_offset 744
|
||||
#define engine_configuration_s_size 6000
|
||||
#define engine_load_mode_e_enum "MAF", "Alpha-N/TPS", "INVALID", "SPEED DENSITY", "MAF Air Charge", "INVALID", "INVALID"
|
||||
#define engine_load_mode_e_enum "MAF", "Alpha-N/TPS", "INVALID", "Speed Density", "MAF Air Charge", "Alpha-N", "INVALID"
|
||||
#define ENGINE_MAKE_BMW "BMW"
|
||||
#define ENGINE_MAKE_GM "GM"
|
||||
#define ENGINE_MAKE_LADA "Lada"
|
||||
|
@ -658,7 +659,7 @@
|
|||
#define gppwm4_pwmFrequency_offset 4410
|
||||
#define gppwm4_rpmBins_offset 4424
|
||||
#define gppwm4_table_offset 4432
|
||||
#define gppwm_channel_e_enum "TPS", "MAP", "CLT", "IAT"
|
||||
#define gppwm_channel_e_enum "TPS", "MAP", "CLT", "IAT", "Fuel Load", "Ignition Load", "INVALID", "INVALID"
|
||||
#define gppwm_channel_size 88
|
||||
#define GPPWM_CHANNELS 4
|
||||
#define GPPWM_LOAD_COUNT 8
|
||||
|
@ -1074,8 +1075,8 @@
|
|||
#define showHumanReadableWarning_offset 976
|
||||
#define showSdCardWarning_offset 76
|
||||
#define SIGNATURE_BOARD all
|
||||
#define SIGNATURE_DATE 2020.07.22
|
||||
#define SIGNATURE_HASH 692540479
|
||||
#define SIGNATURE_DATE 2020.07.28
|
||||
#define SIGNATURE_HASH 1542883429
|
||||
#define silentTriggerError_offset 1464
|
||||
#define slowAdcAlpha_offset 2088
|
||||
#define sparkDwellRpmBins_offset 332
|
||||
|
@ -1343,7 +1344,7 @@
|
|||
#define ts_show_spi true
|
||||
#define ts_show_trigger_comparator false
|
||||
#define ts_show_tunerstudio_port true
|
||||
#define TS_SIGNATURE "rusEFI 2020.07.22.all.692540479"
|
||||
#define TS_SIGNATURE "rusEFI 2020.07.28.all.1542883429"
|
||||
#define TS_SINGLE_WRITE_COMMAND 'W'
|
||||
#define tunerStudioSerialSpeed_offset 728
|
||||
#define twoWireBatchIgnition_offset 1476
|
||||
|
@ -1378,7 +1379,6 @@
|
|||
#define unusedAuxVoltage1_TODO_332_offset 2713
|
||||
#define unusedAuxVoltage2_TODO_332_offset 2714
|
||||
#define unusedBit4_1476_offset 1476
|
||||
#define unusedBit_251_11_offset 976
|
||||
#define unusedBit_251_12_offset 976
|
||||
#define unusedBit_251_13_offset 976
|
||||
#define unusedBit_251_14_offset 976
|
||||
|
|
|
@ -3,6 +3,6 @@
|
|||
//
|
||||
|
||||
#define SIGNATURE_BOARD all
|
||||
#define SIGNATURE_DATE 2020.07.22
|
||||
#define SIGNATURE_HASH 692540479
|
||||
#define TS_SIGNATURE "rusEFI 2020.07.22.all.692540479"
|
||||
#define SIGNATURE_DATE 2020.07.28
|
||||
#define SIGNATURE_HASH 1542883429
|
||||
#define TS_SIGNATURE "rusEFI 2020.07.28.all.1542883429"
|
||||
|
|
|
@ -3,6 +3,6 @@
|
|||
//
|
||||
|
||||
#define SIGNATURE_BOARD frankenso_na6
|
||||
#define SIGNATURE_DATE 2020.07.22
|
||||
#define SIGNATURE_HASH 4156569820
|
||||
#define TS_SIGNATURE "rusEFI 2020.07.22.frankenso_na6.4156569820"
|
||||
#define SIGNATURE_DATE 2020.07.28
|
||||
#define SIGNATURE_HASH 2238833798
|
||||
#define TS_SIGNATURE "rusEFI 2020.07.28.frankenso_na6.2238833798"
|
||||
|
|
|
@ -3,6 +3,6 @@
|
|||
//
|
||||
|
||||
#define SIGNATURE_BOARD kin
|
||||
#define SIGNATURE_DATE 2020.07.22
|
||||
#define SIGNATURE_HASH 3833170085
|
||||
#define TS_SIGNATURE "rusEFI 2020.07.22.kin.3833170085"
|
||||
#define SIGNATURE_DATE 2020.07.28
|
||||
#define SIGNATURE_HASH 2529711359
|
||||
#define TS_SIGNATURE "rusEFI 2020.07.28.kin.2529711359"
|
||||
|
|
|
@ -3,6 +3,6 @@
|
|||
//
|
||||
|
||||
#define SIGNATURE_BOARD mre_f4
|
||||
#define SIGNATURE_DATE 2020.07.22
|
||||
#define SIGNATURE_HASH 1622770353
|
||||
#define TS_SIGNATURE "rusEFI 2020.07.22.mre_f4.1622770353"
|
||||
#define SIGNATURE_DATE 2020.07.28
|
||||
#define SIGNATURE_HASH 302538475
|
||||
#define TS_SIGNATURE "rusEFI 2020.07.28.mre_f4.302538475"
|
||||
|
|
|
@ -3,6 +3,6 @@
|
|||
//
|
||||
|
||||
#define SIGNATURE_BOARD mre_f7
|
||||
#define SIGNATURE_DATE 2020.07.22
|
||||
#define SIGNATURE_HASH 1622770353
|
||||
#define TS_SIGNATURE "rusEFI 2020.07.22.mre_f7.1622770353"
|
||||
#define SIGNATURE_DATE 2020.07.28
|
||||
#define SIGNATURE_HASH 302538475
|
||||
#define TS_SIGNATURE "rusEFI 2020.07.28.mre_f7.302538475"
|
||||
|
|
|
@ -3,6 +3,6 @@
|
|||
//
|
||||
|
||||
#define SIGNATURE_BOARD prometheus_405
|
||||
#define SIGNATURE_DATE 2020.07.22
|
||||
#define SIGNATURE_HASH 3696987323
|
||||
#define TS_SIGNATURE "rusEFI 2020.07.22.prometheus_405.3696987323"
|
||||
#define SIGNATURE_DATE 2020.07.28
|
||||
#define SIGNATURE_HASH 2934591713
|
||||
#define TS_SIGNATURE "rusEFI 2020.07.28.prometheus_405.2934591713"
|
||||
|
|
|
@ -3,6 +3,6 @@
|
|||
//
|
||||
|
||||
#define SIGNATURE_BOARD prometheus_469
|
||||
#define SIGNATURE_DATE 2020.07.22
|
||||
#define SIGNATURE_HASH 3696987323
|
||||
#define TS_SIGNATURE "rusEFI 2020.07.22.prometheus_469.3696987323"
|
||||
#define SIGNATURE_DATE 2020.07.28
|
||||
#define SIGNATURE_HASH 2934591713
|
||||
#define TS_SIGNATURE "rusEFI 2020.07.28.prometheus_469.2934591713"
|
||||
|
|
|
@ -3,6 +3,6 @@
|
|||
//
|
||||
|
||||
#define SIGNATURE_BOARD proteus_f4
|
||||
#define SIGNATURE_DATE 2020.07.22
|
||||
#define SIGNATURE_HASH 2765497840
|
||||
#define TS_SIGNATURE "rusEFI 2020.07.22.proteus_f4.2765497840"
|
||||
#define SIGNATURE_DATE 2020.07.28
|
||||
#define SIGNATURE_HASH 3597138346
|
||||
#define TS_SIGNATURE "rusEFI 2020.07.28.proteus_f4.3597138346"
|
||||
|
|
|
@ -3,6 +3,6 @@
|
|||
//
|
||||
|
||||
#define SIGNATURE_BOARD proteus_f7
|
||||
#define SIGNATURE_DATE 2020.07.22
|
||||
#define SIGNATURE_HASH 2765497840
|
||||
#define TS_SIGNATURE "rusEFI 2020.07.22.proteus_f7.2765497840"
|
||||
#define SIGNATURE_DATE 2020.07.28
|
||||
#define SIGNATURE_HASH 3597138346
|
||||
#define TS_SIGNATURE "rusEFI 2020.07.28.proteus_f7.3597138346"
|
||||
|
|
|
@ -84,7 +84,7 @@ float fuelClosedLoopCorrection(DECLARE_ENGINE_PARAMETER_SIGNATURE) {
|
|||
return 1.0f;
|
||||
}
|
||||
|
||||
size_t binIdx = computeStftBin(GET_RPM(), getEngineLoadT(PASS_ENGINE_PARAMETER_SIGNATURE), CONFIG(stft));
|
||||
size_t binIdx = computeStftBin(GET_RPM(), getFuelingLoad(PASS_ENGINE_PARAMETER_SIGNATURE), CONFIG(stft));
|
||||
|
||||
#if EFI_TUNER_STUDIO
|
||||
if (engineConfiguration->debugMode == DBG_FUEL_PID_CORRECTION) {
|
||||
|
|
|
@ -68,6 +68,7 @@ float getEngineLoadT(DECLARE_ENGINE_PARAMETER_SIGNATURE) {
|
|||
case LM_SPEED_DENSITY:
|
||||
return getMap(PASS_ENGINE_PARAMETER_SIGNATURE);
|
||||
case LM_ALPHA_N:
|
||||
case LM_ALPHA_N_2:
|
||||
return Sensor::get(SensorType::Tps1).value_or(0);
|
||||
case LM_REAL_MAF:
|
||||
return getRealMaf(PASS_ENGINE_PARAMETER_SIGNATURE);
|
||||
|
@ -96,151 +97,6 @@ void setSingleCoilDwell(DECLARE_CONFIG_PARAMETER_SIGNATURE) {
|
|||
engineConfiguration->sparkDwellValues[7] = 0;
|
||||
}
|
||||
|
||||
#if EFI_ENGINE_CONTROL
|
||||
|
||||
FuelSchedule::FuelSchedule() {
|
||||
clear();
|
||||
for (int cylinderIndex = 0; cylinderIndex < MAX_INJECTION_OUTPUT_COUNT; cylinderIndex++) {
|
||||
InjectionEvent *ev = &elements[cylinderIndex];
|
||||
ev->ownIndex = cylinderIndex;
|
||||
}
|
||||
}
|
||||
|
||||
void FuelSchedule::clear() {
|
||||
isReady = false;
|
||||
}
|
||||
|
||||
void FuelSchedule::resetOverlapping() {
|
||||
for (size_t i = 0; i < efi::size(enginePins.injectors); i++) {
|
||||
enginePins.injectors[i].reset();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @returns false in case of error, true if success
|
||||
*/
|
||||
bool FuelSchedule::addFuelEventsForCylinder(int i DECLARE_ENGINE_PARAMETER_SUFFIX) {
|
||||
efiAssert(CUSTOM_ERR_ASSERT, engine!=NULL, "engine is NULL", false);
|
||||
|
||||
floatus_t oneDegreeUs = ENGINE(rpmCalculator.oneDegreeUs); // local copy
|
||||
if (cisnan(oneDegreeUs)) {
|
||||
// in order to have fuel schedule we need to have current RPM
|
||||
// wonder if this line slows engine startup?
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* injection phase is scheduled by injection end, so we need to step the angle back
|
||||
* for the duration of the injection
|
||||
*
|
||||
* todo: since this method is not invoked within trigger event handler and
|
||||
* engineState.injectionOffset is calculated from the same utility timer should we more that logic here?
|
||||
*/
|
||||
floatms_t fuelMs = ENGINE(injectionDuration);
|
||||
efiAssert(CUSTOM_ERR_ASSERT, !cisnan(fuelMs), "NaN fuelMs", false);
|
||||
angle_t injectionDuration = MS2US(fuelMs) / oneDegreeUs;
|
||||
efiAssert(CUSTOM_ERR_ASSERT, !cisnan(injectionDuration), "NaN injectionDuration", false);
|
||||
assertAngleRange(injectionDuration, "injectionDuration_r", CUSTOM_INJ_DURATION);
|
||||
floatus_t injectionOffset = ENGINE(engineState.injectionOffset);
|
||||
if (cisnan(injectionOffset)) {
|
||||
// injection offset map not ready - we are not ready to schedule fuel events
|
||||
return false;
|
||||
}
|
||||
angle_t baseAngle = injectionOffset - injectionDuration;
|
||||
efiAssert(CUSTOM_ERR_ASSERT, !cisnan(baseAngle), "NaN baseAngle", false);
|
||||
assertAngleRange(baseAngle, "baseAngle_r", CUSTOM_ERR_6554);
|
||||
|
||||
injection_mode_e mode = engine->getCurrentInjectionMode(PASS_ENGINE_PARAMETER_SIGNATURE);
|
||||
|
||||
int injectorIndex;
|
||||
if (mode == IM_SIMULTANEOUS || mode == IM_SINGLE_POINT) {
|
||||
// These modes only have one injector
|
||||
injectorIndex = 0;
|
||||
} else if (mode == IM_SEQUENTIAL || (mode == IM_BATCH && CONFIG(twoWireBatchInjection))) {
|
||||
// Map order index -> cylinder index (firing order)
|
||||
injectorIndex = getCylinderId(i PASS_ENGINE_PARAMETER_SUFFIX) - 1;
|
||||
} else if (mode == IM_BATCH) {
|
||||
// Loop over the first half of the firing order twice
|
||||
injectorIndex = i % (engineConfiguration->specs.cylindersCount / 2);
|
||||
} else {
|
||||
firmwareError(CUSTOM_OBD_UNEXPECTED_INJECTION_MODE, "Unexpected injection mode %d", mode);
|
||||
injectorIndex = 0;
|
||||
}
|
||||
|
||||
assertAngleRange(baseAngle, "addFbaseAngle", CUSTOM_ADD_BASE);
|
||||
|
||||
int cylindersCount = CONFIG(specs.cylindersCount);
|
||||
if (cylindersCount < 1) {
|
||||
// May 2020 this somehow still happens with functional tests, maybe race condition?
|
||||
warning(CUSTOM_OBD_ZERO_CYLINDER_COUNT, "Invalid cylinder count: %d", cylindersCount);
|
||||
return false;
|
||||
}
|
||||
|
||||
float angle = baseAngle
|
||||
+ i * ENGINE(engineCycle) / cylindersCount;
|
||||
|
||||
InjectorOutputPin *secondOutput;
|
||||
if (mode == IM_BATCH && CONFIG(twoWireBatchInjection)) {
|
||||
/**
|
||||
* also fire the 2nd half of the injectors so that we can implement a batch mode on individual wires
|
||||
*/
|
||||
// Compute the position of this cylinder's twin in the firing order
|
||||
// Each injector gets fired as a primary (the same as sequential), but also
|
||||
// fires the injector 360 degrees later in the firing order.
|
||||
int secondOrder = (i + (CONFIG(specs.cylindersCount) / 2)) % CONFIG(specs.cylindersCount);
|
||||
int secondIndex = getCylinderId(secondOrder PASS_ENGINE_PARAMETER_SUFFIX) - 1;
|
||||
secondOutput = &enginePins.injectors[secondIndex];
|
||||
} else {
|
||||
secondOutput = nullptr;
|
||||
}
|
||||
|
||||
InjectorOutputPin *output = &enginePins.injectors[injectorIndex];
|
||||
bool isSimultanious = mode == IM_SIMULTANEOUS;
|
||||
|
||||
if (!isSimultanious && !output->isInitialized()) {
|
||||
// todo: extract method for this index math
|
||||
warning(CUSTOM_OBD_INJECTION_NO_PIN_ASSIGNED, "no_pin_inj #%s", output->name);
|
||||
}
|
||||
|
||||
InjectionEvent *ev = &elements[i];
|
||||
ev->ownIndex = i;
|
||||
INJECT_ENGINE_REFERENCE(ev);
|
||||
fixAngle(angle, "addFuel#1", CUSTOM_ERR_6554);
|
||||
|
||||
ev->outputs[0] = output;
|
||||
ev->outputs[1] = secondOutput;
|
||||
|
||||
ev->isSimultanious = isSimultanious;
|
||||
|
||||
if (TRIGGER_WAVEFORM(getSize()) < 1) {
|
||||
warning(CUSTOM_ERR_NOT_INITIALIZED_TRIGGER, "uninitialized TriggerWaveform");
|
||||
return false;
|
||||
}
|
||||
|
||||
efiAssert(CUSTOM_ERR_ASSERT, !cisnan(angle), "findAngle#3", false);
|
||||
assertAngleRange(angle, "findAngle#a33", CUSTOM_ERR_6544);
|
||||
ev->injectionStart.setAngle(angle PASS_ENGINE_PARAMETER_SUFFIX);
|
||||
#if EFI_UNIT_TEST
|
||||
printf("registerInjectionEvent angle=%.2f trgIndex=%d inj %d\r\n", angle, ev->injectionStart.triggerEventIndex, injectorIndex);
|
||||
#endif
|
||||
return true;
|
||||
}
|
||||
|
||||
void FuelSchedule::addFuelEvents(DECLARE_ENGINE_PARAMETER_SIGNATURE) {
|
||||
clear();
|
||||
|
||||
for (int cylinderIndex = 0; cylinderIndex < CONFIG(specs.cylindersCount); cylinderIndex++) {
|
||||
InjectionEvent *ev = &elements[cylinderIndex];
|
||||
ev->ownIndex = cylinderIndex; // todo: is this assignment needed here? we now initialize in constructor
|
||||
bool result = addFuelEventsForCylinder(cylinderIndex PASS_ENGINE_PARAMETER_SUFFIX);
|
||||
if (!result)
|
||||
return;
|
||||
}
|
||||
isReady = true;
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
static floatms_t getCrankingSparkDwell(DECLARE_ENGINE_PARAMETER_SIGNATURE) {
|
||||
if (engineConfiguration->useConstantDwellDuringCranking) {
|
||||
return engineConfiguration->ignitionDwellForCrankingMs;
|
||||
|
|
|
@ -112,42 +112,6 @@ temperature_t getTCharge(int rpm, float tps DECLARE_ENGINE_PARAMETER_SUFFIX) {
|
|||
return Tcharge;
|
||||
}
|
||||
|
||||
AirmassResult getSpeedDensityAirmass(DECLARE_ENGINE_PARAMETER_SIGNATURE) {
|
||||
ScopePerf perf(PE::GetSpeedDensityFuel);
|
||||
|
||||
/**
|
||||
* most of the values are pre-calculated for performance reasons
|
||||
*/
|
||||
float tChargeK = ENGINE(engineState.sd.tChargeK);
|
||||
if (cisnan(tChargeK)) {
|
||||
warning(CUSTOM_ERR_TCHARGE_NOT_READY2, "tChargeK not ready"); // this would happen before we have CLT reading for example
|
||||
return {};
|
||||
}
|
||||
|
||||
float map = getMap(PASS_ENGINE_PARAMETER_SIGNATURE);
|
||||
efiAssert(CUSTOM_ERR_ASSERT, !cisnan(map), "NaN map", {});
|
||||
|
||||
engine->engineState.sd.manifoldAirPressureAccelerationAdjustment = engine->engineLoadAccelEnrichment.getEngineLoadEnrichment(PASS_ENGINE_PARAMETER_SIGNATURE);
|
||||
|
||||
float adjustedMap = engine->engineState.sd.adjustedManifoldAirPressure = map + engine->engineState.sd.manifoldAirPressureAccelerationAdjustment;
|
||||
efiAssert(CUSTOM_ERR_ASSERT, !cisnan(adjustedMap), "NaN adjustedMap", {});
|
||||
|
||||
float airMass = SpeedDensityBase::getAirmassImpl(ENGINE(engineState.currentBaroCorrectedVE), adjustedMap, tChargeK PASS_ENGINE_PARAMETER_SUFFIX);
|
||||
if (cisnan(airMass)) {
|
||||
warning(CUSTOM_ERR_6685, "NaN airMass");
|
||||
return {};
|
||||
}
|
||||
#if EFI_PRINTF_FUEL_DETAILS
|
||||
printf("getSpeedDensityAirmass map=%.2f adjustedMap=%.2f airMass=%.2f\t\n",
|
||||
map, adjustedMap, engine->engineState.sd.adjustedManifoldAirPressure);
|
||||
#endif /*EFI_PRINTF_FUEL_DETAILS */
|
||||
|
||||
return {
|
||||
airMass,
|
||||
map, // AFR/VE table Y axis
|
||||
};
|
||||
}
|
||||
|
||||
void setDefaultVETable(DECLARE_ENGINE_PARAMETER_SIGNATURE) {
|
||||
setRpmTableBin(config->veRpmBins, FUEL_RPM_COUNT);
|
||||
veMap.setAll(80);
|
||||
|
|
|
@ -18,4 +18,3 @@ temperature_t getTCharge(int rpm, float tps DECLARE_ENGINE_PARAMETER_SUFFIX);
|
|||
|
||||
void setDefaultVETable(DECLARE_ENGINE_PARAMETER_SIGNATURE);
|
||||
void initSpeedDensity(DECLARE_ENGINE_PARAMETER_SIGNATURE);
|
||||
AirmassResult getSpeedDensityAirmass(DECLARE_ENGINE_PARAMETER_SIGNATURE);
|
||||
|
|
|
@ -1261,7 +1261,7 @@ const command_i_s commandsI[] = {{"ignition_mode", setIgnitionMode},
|
|||
{"can_vss", setCanVss},
|
||||
#endif /* EFI_CAN_SUPPORT */
|
||||
#if EFI_IDLE_CONTROL
|
||||
{"idle_position", setIdleValvePosition},
|
||||
{"idle_position", setManualIdleValvePosition},
|
||||
{"idle_rpm", setTargetIdleRpm},
|
||||
{"idle_dt", setIdleDT},
|
||||
#endif /* EFI_IDLE_CONTROL */
|
||||
|
|
|
@ -323,7 +323,10 @@ bool OutputPin::getAndSet(int logicValue) {
|
|||
}
|
||||
|
||||
void OutputPin::setValue(int logicValue) {
|
||||
ScopePerf perf(PE::OutputPinSetValue);
|
||||
#if ENABLE_PERF_TRACE
|
||||
// todo: https://github.com/rusefi/rusefi/issues/1638
|
||||
// ScopePerf perf(PE::OutputPinSetValue);
|
||||
#endif // ENABLE_PERF_TRACE
|
||||
|
||||
#if EFI_PROD_CODE
|
||||
efiAssertVoid(CUSTOM_ERR_6621, modePtr!=NULL, "pin mode not initialized");
|
||||
|
|
|
@ -18,6 +18,9 @@
|
|||
! rename the bit or substitute unused integer with any new fields of the same size
|
||||
! invoke gen_config.bat to apply the tools which would generate .h and .ini files
|
||||
!
|
||||
! Q: Which files to include into Pull Requests?
|
||||
! A: Please only include source files (.txt and .input) into a PR, we have amazing GitHub Actions which would do the rest really
|
||||
! really nicely!
|
||||
!
|
||||
! each field is declared as
|
||||
! type name;comment
|
||||
|
@ -289,8 +292,8 @@ struct spi_pins
|
|||
end_struct
|
||||
|
||||
|
||||
#define gppwm_channel_e_enum "TPS", "MAP", "CLT", "IAT"
|
||||
custom gppwm_channel_e 1 bits, U08, @OFFSET@, [0:1], @@gppwm_channel_e_enum@@
|
||||
#define gppwm_channel_e_enum "TPS", "MAP", "CLT", "IAT", "Fuel Load", "Ignition Load", "INVALID", "INVALID"
|
||||
custom gppwm_channel_e 1 bits, U08, @OFFSET@, [0:2], @@gppwm_channel_e_enum@@
|
||||
|
||||
struct gppwm_channel
|
||||
output_pin_e pin;+Select a pin to use for PWM or on-off output.;
|
||||
|
@ -432,7 +435,7 @@ ThermistorConf iat;
|
|||
float knockBandCustom;+We calculate knock band based of cylinderBore\n Use this to override - kHz knock band override;"kHz", 1, 0.0, 0.0, 10.0, 2
|
||||
|
||||
|
||||
float[DWELL_CURVE_SIZE] sparkDwellRpmBins;On single-coil or wasted spark setups you have to lower dwell at high RPM;"RPM", 1, 0.0, 0.0, 18000, 2
|
||||
float[DWELL_CURVE_SIZE] sparkDwellRpmBins;On Single Coil or Wasted Spark setups you have to lower dwell at high RPM;"RPM", 1, 0.0, 0.0, 18000, 2
|
||||
float[DWELL_CURVE_SIZE] sparkDwellValues;;"ms", 1, 0.0, 0.0, 30.0, 2
|
||||
|
||||
struct_no_prefix specs_s
|
||||
|
@ -456,8 +459,7 @@ end_struct
|
|||
int sensorSnifferRpmThreshold;+Disable sensor sniffer above this rpm;"RPM", 1, 0, 0,30000, 0
|
||||
int rpmHardLimit;set rpm_hard_limit X;"rpm", 1, 0, 0, 20000.0, 2
|
||||
|
||||
|
||||
#define engine_load_mode_e_enum "INVALID", "Alpha-N/TPS", "INVALID", "SPEED DENSITY", "MAF Air Charge", "INVALID", "INVALID"
|
||||
#define engine_load_mode_e_enum "INVALID", "Alpha-N/TPS", "INVALID", "Speed Density", "MAF Air Charge", "Alpha-N", "INVALID"
|
||||
|
||||
|
||||
custom engine_load_mode_e 4 bits, U32, @OFFSET@, [0:2], @@engine_load_mode_e_enum@@
|
||||
|
@ -470,8 +472,8 @@ injection_mode_e injectionMode;+This is where the fuel injection type is defined
|
|||
angle_t extraInjectionOffset;+this is about deciding when the injector starts it's squirt\nSee also injectionPhase map\ntodo: do we need even need this since we have the map anyway?;"deg", 1, 0.0, -720, 720, 2
|
||||
angle_t crankingTimingAngle;+Ignition advance angle used during engine cranking, 5-10 degrees will work as a base setting for most engines.\nset cranking_timing_angle X; "deg", 1, 0.0, -360, 360, 2
|
||||
|
||||
custom ignition_mode_e 4 bits, U32, @OFFSET@, [0:1], "One coil", "Individual Coils", "Wasted", "Two distributors"
|
||||
ignition_mode_e ignitionMode;+"One Coil" is for use on distributed ignition system. "Individual Coils" is to be used when you have one coil per cylinder (COP or similar). "Wasted" means one coil is driving two spark plugs in two cylinders, with one of the sparks not doing anything since it's happening on the exhaust cycle\nset ignition_mode X
|
||||
custom ignition_mode_e 4 bits, U32, @OFFSET@, [0:1], "Single Coil", "Individual Coils", "Wasted Spark", "Two Distributors"
|
||||
ignition_mode_e ignitionMode;+"Single Coil" is for use on distributed ignition system. "Individual Coils" is to be used when you have one coil per cylinder (COP or similar). "Wasted Spark" means one coil is driving two spark plugs in two cylinders, with one of the sparks not doing anything since it's happening on the exhaust cycle\nset ignition_mode X
|
||||
|
||||
angle_t ignitionOffset;+this value could be used to offset the whole ignition timing table by a constant;"RPM", 1, 0, 0, 3000.0, 0
|
||||
|
||||
|
@ -707,7 +709,7 @@ bit is_enabled_spi_2
|
|||
bit useIdleTimingPidControl
|
||||
bit useTPSBasedVeTable
|
||||
bit is_enabled_spi_4
|
||||
bit pauseEtbControl;+Disable the electronic throttle motor for testing.\nThis mode is for testing ETB position sensors, etc without actually driving the throttle.
|
||||
bit pauseEtbControl;+Disable the electronic throttle motor and DC idle motor for testing.\nThis mode is for testing ETB/DC idle position sensors, etc without actually driving the throttle.
|
||||
bit alignEngineSnifferAtTDC
|
||||
bit useETBforIdleControl;+This setting allows the ETB to act as the idle air control valve and move to regulate the airflow at idle.
|
||||
bit idleIncrementalPidCic
|
||||
|
@ -826,7 +828,7 @@ custom maf_sensor_type_e 4 bits, S32, @OFFSET@, [0:1], @@maf_sensor_type_e_enum@
|
|||
bit enableInnovateLC2
|
||||
bit showHumanReadableWarning
|
||||
bit stftIgnoreErrorMagnitude;+If enabled, adjust at a constant rate instead of a rate proportional to the current lambda error. This mode may be easier to tune, and more tolerant of sensor noise. Use of this mode is required if you have a narrowband O2 sensor.;
|
||||
bit unusedBit_251_11
|
||||
bit dcMotorIdleValve;+Used on some German vehicles around late 90s: cable-operated throttle and DC motor idle air valve.\nSet the primary TPS to the cable-operated throttle's sensor\nSet the secondary TPS to the mini ETB's position sensor(s).
|
||||
bit unusedBit_251_12
|
||||
bit unusedBit_251_13
|
||||
bit unusedBit_251_14
|
||||
|
@ -950,7 +952,7 @@ custom idle_mode_e 4 bits, U32, @OFFSET@, [0:0], "Automatic", "Manual"
|
|||
bit isManualSpinningMode;Usually if we have no trigger events that means engine is stopped\nUnless we are troubleshooting and spinning the engine by hand - this case a longer\ndelay is needed
|
||||
bit twoWireBatchInjection;+This is needed if your coils are individually wired and you wish to use batch injection.\nenable two_wire_batch_injection
|
||||
bit useOnlyRisingEdgeForTrigger;+VR sensors are only precise on rising front\nenable trigger_only_front
|
||||
bit twoWireBatchIgnition;+This is needed if your coils are individually wired (COP) and you wish to use batch ignition (wasted spark).
|
||||
bit twoWireBatchIgnition;+This is needed if your coils are individually wired (COP) and you wish to use batch ignition (Wasted Spark).
|
||||
bit useFixedBaroCorrFromMap
|
||||
bit useSeparateAdvanceForCranking;+This activates a separate advance table for cranking conditions, this allows cranking advance to be RPM dependant.
|
||||
bit useAdvanceCorrectionsForCranking;+This enables the various ignition corrections during cranking (IAT, CLT, FSIO and PID idle).
|
||||
|
@ -1673,4 +1675,4 @@ end_struct
|
|||
#define show_test_presets true
|
||||
#define show_Frankenso_presets true
|
||||
#define show_microRusEFI_presets true
|
||||
#define show_Proteus_presets true
|
||||
#define show_Proteus_presets true
|
||||
|
|
Binary file not shown.
|
@ -33,12 +33,12 @@ enable2ndByteCanID = false
|
|||
|
||||
[MegaTune]
|
||||
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
|
||||
signature = "rusEFI 2020.07.22.all.692540479"
|
||||
signature = "rusEFI 2020.07.28.all.1542883429"
|
||||
|
||||
[TunerStudio]
|
||||
queryCommand = "S"
|
||||
versionInfo = "V" ; firmwave version for title bar.
|
||||
signature = "rusEFI 2020.07.22.all.692540479" ; signature is expected to be 7 or more characters.
|
||||
signature = "rusEFI 2020.07.28.all.1542883429" ; signature is expected to be 7 or more characters.
|
||||
|
||||
[Constants]
|
||||
; new packet serial format with CRC
|
||||
|
@ -76,7 +76,7 @@ enable2ndByteCanID = false
|
|||
|
||||
; see PAGE_0_SIZE in C source code
|
||||
; CONFIG_DEFINITION_START
|
||||
; this section was generated automatically by rusEfi tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Wed Jul 22 19:40:59 UTC 2020
|
||||
; this section was generated automatically by rusEfi tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Tue Jul 28 13:12:08 UTC 2020
|
||||
|
||||
pageSize = 20000
|
||||
page = 1
|
||||
|
@ -166,12 +166,12 @@ page = 1
|
|||
cylinderBore = scalar, F32, 408, "mm", 1, 0, 0, 20000.0, 2
|
||||
sensorSnifferRpmThreshold = scalar, S32, 412, "RPM", 1, 0, 0,30000, 0
|
||||
rpmHardLimit = scalar, S32, 416, "rpm", 1, 0, 0, 20000.0, 2
|
||||
fuelAlgorithm = bits, U32, 420, [0:2], "MAF", "Alpha-N/TPS", "INVALID", "SPEED DENSITY", "MAF Air Charge", "INVALID", "INVALID", "INVALID"
|
||||
fuelAlgorithm = bits, U32, 420, [0:2], "MAF", "Alpha-N/TPS", "INVALID", "Speed Density", "MAF Air Charge", "Alpha-N", "INVALID", "INVALID"
|
||||
crankingInjectionMode = bits, U32, 424, [0:1], "Simultaneous", "Sequential", "Batch", "Single Point"
|
||||
injectionMode = bits, U32, 428, [0:1], "Simultaneous", "Sequential", "Batch", "Single Point"
|
||||
extraInjectionOffset = scalar, F32, 432, "deg", 1, 0.0, -720, 720, 2
|
||||
crankingTimingAngle = scalar, F32, 436, "deg", 1, 0.0, -360, 360, 2
|
||||
ignitionMode = bits, U32, 440, [0:1], "One coil", "Individual Coils", "Wasted", "Two distributors"
|
||||
ignitionMode = bits, U32, 440, [0:1], "Single Coil", "Individual Coils", "Wasted Spark", "Two Distributors"
|
||||
ignitionOffset = scalar, F32, 444, "RPM", 1, 0, 0, 3000.0, 0
|
||||
timingMode = bits, U32, 448 [0:0], "dynamic", "fixed"
|
||||
fixedModeTiming = scalar, F32, 452, "RPM", 1, 0, 0, 3000.0, 0
|
||||
|
@ -541,7 +541,7 @@ page = 1
|
|||
enableInnovateLC2 = bits, U32, 976, [8:8], "false", "true"
|
||||
showHumanReadableWarning= bits, U32, 976, [9:9], "false", "true"
|
||||
stftIgnoreErrorMagnitude= bits, U32, 976, [10:10], "false", "true"
|
||||
unusedBit_251_11 = bits, U32, 976, [11:11], "false", "true"
|
||||
dcMotorIdleValve = bits, U32, 976, [11:11], "false", "true"
|
||||
unusedBit_251_12 = bits, U32, 976, [12:12], "false", "true"
|
||||
unusedBit_251_13 = bits, U32, 976, [13:13], "false", "true"
|
||||
unusedBit_251_14 = bits, U32, 976, [14:14], "false", "true"
|
||||
|
@ -1050,7 +1050,7 @@ page = 1
|
|||
gppwm1_pwmFrequency = scalar, U16, 4146, "hz", 1, 0, 0, 500, 0
|
||||
gppwm1_onAboveDuty = scalar, U08, 4148, "%", 1, 0, 0, 100, 0
|
||||
gppwm1_offBelowDuty = scalar, U08, 4149, "%", 1, 0, 0, 100, 0
|
||||
gppwm1_loadAxis = bits, U08, 4150, [0:1], "TPS", "MAP", "CLT", "IAT"
|
||||
gppwm1_loadAxis = bits, U08, 4150, [0:2], "TPS", "MAP", "CLT", "IAT", "Fuel Load", "Ignition Load", "INVALID", "INVALID"
|
||||
gppwm1_alignmentFill_map = scalar, U08, 4151, "unit", 1, 0, 0, 100, 0
|
||||
gppwm1_loadBins = array, U08, 4152, [8], "load", 1, 0, 0.0, 250, 0
|
||||
gppwm1_rpmBins = array, U08, 4160, [8], "RPM", 50, 0, 0.0, 12000.0, 0
|
||||
|
@ -1060,7 +1060,7 @@ page = 1
|
|||
gppwm2_pwmFrequency = scalar, U16, 4234, "hz", 1, 0, 0, 500, 0
|
||||
gppwm2_onAboveDuty = scalar, U08, 4236, "%", 1, 0, 0, 100, 0
|
||||
gppwm2_offBelowDuty = scalar, U08, 4237, "%", 1, 0, 0, 100, 0
|
||||
gppwm2_loadAxis = bits, U08, 4238, [0:1], "TPS", "MAP", "CLT", "IAT"
|
||||
gppwm2_loadAxis = bits, U08, 4238, [0:2], "TPS", "MAP", "CLT", "IAT", "Fuel Load", "Ignition Load", "INVALID", "INVALID"
|
||||
gppwm2_alignmentFill_map = scalar, U08, 4239, "unit", 1, 0, 0, 100, 0
|
||||
gppwm2_loadBins = array, U08, 4240, [8], "load", 1, 0, 0.0, 250, 0
|
||||
gppwm2_rpmBins = array, U08, 4248, [8], "RPM", 50, 0, 0.0, 12000.0, 0
|
||||
|
@ -1070,7 +1070,7 @@ page = 1
|
|||
gppwm3_pwmFrequency = scalar, U16, 4322, "hz", 1, 0, 0, 500, 0
|
||||
gppwm3_onAboveDuty = scalar, U08, 4324, "%", 1, 0, 0, 100, 0
|
||||
gppwm3_offBelowDuty = scalar, U08, 4325, "%", 1, 0, 0, 100, 0
|
||||
gppwm3_loadAxis = bits, U08, 4326, [0:1], "TPS", "MAP", "CLT", "IAT"
|
||||
gppwm3_loadAxis = bits, U08, 4326, [0:2], "TPS", "MAP", "CLT", "IAT", "Fuel Load", "Ignition Load", "INVALID", "INVALID"
|
||||
gppwm3_alignmentFill_map = scalar, U08, 4327, "unit", 1, 0, 0, 100, 0
|
||||
gppwm3_loadBins = array, U08, 4328, [8], "load", 1, 0, 0.0, 250, 0
|
||||
gppwm3_rpmBins = array, U08, 4336, [8], "RPM", 50, 0, 0.0, 12000.0, 0
|
||||
|
@ -1080,7 +1080,7 @@ page = 1
|
|||
gppwm4_pwmFrequency = scalar, U16, 4410, "hz", 1, 0, 0, 500, 0
|
||||
gppwm4_onAboveDuty = scalar, U08, 4412, "%", 1, 0, 0, 100, 0
|
||||
gppwm4_offBelowDuty = scalar, U08, 4413, "%", 1, 0, 0, 100, 0
|
||||
gppwm4_loadAxis = bits, U08, 4414, [0:1], "TPS", "MAP", "CLT", "IAT"
|
||||
gppwm4_loadAxis = bits, U08, 4414, [0:2], "TPS", "MAP", "CLT", "IAT", "Fuel Load", "Ignition Load", "INVALID", "INVALID"
|
||||
gppwm4_alignmentFill_map = scalar, U08, 4415, "unit", 1, 0, 0, 100, 0
|
||||
gppwm4_loadBins = array, U08, 4416, [8], "load", 1, 0, 0.0, 250, 0
|
||||
gppwm4_rpmBins = array, U08, 4424, [8], "RPM", 50, 0, 0.0, 12000.0, 0
|
||||
|
@ -1203,7 +1203,7 @@ page = 1
|
|||
injectionMode = "This is where the fuel injection type is defined: "Simultaneous" means all injectors will fire together at once. "Sequential" fires the injectors on a per cylinder basis, which requires individually wired injectors. "Batched" will fire the injectors in groups. If your injectors are individually wired you will also need to enable "Two wire batch emulation". \nset injection_mode X\nSee also twoWireBatchInjection"
|
||||
extraInjectionOffset = "this is about deciding when the injector starts it's squirt\nSee also injectionPhase map\ntodo: do we need even need this since we have the map anyway?"
|
||||
crankingTimingAngle = "Ignition advance angle used during engine cranking, 5-10 degrees will work as a base setting for most engines.\nset cranking_timing_angle X"
|
||||
ignitionMode = ""One Coil" is for use on distributed ignition system. "Individual Coils" is to be used when you have one coil per cylinder (COP or similar). "Wasted" means one coil is driving two spark plugs in two cylinders, with one of the sparks not doing anything since it's happening on the exhaust cycle\nset ignition_mode X"
|
||||
ignitionMode = ""Single Coil" is for use on distributed ignition system. "Individual Coils" is to be used when you have one coil per cylinder (COP or similar). "Wasted Spark" means one coil is driving two spark plugs in two cylinders, with one of the sparks not doing anything since it's happening on the exhaust cycle\nset ignition_mode X"
|
||||
ignitionOffset = "this value could be used to offset the whole ignition timing table by a constant"
|
||||
timingMode = "Dynamic uses the timing map to decide the ignition timing, Static timing fixes the timing to the value set below (only use for checking static timing)."
|
||||
fixedModeTiming = "This value is the ignition timing used when in 'fixed timing' mode, i.e. constant timing\nThis mode is useful when adjusting distributor location."
|
||||
|
@ -1237,7 +1237,7 @@ page = 1
|
|||
isFasterEngineSpinUpEnabled = "Smarter cranking logic.\nSee also startOfCrankingPrimingPulse"
|
||||
coastingFuelCutEnabled = "This setting disables fuel injection while the engine is in overrun, this is useful as a fuel saving measure and to prevent back firing."
|
||||
useIacTableForCoasting = "This setting allows the ECU to open the IAC during overrun conditions to help reduce engine breaking, this can be helpful for large engines in light weight cars. Used in Auto-PID Idle mode."
|
||||
pauseEtbControl = "Disable the electronic throttle motor for testing.\nThis mode is for testing ETB position sensors, etc without actually driving the throttle."
|
||||
pauseEtbControl = "Disable the electronic throttle motor and DC idle motor for testing.\nThis mode is for testing ETB/DC idle position sensors, etc without actually driving the throttle."
|
||||
useETBforIdleControl = "This setting allows the ETB to act as the idle air control valve and move to regulate the airflow at idle."
|
||||
acIdleExtraMin = "Additional idle PID minValue while A/C is active"
|
||||
sdCardPeriodMs = "SD card logging period, in milliseconds"
|
||||
|
@ -1246,6 +1246,7 @@ page = 1
|
|||
sensorChartMode = "rusEfi console Sensor Sniffer mode"
|
||||
useHbridges = "If enabled we use two H-bridges to drive stepper idle air valve"
|
||||
stftIgnoreErrorMagnitude = "If enabled, adjust at a constant rate instead of a rate proportional to the current lambda error. This mode may be easier to tune, and more tolerant of sensor noise. Use of this mode is required if you have a narrowband O2 sensor.;"
|
||||
dcMotorIdleValve = "Used on some German vehicles around late 90s: cable-operated throttle and DC motor idle air valve.\nSet the primary TPS to the cable-operated throttle's sensor\nSet the secondary TPS to the mini ETB's position sensor(s)."
|
||||
launchSpeedTreshold = "Disabled above this speed"
|
||||
launchRpmTreshold = "Disabled below this rpm"
|
||||
launchTimingRpmRange = "Range from Launch Rpm for Timing Retard to activate"
|
||||
|
@ -1284,7 +1285,7 @@ page = 1
|
|||
verboseTriggerSynchDetails = "enable trigger_details"
|
||||
twoWireBatchInjection = "This is needed if your coils are individually wired and you wish to use batch injection.\nenable two_wire_batch_injection"
|
||||
useOnlyRisingEdgeForTrigger = "VR sensors are only precise on rising front\nenable trigger_only_front"
|
||||
twoWireBatchIgnition = "This is needed if your coils are individually wired (COP) and you wish to use batch ignition (wasted spark)."
|
||||
twoWireBatchIgnition = "This is needed if your coils are individually wired (COP) and you wish to use batch ignition (Wasted Spark)."
|
||||
useSeparateAdvanceForCranking = "This activates a separate advance table for cranking conditions, this allows cranking advance to be RPM dependant."
|
||||
useAdvanceCorrectionsForCranking = "This enables the various ignition corrections during cranking (IAT, CLT, FSIO and PID idle)."
|
||||
useTPSAdvanceTable = "This flag allows to use TPS for ignition lookup while in Speed Density Fuel Mode"
|
||||
|
@ -1490,8 +1491,8 @@ page = 1
|
|||
internalMcuTemperature = scalar,S08, 11, "deg C", 1, 0
|
||||
coolant = scalar, S16, 12, "deg C",{1/100}, 0.0
|
||||
intake = scalar, S16, 14, "deg C",{1/100}, 0.0
|
||||
; todo: aux1
|
||||
; todo: aux2
|
||||
auxt1 = scalar, S16, 16, "deg C",{1/100}, 0.0
|
||||
auxt2 = scalar, S16, 18, "deg C",{1/100}, 0.0
|
||||
|
||||
|
||||
; throttle, pedal
|
||||
|
@ -1631,7 +1632,7 @@ page = 1
|
|||
rawOilPressure = scalar, U16, 242, "V",{1/1000}, 0.0
|
||||
|
||||
; we use this to match logs to tunes
|
||||
tuneCrc16= scalar, U16, 244, "crc16", 1, 0
|
||||
tuneCrc16 = scalar, U16, 244, "crc16", 1, 0
|
||||
|
||||
;
|
||||
; see TunerStudioOutputChannels struct
|
||||
|
@ -1647,10 +1648,10 @@ page = 1
|
|||
time = { timeNow }
|
||||
|
||||
; These "synthetic" channels provide the Y-axis (load) value for gen purp PWM table's Y axes
|
||||
gppwm1_load = {(gppwm1_loadAxis == 0) ? TPSValue : ((gppwm1_loadAxis == 1) ? MAPValue : ((gppwm1_loadAxis == 2) ? coolant : intake))}
|
||||
gppwm2_load = {(gppwm2_loadAxis == 0) ? TPSValue : ((gppwm2_loadAxis == 1) ? MAPValue : ((gppwm2_loadAxis == 2) ? coolant : intake))}
|
||||
gppwm3_load = {(gppwm3_loadAxis == 0) ? TPSValue : ((gppwm3_loadAxis == 1) ? MAPValue : ((gppwm3_loadAxis == 2) ? coolant : intake))}
|
||||
gppwm4_load = {(gppwm4_loadAxis == 0) ? TPSValue : ((gppwm4_loadAxis == 1) ? MAPValue : ((gppwm4_loadAxis == 2) ? coolant : intake))}
|
||||
gppwm1_load = {(gppwm1_loadAxis == 0) ? TPSValue : ((gppwm1_loadAxis == 1) ? MAPValue : ((gppwm1_loadAxis == 2) ? coolant : ((gppwm1_loadAxis == 3) ? intake : ((gppwm1_loadAxis == 4) ? fuelingLoad : ignitionLoad))))}
|
||||
gppwm2_load = {(gppwm2_loadAxis == 0) ? TPSValue : ((gppwm2_loadAxis == 1) ? MAPValue : ((gppwm2_loadAxis == 2) ? coolant : ((gppwm2_loadAxis == 3) ? intake : ((gppwm2_loadAxis == 4) ? fuelingLoad : ignitionLoad))))}
|
||||
gppwm3_load = {(gppwm3_loadAxis == 0) ? TPSValue : ((gppwm3_loadAxis == 1) ? MAPValue : ((gppwm3_loadAxis == 2) ? coolant : ((gppwm3_loadAxis == 3) ? intake : ((gppwm3_loadAxis == 4) ? fuelingLoad : ignitionLoad))))}
|
||||
gppwm4_load = {(gppwm4_loadAxis == 0) ? TPSValue : ((gppwm4_loadAxis == 1) ? MAPValue : ((gppwm4_loadAxis == 2) ? coolant : ((gppwm4_loadAxis == 3) ? intake : ((gppwm4_loadAxis == 4) ? fuelingLoad : ignitionLoad))))}
|
||||
|
||||
[PcVariables]
|
||||
tuneCrcPcVariable = continuousChannelValue, tuneCrc16
|
||||
|
@ -2226,6 +2227,8 @@ gaugeCategory = Sensors - Extra 1
|
|||
internalMcuTemperatureGauge = internalMcuTemperature, "ECU temperature", "C", 0, 100, 0, 0, 75, 100, 0, 0
|
||||
OilPressGauge = oilPressure, "Oil Pressure", "kPa", 0, 750, 35, 75, 550, 700, 0, 0
|
||||
idleAirValvePositionGauge = idleAirValvePosition, "Idle position", "%", 0, 100, 0, 0, 100, 100, 1, 1
|
||||
AuxT1Gauge = auxt1, "Aux temp 1", "deg C", -40, 140, -15, 1, 95, 110, 1, 1
|
||||
AuxT2Gauge = auxt2, "Aux temp 2", "deg C", -40, 140, -15, 1, 95, 110, 1, 1
|
||||
|
||||
gaugeCategory = Ignition
|
||||
ignadvGauge = ignitionAdvance, "Ignition timing", "degrees", -100, 100, -999, -999, 999, 999, 1, 1
|
||||
|
@ -3550,7 +3553,7 @@ cmd_set_engine_type_default = "w\x00\x31\x00\x00"
|
|||
dialog = idleSettings, "", yAxis
|
||||
field = "Idle IAC control mode", idleMode
|
||||
field = useInstantRpmForIdle, useInstantRpmForIdle
|
||||
field = "use ETB for idle", useETBforIdleControl
|
||||
field = "use ETB for idle", useETBforIdleControl, { throttlePedalPositionAdcChannel != 16 }
|
||||
field = "ETB Idle range", etbIdleThrottleRange, {useETBforIdleControl == 1}
|
||||
field = "Use separate Ignition Table for idle", useSeparateAdvanceForIdle
|
||||
field = "Use separate VE Table for idle", useSeparateVeForIdle
|
||||
|
@ -4147,13 +4150,13 @@ cmd_set_engine_type_default = "w\x00\x31\x00\x00"
|
|||
panel = veTableMap, South
|
||||
|
||||
dialog = etbPidDialog, "PID settings"
|
||||
field = "pFactor", etb_pFactor, {throttlePedalPositionAdcChannel != 16}
|
||||
field = "iFactor", etb_iFactor, {throttlePedalPositionAdcChannel != 16}
|
||||
field = "dFactor", etb_dFactor, {throttlePedalPositionAdcChannel != 16}
|
||||
field = "pid min", etb_minValue, {throttlePedalPositionAdcChannel != 16}
|
||||
field = "pid max", etb_maxValue, {throttlePedalPositionAdcChannel != 16}
|
||||
field = "iTermMin", etb_iTermMin, {throttlePedalPositionAdcChannel != 16}
|
||||
field = "iTermMax", etb_iTermMax, {throttlePedalPositionAdcChannel != 16}
|
||||
field = "pFactor", etb_pFactor
|
||||
field = "iFactor", etb_iFactor
|
||||
field = "dFactor", etb_dFactor
|
||||
field = "pid min", etb_minValue
|
||||
field = "pid max", etb_maxValue
|
||||
field = "iTermMin", etb_iTermMin
|
||||
field = "iTermMax", etb_iTermMax
|
||||
|
||||
dialog = etbIdleDialog, "ETB Idle"
|
||||
field = "use ETB for idle", useETBforIdleControl
|
||||
|
@ -4161,11 +4164,12 @@ cmd_set_engine_type_default = "w\x00\x31\x00\x00"
|
|||
|
||||
dialog = etbDialogLeft
|
||||
field = "https://rusefi.com/s/etb"
|
||||
field = "Late 90s German DC Motor idle", dcMotorIdleValve, { throttlePedalPositionAdcChannel == 16 }
|
||||
field = "Detailed status in console", isVerboseETB
|
||||
field = "Disable ETB Motor", pauseEtbControl
|
||||
; we need the term about stepper idle in here, because there's a bug in TS that you can't have different visibility
|
||||
; criteria for the same panel when used in multiple places
|
||||
panel = hbridgeHardware, { throttlePedalPositionAdcChannel != 16 || useStepperIdle && useHbridges }
|
||||
panel = hbridgeHardware, { throttlePedalPositionAdcChannel != 16 || (useStepperIdle && useHbridges) || dcMotorIdleValve }
|
||||
|
||||
dialog = etbAutotune, "PID Autotune"
|
||||
commandButton = "Start ETB PID Autotune", cmd_etb_autotune
|
||||
|
@ -4177,8 +4181,8 @@ cmd_set_engine_type_default = "w\x00\x31\x00\x00"
|
|||
field = "Debug mode", debugMode
|
||||
|
||||
dialog = etbDialogRight
|
||||
panel = etbIdleDialog
|
||||
panel = etbPidDialog
|
||||
panel = etbIdleDialog, { throttlePedalPositionAdcChannel != 16 }
|
||||
panel = etbPidDialog, { (throttlePedalPositionAdcChannel != 16) || dcMotorIdleValve }
|
||||
panel = etbAutotune
|
||||
|
||||
; Neutral position handling not yet implemented!
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -33,12 +33,12 @@ enable2ndByteCanID = false
|
|||
|
||||
[MegaTune]
|
||||
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
|
||||
signature = "rusEFI 2020.07.22.frankenso_na6.4156569820"
|
||||
signature = "rusEFI 2020.07.28.frankenso_na6.2238833798"
|
||||
|
||||
[TunerStudio]
|
||||
queryCommand = "S"
|
||||
versionInfo = "V" ; firmwave version for title bar.
|
||||
signature = "rusEFI 2020.07.22.frankenso_na6.4156569820" ; signature is expected to be 7 or more characters.
|
||||
signature = "rusEFI 2020.07.28.frankenso_na6.2238833798" ; signature is expected to be 7 or more characters.
|
||||
|
||||
[Constants]
|
||||
; new packet serial format with CRC
|
||||
|
@ -76,7 +76,7 @@ enable2ndByteCanID = false
|
|||
|
||||
; see PAGE_0_SIZE in C source code
|
||||
; CONFIG_DEFINITION_START
|
||||
; this section was generated automatically by rusEfi tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Wed Jul 22 19:41:10 UTC 2020
|
||||
; this section was generated automatically by rusEfi tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Tue Jul 28 13:12:18 UTC 2020
|
||||
|
||||
pageSize = 20000
|
||||
page = 1
|
||||
|
@ -166,12 +166,12 @@ page = 1
|
|||
cylinderBore = scalar, F32, 408, "mm", 1, 0, 0, 20000.0, 2
|
||||
sensorSnifferRpmThreshold = scalar, S32, 412, "RPM", 1, 0, 0,30000, 0
|
||||
rpmHardLimit = scalar, S32, 416, "rpm", 1, 0, 0, 20000.0, 2
|
||||
fuelAlgorithm = bits, U32, 420, [0:2], "MAF", "Alpha-N/TPS", "INVALID", "SPEED DENSITY", "MAF Air Charge", "INVALID", "INVALID", "INVALID"
|
||||
fuelAlgorithm = bits, U32, 420, [0:2], "MAF", "Alpha-N/TPS", "INVALID", "Speed Density", "MAF Air Charge", "Alpha-N", "INVALID", "INVALID"
|
||||
crankingInjectionMode = bits, U32, 424, [0:1], "Simultaneous", "Sequential", "Batch", "Single Point"
|
||||
injectionMode = bits, U32, 428, [0:1], "Simultaneous", "Sequential", "Batch", "Single Point"
|
||||
extraInjectionOffset = scalar, F32, 432, "deg", 1, 0.0, -720, 720, 2
|
||||
crankingTimingAngle = scalar, F32, 436, "deg", 1, 0.0, -360, 360, 2
|
||||
ignitionMode = bits, U32, 440, [0:1], "One coil", "Individual Coils", "Wasted", "Two distributors"
|
||||
ignitionMode = bits, U32, 440, [0:1], "Single Coil", "Individual Coils", "Wasted Spark", "Two Distributors"
|
||||
ignitionOffset = scalar, F32, 444, "RPM", 1, 0, 0, 3000.0, 0
|
||||
timingMode = bits, U32, 448 [0:0], "dynamic", "fixed"
|
||||
fixedModeTiming = scalar, F32, 452, "RPM", 1, 0, 0, 3000.0, 0
|
||||
|
@ -541,7 +541,7 @@ page = 1
|
|||
enableInnovateLC2 = bits, U32, 976, [8:8], "false", "true"
|
||||
showHumanReadableWarning= bits, U32, 976, [9:9], "false", "true"
|
||||
stftIgnoreErrorMagnitude= bits, U32, 976, [10:10], "false", "true"
|
||||
unusedBit_251_11 = bits, U32, 976, [11:11], "false", "true"
|
||||
dcMotorIdleValve = bits, U32, 976, [11:11], "false", "true"
|
||||
unusedBit_251_12 = bits, U32, 976, [12:12], "false", "true"
|
||||
unusedBit_251_13 = bits, U32, 976, [13:13], "false", "true"
|
||||
unusedBit_251_14 = bits, U32, 976, [14:14], "false", "true"
|
||||
|
@ -1050,7 +1050,7 @@ page = 1
|
|||
gppwm1_pwmFrequency = scalar, U16, 4146, "hz", 1, 0, 0, 500, 0
|
||||
gppwm1_onAboveDuty = scalar, U08, 4148, "%", 1, 0, 0, 100, 0
|
||||
gppwm1_offBelowDuty = scalar, U08, 4149, "%", 1, 0, 0, 100, 0
|
||||
gppwm1_loadAxis = bits, U08, 4150, [0:1], "TPS", "MAP", "CLT", "IAT"
|
||||
gppwm1_loadAxis = bits, U08, 4150, [0:2], "TPS", "MAP", "CLT", "IAT", "Fuel Load", "Ignition Load", "INVALID", "INVALID"
|
||||
gppwm1_alignmentFill_map = scalar, U08, 4151, "unit", 1, 0, 0, 100, 0
|
||||
gppwm1_loadBins = array, U08, 4152, [8], "load", 1, 0, 0.0, 250, 0
|
||||
gppwm1_rpmBins = array, U08, 4160, [8], "RPM", 50, 0, 0.0, 12000.0, 0
|
||||
|
@ -1060,7 +1060,7 @@ page = 1
|
|||
gppwm2_pwmFrequency = scalar, U16, 4234, "hz", 1, 0, 0, 500, 0
|
||||
gppwm2_onAboveDuty = scalar, U08, 4236, "%", 1, 0, 0, 100, 0
|
||||
gppwm2_offBelowDuty = scalar, U08, 4237, "%", 1, 0, 0, 100, 0
|
||||
gppwm2_loadAxis = bits, U08, 4238, [0:1], "TPS", "MAP", "CLT", "IAT"
|
||||
gppwm2_loadAxis = bits, U08, 4238, [0:2], "TPS", "MAP", "CLT", "IAT", "Fuel Load", "Ignition Load", "INVALID", "INVALID"
|
||||
gppwm2_alignmentFill_map = scalar, U08, 4239, "unit", 1, 0, 0, 100, 0
|
||||
gppwm2_loadBins = array, U08, 4240, [8], "load", 1, 0, 0.0, 250, 0
|
||||
gppwm2_rpmBins = array, U08, 4248, [8], "RPM", 50, 0, 0.0, 12000.0, 0
|
||||
|
@ -1070,7 +1070,7 @@ page = 1
|
|||
gppwm3_pwmFrequency = scalar, U16, 4322, "hz", 1, 0, 0, 500, 0
|
||||
gppwm3_onAboveDuty = scalar, U08, 4324, "%", 1, 0, 0, 100, 0
|
||||
gppwm3_offBelowDuty = scalar, U08, 4325, "%", 1, 0, 0, 100, 0
|
||||
gppwm3_loadAxis = bits, U08, 4326, [0:1], "TPS", "MAP", "CLT", "IAT"
|
||||
gppwm3_loadAxis = bits, U08, 4326, [0:2], "TPS", "MAP", "CLT", "IAT", "Fuel Load", "Ignition Load", "INVALID", "INVALID"
|
||||
gppwm3_alignmentFill_map = scalar, U08, 4327, "unit", 1, 0, 0, 100, 0
|
||||
gppwm3_loadBins = array, U08, 4328, [8], "load", 1, 0, 0.0, 250, 0
|
||||
gppwm3_rpmBins = array, U08, 4336, [8], "RPM", 50, 0, 0.0, 12000.0, 0
|
||||
|
@ -1080,7 +1080,7 @@ page = 1
|
|||
gppwm4_pwmFrequency = scalar, U16, 4410, "hz", 1, 0, 0, 500, 0
|
||||
gppwm4_onAboveDuty = scalar, U08, 4412, "%", 1, 0, 0, 100, 0
|
||||
gppwm4_offBelowDuty = scalar, U08, 4413, "%", 1, 0, 0, 100, 0
|
||||
gppwm4_loadAxis = bits, U08, 4414, [0:1], "TPS", "MAP", "CLT", "IAT"
|
||||
gppwm4_loadAxis = bits, U08, 4414, [0:2], "TPS", "MAP", "CLT", "IAT", "Fuel Load", "Ignition Load", "INVALID", "INVALID"
|
||||
gppwm4_alignmentFill_map = scalar, U08, 4415, "unit", 1, 0, 0, 100, 0
|
||||
gppwm4_loadBins = array, U08, 4416, [8], "load", 1, 0, 0.0, 250, 0
|
||||
gppwm4_rpmBins = array, U08, 4424, [8], "RPM", 50, 0, 0.0, 12000.0, 0
|
||||
|
@ -1203,7 +1203,7 @@ page = 1
|
|||
injectionMode = "This is where the fuel injection type is defined: "Simultaneous" means all injectors will fire together at once. "Sequential" fires the injectors on a per cylinder basis, which requires individually wired injectors. "Batched" will fire the injectors in groups. If your injectors are individually wired you will also need to enable "Two wire batch emulation". \nset injection_mode X\nSee also twoWireBatchInjection"
|
||||
extraInjectionOffset = "this is about deciding when the injector starts it's squirt\nSee also injectionPhase map\ntodo: do we need even need this since we have the map anyway?"
|
||||
crankingTimingAngle = "Ignition advance angle used during engine cranking, 5-10 degrees will work as a base setting for most engines.\nset cranking_timing_angle X"
|
||||
ignitionMode = ""One Coil" is for use on distributed ignition system. "Individual Coils" is to be used when you have one coil per cylinder (COP or similar). "Wasted" means one coil is driving two spark plugs in two cylinders, with one of the sparks not doing anything since it's happening on the exhaust cycle\nset ignition_mode X"
|
||||
ignitionMode = ""Single Coil" is for use on distributed ignition system. "Individual Coils" is to be used when you have one coil per cylinder (COP or similar). "Wasted Spark" means one coil is driving two spark plugs in two cylinders, with one of the sparks not doing anything since it's happening on the exhaust cycle\nset ignition_mode X"
|
||||
ignitionOffset = "this value could be used to offset the whole ignition timing table by a constant"
|
||||
timingMode = "Dynamic uses the timing map to decide the ignition timing, Static timing fixes the timing to the value set below (only use for checking static timing)."
|
||||
fixedModeTiming = "This value is the ignition timing used when in 'fixed timing' mode, i.e. constant timing\nThis mode is useful when adjusting distributor location."
|
||||
|
@ -1237,7 +1237,7 @@ page = 1
|
|||
isFasterEngineSpinUpEnabled = "Smarter cranking logic.\nSee also startOfCrankingPrimingPulse"
|
||||
coastingFuelCutEnabled = "This setting disables fuel injection while the engine is in overrun, this is useful as a fuel saving measure and to prevent back firing."
|
||||
useIacTableForCoasting = "This setting allows the ECU to open the IAC during overrun conditions to help reduce engine breaking, this can be helpful for large engines in light weight cars. Used in Auto-PID Idle mode."
|
||||
pauseEtbControl = "Disable the electronic throttle motor for testing.\nThis mode is for testing ETB position sensors, etc without actually driving the throttle."
|
||||
pauseEtbControl = "Disable the electronic throttle motor and DC idle motor for testing.\nThis mode is for testing ETB/DC idle position sensors, etc without actually driving the throttle."
|
||||
useETBforIdleControl = "This setting allows the ETB to act as the idle air control valve and move to regulate the airflow at idle."
|
||||
acIdleExtraMin = "Additional idle PID minValue while A/C is active"
|
||||
sdCardPeriodMs = "SD card logging period, in milliseconds"
|
||||
|
@ -1246,6 +1246,7 @@ page = 1
|
|||
sensorChartMode = "rusEfi console Sensor Sniffer mode"
|
||||
useHbridges = "If enabled we use two H-bridges to drive stepper idle air valve"
|
||||
stftIgnoreErrorMagnitude = "If enabled, adjust at a constant rate instead of a rate proportional to the current lambda error. This mode may be easier to tune, and more tolerant of sensor noise. Use of this mode is required if you have a narrowband O2 sensor.;"
|
||||
dcMotorIdleValve = "Used on some German vehicles around late 90s: cable-operated throttle and DC motor idle air valve.\nSet the primary TPS to the cable-operated throttle's sensor\nSet the secondary TPS to the mini ETB's position sensor(s)."
|
||||
launchSpeedTreshold = "Disabled above this speed"
|
||||
launchRpmTreshold = "Disabled below this rpm"
|
||||
launchTimingRpmRange = "Range from Launch Rpm for Timing Retard to activate"
|
||||
|
@ -1284,7 +1285,7 @@ page = 1
|
|||
verboseTriggerSynchDetails = "enable trigger_details"
|
||||
twoWireBatchInjection = "This is needed if your coils are individually wired and you wish to use batch injection.\nenable two_wire_batch_injection"
|
||||
useOnlyRisingEdgeForTrigger = "VR sensors are only precise on rising front\nenable trigger_only_front"
|
||||
twoWireBatchIgnition = "This is needed if your coils are individually wired (COP) and you wish to use batch ignition (wasted spark)."
|
||||
twoWireBatchIgnition = "This is needed if your coils are individually wired (COP) and you wish to use batch ignition (Wasted Spark)."
|
||||
useSeparateAdvanceForCranking = "This activates a separate advance table for cranking conditions, this allows cranking advance to be RPM dependant."
|
||||
useAdvanceCorrectionsForCranking = "This enables the various ignition corrections during cranking (IAT, CLT, FSIO and PID idle)."
|
||||
useTPSAdvanceTable = "This flag allows to use TPS for ignition lookup while in Speed Density Fuel Mode"
|
||||
|
@ -1490,8 +1491,8 @@ page = 1
|
|||
internalMcuTemperature = scalar,S08, 11, "deg C", 1, 0
|
||||
coolant = scalar, S16, 12, "deg C",{1/100}, 0.0
|
||||
intake = scalar, S16, 14, "deg C",{1/100}, 0.0
|
||||
; todo: aux1
|
||||
; todo: aux2
|
||||
auxt1 = scalar, S16, 16, "deg C",{1/100}, 0.0
|
||||
auxt2 = scalar, S16, 18, "deg C",{1/100}, 0.0
|
||||
|
||||
|
||||
; throttle, pedal
|
||||
|
@ -1631,7 +1632,7 @@ page = 1
|
|||
rawOilPressure = scalar, U16, 242, "V",{1/1000}, 0.0
|
||||
|
||||
; we use this to match logs to tunes
|
||||
tuneCrc16= scalar, U16, 244, "crc16", 1, 0
|
||||
tuneCrc16 = scalar, U16, 244, "crc16", 1, 0
|
||||
|
||||
;
|
||||
; see TunerStudioOutputChannels struct
|
||||
|
@ -1647,10 +1648,10 @@ page = 1
|
|||
time = { timeNow }
|
||||
|
||||
; These "synthetic" channels provide the Y-axis (load) value for gen purp PWM table's Y axes
|
||||
gppwm1_load = {(gppwm1_loadAxis == 0) ? TPSValue : ((gppwm1_loadAxis == 1) ? MAPValue : ((gppwm1_loadAxis == 2) ? coolant : intake))}
|
||||
gppwm2_load = {(gppwm2_loadAxis == 0) ? TPSValue : ((gppwm2_loadAxis == 1) ? MAPValue : ((gppwm2_loadAxis == 2) ? coolant : intake))}
|
||||
gppwm3_load = {(gppwm3_loadAxis == 0) ? TPSValue : ((gppwm3_loadAxis == 1) ? MAPValue : ((gppwm3_loadAxis == 2) ? coolant : intake))}
|
||||
gppwm4_load = {(gppwm4_loadAxis == 0) ? TPSValue : ((gppwm4_loadAxis == 1) ? MAPValue : ((gppwm4_loadAxis == 2) ? coolant : intake))}
|
||||
gppwm1_load = {(gppwm1_loadAxis == 0) ? TPSValue : ((gppwm1_loadAxis == 1) ? MAPValue : ((gppwm1_loadAxis == 2) ? coolant : ((gppwm1_loadAxis == 3) ? intake : ((gppwm1_loadAxis == 4) ? fuelingLoad : ignitionLoad))))}
|
||||
gppwm2_load = {(gppwm2_loadAxis == 0) ? TPSValue : ((gppwm2_loadAxis == 1) ? MAPValue : ((gppwm2_loadAxis == 2) ? coolant : ((gppwm2_loadAxis == 3) ? intake : ((gppwm2_loadAxis == 4) ? fuelingLoad : ignitionLoad))))}
|
||||
gppwm3_load = {(gppwm3_loadAxis == 0) ? TPSValue : ((gppwm3_loadAxis == 1) ? MAPValue : ((gppwm3_loadAxis == 2) ? coolant : ((gppwm3_loadAxis == 3) ? intake : ((gppwm3_loadAxis == 4) ? fuelingLoad : ignitionLoad))))}
|
||||
gppwm4_load = {(gppwm4_loadAxis == 0) ? TPSValue : ((gppwm4_loadAxis == 1) ? MAPValue : ((gppwm4_loadAxis == 2) ? coolant : ((gppwm4_loadAxis == 3) ? intake : ((gppwm4_loadAxis == 4) ? fuelingLoad : ignitionLoad))))}
|
||||
|
||||
[PcVariables]
|
||||
tuneCrcPcVariable = continuousChannelValue, tuneCrc16
|
||||
|
@ -2226,6 +2227,8 @@ gaugeCategory = Sensors - Extra 1
|
|||
internalMcuTemperatureGauge = internalMcuTemperature, "ECU temperature", "C", 0, 100, 0, 0, 75, 100, 0, 0
|
||||
OilPressGauge = oilPressure, "Oil Pressure", "kPa", 0, 750, 35, 75, 550, 700, 0, 0
|
||||
idleAirValvePositionGauge = idleAirValvePosition, "Idle position", "%", 0, 100, 0, 0, 100, 100, 1, 1
|
||||
AuxT1Gauge = auxt1, "Aux temp 1", "deg C", -40, 140, -15, 1, 95, 110, 1, 1
|
||||
AuxT2Gauge = auxt2, "Aux temp 2", "deg C", -40, 140, -15, 1, 95, 110, 1, 1
|
||||
|
||||
gaugeCategory = Ignition
|
||||
ignadvGauge = ignitionAdvance, "Ignition timing", "degrees", -100, 100, -999, -999, 999, 999, 1, 1
|
||||
|
@ -3550,7 +3553,7 @@ cmd_set_engine_type_default = "w\x00\x31\x00\x00"
|
|||
dialog = idleSettings, "", yAxis
|
||||
field = "Idle IAC control mode", idleMode
|
||||
field = useInstantRpmForIdle, useInstantRpmForIdle
|
||||
field = "use ETB for idle", useETBforIdleControl
|
||||
field = "use ETB for idle", useETBforIdleControl, { throttlePedalPositionAdcChannel != 16 }
|
||||
field = "ETB Idle range", etbIdleThrottleRange, {useETBforIdleControl == 1}
|
||||
field = "Use separate Ignition Table for idle", useSeparateAdvanceForIdle
|
||||
field = "Use separate VE Table for idle", useSeparateVeForIdle
|
||||
|
@ -4147,13 +4150,13 @@ cmd_set_engine_type_default = "w\x00\x31\x00\x00"
|
|||
panel = veTableMap, South
|
||||
|
||||
dialog = etbPidDialog, "PID settings"
|
||||
field = "pFactor", etb_pFactor, {throttlePedalPositionAdcChannel != 16}
|
||||
field = "iFactor", etb_iFactor, {throttlePedalPositionAdcChannel != 16}
|
||||
field = "dFactor", etb_dFactor, {throttlePedalPositionAdcChannel != 16}
|
||||
field = "pid min", etb_minValue, {throttlePedalPositionAdcChannel != 16}
|
||||
field = "pid max", etb_maxValue, {throttlePedalPositionAdcChannel != 16}
|
||||
field = "iTermMin", etb_iTermMin, {throttlePedalPositionAdcChannel != 16}
|
||||
field = "iTermMax", etb_iTermMax, {throttlePedalPositionAdcChannel != 16}
|
||||
field = "pFactor", etb_pFactor
|
||||
field = "iFactor", etb_iFactor
|
||||
field = "dFactor", etb_dFactor
|
||||
field = "pid min", etb_minValue
|
||||
field = "pid max", etb_maxValue
|
||||
field = "iTermMin", etb_iTermMin
|
||||
field = "iTermMax", etb_iTermMax
|
||||
|
||||
dialog = etbIdleDialog, "ETB Idle"
|
||||
field = "use ETB for idle", useETBforIdleControl
|
||||
|
@ -4161,11 +4164,12 @@ cmd_set_engine_type_default = "w\x00\x31\x00\x00"
|
|||
|
||||
dialog = etbDialogLeft
|
||||
field = "https://rusefi.com/s/etb"
|
||||
field = "Late 90s German DC Motor idle", dcMotorIdleValve, { throttlePedalPositionAdcChannel == 16 }
|
||||
field = "Detailed status in console", isVerboseETB
|
||||
field = "Disable ETB Motor", pauseEtbControl
|
||||
; we need the term about stepper idle in here, because there's a bug in TS that you can't have different visibility
|
||||
; criteria for the same panel when used in multiple places
|
||||
panel = hbridgeHardware, { throttlePedalPositionAdcChannel != 16 || useStepperIdle && useHbridges }
|
||||
panel = hbridgeHardware, { throttlePedalPositionAdcChannel != 16 || (useStepperIdle && useHbridges) || dcMotorIdleValve }
|
||||
|
||||
dialog = etbAutotune, "PID Autotune"
|
||||
commandButton = "Start ETB PID Autotune", cmd_etb_autotune
|
||||
|
@ -4177,8 +4181,8 @@ cmd_set_engine_type_default = "w\x00\x31\x00\x00"
|
|||
field = "Debug mode", debugMode
|
||||
|
||||
dialog = etbDialogRight
|
||||
panel = etbIdleDialog
|
||||
panel = etbPidDialog
|
||||
panel = etbIdleDialog, { throttlePedalPositionAdcChannel != 16 }
|
||||
panel = etbPidDialog, { (throttlePedalPositionAdcChannel != 16) || dcMotorIdleValve }
|
||||
panel = etbAutotune
|
||||
|
||||
; Neutral position handling not yet implemented!
|
||||
|
|
|
@ -33,12 +33,12 @@ enable2ndByteCanID = false
|
|||
|
||||
[MegaTune]
|
||||
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
|
||||
signature = "rusEFI 2020.07.22.kin.3833170085"
|
||||
signature = "rusEFI 2020.07.28.kin.2529711359"
|
||||
|
||||
[TunerStudio]
|
||||
queryCommand = "S"
|
||||
versionInfo = "V" ; firmwave version for title bar.
|
||||
signature = "rusEFI 2020.07.22.kin.3833170085" ; signature is expected to be 7 or more characters.
|
||||
signature = "rusEFI 2020.07.28.kin.2529711359" ; signature is expected to be 7 or more characters.
|
||||
|
||||
[Constants]
|
||||
; new packet serial format with CRC
|
||||
|
@ -76,7 +76,7 @@ enable2ndByteCanID = false
|
|||
|
||||
; see PAGE_0_SIZE in C source code
|
||||
; CONFIG_DEFINITION_START
|
||||
; this section was generated automatically by rusEfi tool ConfigDefinition.jar based on kinetis_gen_config.bat integration/rusefi_config.txt Wed Jul 22 19:41:17 UTC 2020
|
||||
; this section was generated automatically by rusEfi tool ConfigDefinition.jar based on kinetis_gen_config.bat integration/rusefi_config.txt Tue Jul 28 13:12:25 UTC 2020
|
||||
|
||||
pageSize = 20000
|
||||
page = 1
|
||||
|
@ -166,12 +166,12 @@ page = 1
|
|||
cylinderBore = scalar, F32, 408, "mm", 1, 0, 0, 20000.0, 2
|
||||
sensorSnifferRpmThreshold = scalar, S32, 412, "RPM", 1, 0, 0,30000, 0
|
||||
rpmHardLimit = scalar, S32, 416, "rpm", 1, 0, 0, 20000.0, 2
|
||||
fuelAlgorithm = bits, U32, 420, [0:2], "MAF", "Alpha-N/TPS", "INVALID", "SPEED DENSITY", "MAF Air Charge", "INVALID", "INVALID", "INVALID"
|
||||
fuelAlgorithm = bits, U32, 420, [0:2], "MAF", "Alpha-N/TPS", "INVALID", "Speed Density", "MAF Air Charge", "Alpha-N", "INVALID", "INVALID"
|
||||
crankingInjectionMode = bits, U32, 424, [0:1], "Simultaneous", "Sequential", "Batch", "Single Point"
|
||||
injectionMode = bits, U32, 428, [0:1], "Simultaneous", "Sequential", "Batch", "Single Point"
|
||||
extraInjectionOffset = scalar, F32, 432, "deg", 1, 0.0, -720, 720, 2
|
||||
crankingTimingAngle = scalar, F32, 436, "deg", 1, 0.0, -360, 360, 2
|
||||
ignitionMode = bits, U32, 440, [0:1], "One coil", "Individual Coils", "Wasted", "Two distributors"
|
||||
ignitionMode = bits, U32, 440, [0:1], "Single Coil", "Individual Coils", "Wasted Spark", "Two Distributors"
|
||||
ignitionOffset = scalar, F32, 444, "RPM", 1, 0, 0, 3000.0, 0
|
||||
timingMode = bits, U32, 448 [0:0], "dynamic", "fixed"
|
||||
fixedModeTiming = scalar, F32, 452, "RPM", 1, 0, 0, 3000.0, 0
|
||||
|
@ -541,7 +541,7 @@ page = 1
|
|||
enableInnovateLC2 = bits, U32, 976, [8:8], "false", "true"
|
||||
showHumanReadableWarning= bits, U32, 976, [9:9], "false", "true"
|
||||
stftIgnoreErrorMagnitude= bits, U32, 976, [10:10], "false", "true"
|
||||
unusedBit_251_11 = bits, U32, 976, [11:11], "false", "true"
|
||||
dcMotorIdleValve = bits, U32, 976, [11:11], "false", "true"
|
||||
unusedBit_251_12 = bits, U32, 976, [12:12], "false", "true"
|
||||
unusedBit_251_13 = bits, U32, 976, [13:13], "false", "true"
|
||||
unusedBit_251_14 = bits, U32, 976, [14:14], "false", "true"
|
||||
|
@ -1050,7 +1050,7 @@ page = 1
|
|||
gppwm1_pwmFrequency = scalar, U16, 4146, "hz", 1, 0, 0, 500, 0
|
||||
gppwm1_onAboveDuty = scalar, U08, 4148, "%", 1, 0, 0, 100, 0
|
||||
gppwm1_offBelowDuty = scalar, U08, 4149, "%", 1, 0, 0, 100, 0
|
||||
gppwm1_loadAxis = bits, U08, 4150, [0:1], "TPS", "MAP", "CLT", "IAT"
|
||||
gppwm1_loadAxis = bits, U08, 4150, [0:2], "TPS", "MAP", "CLT", "IAT", "Fuel Load", "Ignition Load", "INVALID", "INVALID"
|
||||
gppwm1_alignmentFill_map = scalar, U08, 4151, "unit", 1, 0, 0, 100, 0
|
||||
gppwm1_loadBins = array, U08, 4152, [8], "load", 1, 0, 0.0, 250, 0
|
||||
gppwm1_rpmBins = array, U08, 4160, [8], "RPM", 50, 0, 0.0, 12000.0, 0
|
||||
|
@ -1060,7 +1060,7 @@ page = 1
|
|||
gppwm2_pwmFrequency = scalar, U16, 4234, "hz", 1, 0, 0, 500, 0
|
||||
gppwm2_onAboveDuty = scalar, U08, 4236, "%", 1, 0, 0, 100, 0
|
||||
gppwm2_offBelowDuty = scalar, U08, 4237, "%", 1, 0, 0, 100, 0
|
||||
gppwm2_loadAxis = bits, U08, 4238, [0:1], "TPS", "MAP", "CLT", "IAT"
|
||||
gppwm2_loadAxis = bits, U08, 4238, [0:2], "TPS", "MAP", "CLT", "IAT", "Fuel Load", "Ignition Load", "INVALID", "INVALID"
|
||||
gppwm2_alignmentFill_map = scalar, U08, 4239, "unit", 1, 0, 0, 100, 0
|
||||
gppwm2_loadBins = array, U08, 4240, [8], "load", 1, 0, 0.0, 250, 0
|
||||
gppwm2_rpmBins = array, U08, 4248, [8], "RPM", 50, 0, 0.0, 12000.0, 0
|
||||
|
@ -1070,7 +1070,7 @@ page = 1
|
|||
gppwm3_pwmFrequency = scalar, U16, 4322, "hz", 1, 0, 0, 500, 0
|
||||
gppwm3_onAboveDuty = scalar, U08, 4324, "%", 1, 0, 0, 100, 0
|
||||
gppwm3_offBelowDuty = scalar, U08, 4325, "%", 1, 0, 0, 100, 0
|
||||
gppwm3_loadAxis = bits, U08, 4326, [0:1], "TPS", "MAP", "CLT", "IAT"
|
||||
gppwm3_loadAxis = bits, U08, 4326, [0:2], "TPS", "MAP", "CLT", "IAT", "Fuel Load", "Ignition Load", "INVALID", "INVALID"
|
||||
gppwm3_alignmentFill_map = scalar, U08, 4327, "unit", 1, 0, 0, 100, 0
|
||||
gppwm3_loadBins = array, U08, 4328, [8], "load", 1, 0, 0.0, 250, 0
|
||||
gppwm3_rpmBins = array, U08, 4336, [8], "RPM", 50, 0, 0.0, 12000.0, 0
|
||||
|
@ -1080,7 +1080,7 @@ page = 1
|
|||
gppwm4_pwmFrequency = scalar, U16, 4410, "hz", 1, 0, 0, 500, 0
|
||||
gppwm4_onAboveDuty = scalar, U08, 4412, "%", 1, 0, 0, 100, 0
|
||||
gppwm4_offBelowDuty = scalar, U08, 4413, "%", 1, 0, 0, 100, 0
|
||||
gppwm4_loadAxis = bits, U08, 4414, [0:1], "TPS", "MAP", "CLT", "IAT"
|
||||
gppwm4_loadAxis = bits, U08, 4414, [0:2], "TPS", "MAP", "CLT", "IAT", "Fuel Load", "Ignition Load", "INVALID", "INVALID"
|
||||
gppwm4_alignmentFill_map = scalar, U08, 4415, "unit", 1, 0, 0, 100, 0
|
||||
gppwm4_loadBins = array, U08, 4416, [8], "load", 1, 0, 0.0, 250, 0
|
||||
gppwm4_rpmBins = array, U08, 4424, [8], "RPM", 50, 0, 0.0, 12000.0, 0
|
||||
|
@ -1203,7 +1203,7 @@ page = 1
|
|||
injectionMode = "This is where the fuel injection type is defined: "Simultaneous" means all injectors will fire together at once. "Sequential" fires the injectors on a per cylinder basis, which requires individually wired injectors. "Batched" will fire the injectors in groups. If your injectors are individually wired you will also need to enable "Two wire batch emulation". \nset injection_mode X\nSee also twoWireBatchInjection"
|
||||
extraInjectionOffset = "this is about deciding when the injector starts it's squirt\nSee also injectionPhase map\ntodo: do we need even need this since we have the map anyway?"
|
||||
crankingTimingAngle = "Ignition advance angle used during engine cranking, 5-10 degrees will work as a base setting for most engines.\nset cranking_timing_angle X"
|
||||
ignitionMode = ""One Coil" is for use on distributed ignition system. "Individual Coils" is to be used when you have one coil per cylinder (COP or similar). "Wasted" means one coil is driving two spark plugs in two cylinders, with one of the sparks not doing anything since it's happening on the exhaust cycle\nset ignition_mode X"
|
||||
ignitionMode = ""Single Coil" is for use on distributed ignition system. "Individual Coils" is to be used when you have one coil per cylinder (COP or similar). "Wasted Spark" means one coil is driving two spark plugs in two cylinders, with one of the sparks not doing anything since it's happening on the exhaust cycle\nset ignition_mode X"
|
||||
ignitionOffset = "this value could be used to offset the whole ignition timing table by a constant"
|
||||
timingMode = "Dynamic uses the timing map to decide the ignition timing, Static timing fixes the timing to the value set below (only use for checking static timing)."
|
||||
fixedModeTiming = "This value is the ignition timing used when in 'fixed timing' mode, i.e. constant timing\nThis mode is useful when adjusting distributor location."
|
||||
|
@ -1237,7 +1237,7 @@ page = 1
|
|||
isFasterEngineSpinUpEnabled = "Smarter cranking logic.\nSee also startOfCrankingPrimingPulse"
|
||||
coastingFuelCutEnabled = "This setting disables fuel injection while the engine is in overrun, this is useful as a fuel saving measure and to prevent back firing."
|
||||
useIacTableForCoasting = "This setting allows the ECU to open the IAC during overrun conditions to help reduce engine breaking, this can be helpful for large engines in light weight cars. Used in Auto-PID Idle mode."
|
||||
pauseEtbControl = "Disable the electronic throttle motor for testing.\nThis mode is for testing ETB position sensors, etc without actually driving the throttle."
|
||||
pauseEtbControl = "Disable the electronic throttle motor and DC idle motor for testing.\nThis mode is for testing ETB/DC idle position sensors, etc without actually driving the throttle."
|
||||
useETBforIdleControl = "This setting allows the ETB to act as the idle air control valve and move to regulate the airflow at idle."
|
||||
acIdleExtraMin = "Additional idle PID minValue while A/C is active"
|
||||
sdCardPeriodMs = "SD card logging period, in milliseconds"
|
||||
|
@ -1246,6 +1246,7 @@ page = 1
|
|||
sensorChartMode = "rusEfi console Sensor Sniffer mode"
|
||||
useHbridges = "If enabled we use two H-bridges to drive stepper idle air valve"
|
||||
stftIgnoreErrorMagnitude = "If enabled, adjust at a constant rate instead of a rate proportional to the current lambda error. This mode may be easier to tune, and more tolerant of sensor noise. Use of this mode is required if you have a narrowband O2 sensor.;"
|
||||
dcMotorIdleValve = "Used on some German vehicles around late 90s: cable-operated throttle and DC motor idle air valve.\nSet the primary TPS to the cable-operated throttle's sensor\nSet the secondary TPS to the mini ETB's position sensor(s)."
|
||||
launchSpeedTreshold = "Disabled above this speed"
|
||||
launchRpmTreshold = "Disabled below this rpm"
|
||||
launchTimingRpmRange = "Range from Launch Rpm for Timing Retard to activate"
|
||||
|
@ -1284,7 +1285,7 @@ page = 1
|
|||
verboseTriggerSynchDetails = "enable trigger_details"
|
||||
twoWireBatchInjection = "This is needed if your coils are individually wired and you wish to use batch injection.\nenable two_wire_batch_injection"
|
||||
useOnlyRisingEdgeForTrigger = "VR sensors are only precise on rising front\nenable trigger_only_front"
|
||||
twoWireBatchIgnition = "This is needed if your coils are individually wired (COP) and you wish to use batch ignition (wasted spark)."
|
||||
twoWireBatchIgnition = "This is needed if your coils are individually wired (COP) and you wish to use batch ignition (Wasted Spark)."
|
||||
useSeparateAdvanceForCranking = "This activates a separate advance table for cranking conditions, this allows cranking advance to be RPM dependant."
|
||||
useAdvanceCorrectionsForCranking = "This enables the various ignition corrections during cranking (IAT, CLT, FSIO and PID idle)."
|
||||
useTPSAdvanceTable = "This flag allows to use TPS for ignition lookup while in Speed Density Fuel Mode"
|
||||
|
@ -1490,8 +1491,8 @@ page = 1
|
|||
internalMcuTemperature = scalar,S08, 11, "deg C", 1, 0
|
||||
coolant = scalar, S16, 12, "deg C",{1/100}, 0.0
|
||||
intake = scalar, S16, 14, "deg C",{1/100}, 0.0
|
||||
; todo: aux1
|
||||
; todo: aux2
|
||||
auxt1 = scalar, S16, 16, "deg C",{1/100}, 0.0
|
||||
auxt2 = scalar, S16, 18, "deg C",{1/100}, 0.0
|
||||
|
||||
|
||||
; throttle, pedal
|
||||
|
@ -1631,7 +1632,7 @@ page = 1
|
|||
rawOilPressure = scalar, U16, 242, "V",{1/1000}, 0.0
|
||||
|
||||
; we use this to match logs to tunes
|
||||
tuneCrc16= scalar, U16, 244, "crc16", 1, 0
|
||||
tuneCrc16 = scalar, U16, 244, "crc16", 1, 0
|
||||
|
||||
;
|
||||
; see TunerStudioOutputChannels struct
|
||||
|
@ -1647,10 +1648,10 @@ page = 1
|
|||
time = { timeNow }
|
||||
|
||||
; These "synthetic" channels provide the Y-axis (load) value for gen purp PWM table's Y axes
|
||||
gppwm1_load = {(gppwm1_loadAxis == 0) ? TPSValue : ((gppwm1_loadAxis == 1) ? MAPValue : ((gppwm1_loadAxis == 2) ? coolant : intake))}
|
||||
gppwm2_load = {(gppwm2_loadAxis == 0) ? TPSValue : ((gppwm2_loadAxis == 1) ? MAPValue : ((gppwm2_loadAxis == 2) ? coolant : intake))}
|
||||
gppwm3_load = {(gppwm3_loadAxis == 0) ? TPSValue : ((gppwm3_loadAxis == 1) ? MAPValue : ((gppwm3_loadAxis == 2) ? coolant : intake))}
|
||||
gppwm4_load = {(gppwm4_loadAxis == 0) ? TPSValue : ((gppwm4_loadAxis == 1) ? MAPValue : ((gppwm4_loadAxis == 2) ? coolant : intake))}
|
||||
gppwm1_load = {(gppwm1_loadAxis == 0) ? TPSValue : ((gppwm1_loadAxis == 1) ? MAPValue : ((gppwm1_loadAxis == 2) ? coolant : ((gppwm1_loadAxis == 3) ? intake : ((gppwm1_loadAxis == 4) ? fuelingLoad : ignitionLoad))))}
|
||||
gppwm2_load = {(gppwm2_loadAxis == 0) ? TPSValue : ((gppwm2_loadAxis == 1) ? MAPValue : ((gppwm2_loadAxis == 2) ? coolant : ((gppwm2_loadAxis == 3) ? intake : ((gppwm2_loadAxis == 4) ? fuelingLoad : ignitionLoad))))}
|
||||
gppwm3_load = {(gppwm3_loadAxis == 0) ? TPSValue : ((gppwm3_loadAxis == 1) ? MAPValue : ((gppwm3_loadAxis == 2) ? coolant : ((gppwm3_loadAxis == 3) ? intake : ((gppwm3_loadAxis == 4) ? fuelingLoad : ignitionLoad))))}
|
||||
gppwm4_load = {(gppwm4_loadAxis == 0) ? TPSValue : ((gppwm4_loadAxis == 1) ? MAPValue : ((gppwm4_loadAxis == 2) ? coolant : ((gppwm4_loadAxis == 3) ? intake : ((gppwm4_loadAxis == 4) ? fuelingLoad : ignitionLoad))))}
|
||||
|
||||
[PcVariables]
|
||||
tuneCrcPcVariable = continuousChannelValue, tuneCrc16
|
||||
|
@ -2226,6 +2227,8 @@ gaugeCategory = Sensors - Extra 1
|
|||
internalMcuTemperatureGauge = internalMcuTemperature, "ECU temperature", "C", 0, 100, 0, 0, 75, 100, 0, 0
|
||||
OilPressGauge = oilPressure, "Oil Pressure", "kPa", 0, 750, 35, 75, 550, 700, 0, 0
|
||||
idleAirValvePositionGauge = idleAirValvePosition, "Idle position", "%", 0, 100, 0, 0, 100, 100, 1, 1
|
||||
AuxT1Gauge = auxt1, "Aux temp 1", "deg C", -40, 140, -15, 1, 95, 110, 1, 1
|
||||
AuxT2Gauge = auxt2, "Aux temp 2", "deg C", -40, 140, -15, 1, 95, 110, 1, 1
|
||||
|
||||
gaugeCategory = Ignition
|
||||
ignadvGauge = ignitionAdvance, "Ignition timing", "degrees", -100, 100, -999, -999, 999, 999, 1, 1
|
||||
|
@ -3551,7 +3554,7 @@ cmd_set_engine_type_default = "w\x00\x31\x00\x00"
|
|||
dialog = idleSettings, "", yAxis
|
||||
field = "Idle IAC control mode", idleMode
|
||||
field = useInstantRpmForIdle, useInstantRpmForIdle
|
||||
field = "use ETB for idle", useETBforIdleControl
|
||||
field = "use ETB for idle", useETBforIdleControl, { throttlePedalPositionAdcChannel != 16 }
|
||||
field = "ETB Idle range", etbIdleThrottleRange, {useETBforIdleControl == 1}
|
||||
field = "Use separate Ignition Table for idle", useSeparateAdvanceForIdle
|
||||
field = "Use separate VE Table for idle", useSeparateVeForIdle
|
||||
|
@ -4148,13 +4151,13 @@ cmd_set_engine_type_default = "w\x00\x31\x00\x00"
|
|||
panel = veTableMap, South
|
||||
|
||||
dialog = etbPidDialog, "PID settings"
|
||||
field = "pFactor", etb_pFactor, {throttlePedalPositionAdcChannel != 16}
|
||||
field = "iFactor", etb_iFactor, {throttlePedalPositionAdcChannel != 16}
|
||||
field = "dFactor", etb_dFactor, {throttlePedalPositionAdcChannel != 16}
|
||||
field = "pid min", etb_minValue, {throttlePedalPositionAdcChannel != 16}
|
||||
field = "pid max", etb_maxValue, {throttlePedalPositionAdcChannel != 16}
|
||||
field = "iTermMin", etb_iTermMin, {throttlePedalPositionAdcChannel != 16}
|
||||
field = "iTermMax", etb_iTermMax, {throttlePedalPositionAdcChannel != 16}
|
||||
field = "pFactor", etb_pFactor
|
||||
field = "iFactor", etb_iFactor
|
||||
field = "dFactor", etb_dFactor
|
||||
field = "pid min", etb_minValue
|
||||
field = "pid max", etb_maxValue
|
||||
field = "iTermMin", etb_iTermMin
|
||||
field = "iTermMax", etb_iTermMax
|
||||
|
||||
dialog = etbIdleDialog, "ETB Idle"
|
||||
field = "use ETB for idle", useETBforIdleControl
|
||||
|
@ -4162,11 +4165,12 @@ cmd_set_engine_type_default = "w\x00\x31\x00\x00"
|
|||
|
||||
dialog = etbDialogLeft
|
||||
field = "https://rusefi.com/s/etb"
|
||||
field = "Late 90s German DC Motor idle", dcMotorIdleValve, { throttlePedalPositionAdcChannel == 16 }
|
||||
field = "Detailed status in console", isVerboseETB
|
||||
field = "Disable ETB Motor", pauseEtbControl
|
||||
; we need the term about stepper idle in here, because there's a bug in TS that you can't have different visibility
|
||||
; criteria for the same panel when used in multiple places
|
||||
panel = hbridgeHardware, { throttlePedalPositionAdcChannel != 16 || useStepperIdle && useHbridges }
|
||||
panel = hbridgeHardware, { throttlePedalPositionAdcChannel != 16 || (useStepperIdle && useHbridges) || dcMotorIdleValve }
|
||||
|
||||
dialog = etbAutotune, "PID Autotune"
|
||||
commandButton = "Start ETB PID Autotune", cmd_etb_autotune
|
||||
|
@ -4178,8 +4182,8 @@ cmd_set_engine_type_default = "w\x00\x31\x00\x00"
|
|||
field = "Debug mode", debugMode
|
||||
|
||||
dialog = etbDialogRight
|
||||
panel = etbIdleDialog
|
||||
panel = etbPidDialog
|
||||
panel = etbIdleDialog, { throttlePedalPositionAdcChannel != 16 }
|
||||
panel = etbPidDialog, { (throttlePedalPositionAdcChannel != 16) || dcMotorIdleValve }
|
||||
panel = etbAutotune
|
||||
|
||||
; Neutral position handling not yet implemented!
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -33,12 +33,12 @@ enable2ndByteCanID = false
|
|||
|
||||
[MegaTune]
|
||||
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
|
||||
signature = "rusEFI 2020.07.22.mre_f4.1622770353"
|
||||
signature = "rusEFI 2020.07.28.mre_f4.302538475"
|
||||
|
||||
[TunerStudio]
|
||||
queryCommand = "S"
|
||||
versionInfo = "V" ; firmwave version for title bar.
|
||||
signature = "rusEFI 2020.07.22.mre_f4.1622770353" ; signature is expected to be 7 or more characters.
|
||||
signature = "rusEFI 2020.07.28.mre_f4.302538475" ; signature is expected to be 7 or more characters.
|
||||
|
||||
[Constants]
|
||||
; new packet serial format with CRC
|
||||
|
@ -76,7 +76,7 @@ enable2ndByteCanID = false
|
|||
|
||||
; see PAGE_0_SIZE in C source code
|
||||
; CONFIG_DEFINITION_START
|
||||
; this section was generated automatically by rusEfi tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Wed Jul 22 19:41:09 UTC 2020
|
||||
; this section was generated automatically by rusEfi tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Tue Jul 28 13:12:17 UTC 2020
|
||||
|
||||
pageSize = 20000
|
||||
page = 1
|
||||
|
@ -166,12 +166,12 @@ page = 1
|
|||
cylinderBore = scalar, F32, 408, "mm", 1, 0, 0, 20000.0, 2
|
||||
sensorSnifferRpmThreshold = scalar, S32, 412, "RPM", 1, 0, 0,30000, 0
|
||||
rpmHardLimit = scalar, S32, 416, "rpm", 1, 0, 0, 20000.0, 2
|
||||
fuelAlgorithm = bits, U32, 420, [0:2], "MAF", "Alpha-N/TPS", "INVALID", "SPEED DENSITY", "MAF Air Charge", "INVALID", "INVALID", "INVALID"
|
||||
fuelAlgorithm = bits, U32, 420, [0:2], "MAF", "Alpha-N/TPS", "INVALID", "Speed Density", "MAF Air Charge", "Alpha-N", "INVALID", "INVALID"
|
||||
crankingInjectionMode = bits, U32, 424, [0:1], "Simultaneous", "Sequential", "Batch", "Single Point"
|
||||
injectionMode = bits, U32, 428, [0:1], "Simultaneous", "Sequential", "Batch", "Single Point"
|
||||
extraInjectionOffset = scalar, F32, 432, "deg", 1, 0.0, -720, 720, 2
|
||||
crankingTimingAngle = scalar, F32, 436, "deg", 1, 0.0, -360, 360, 2
|
||||
ignitionMode = bits, U32, 440, [0:1], "One coil", "Individual Coils", "Wasted", "Two distributors"
|
||||
ignitionMode = bits, U32, 440, [0:1], "Single Coil", "Individual Coils", "Wasted Spark", "Two Distributors"
|
||||
ignitionOffset = scalar, F32, 444, "RPM", 1, 0, 0, 3000.0, 0
|
||||
timingMode = bits, U32, 448 [0:0], "dynamic", "fixed"
|
||||
fixedModeTiming = scalar, F32, 452, "RPM", 1, 0, 0, 3000.0, 0
|
||||
|
@ -541,7 +541,7 @@ page = 1
|
|||
enableInnovateLC2 = bits, U32, 976, [8:8], "false", "true"
|
||||
showHumanReadableWarning= bits, U32, 976, [9:9], "false", "true"
|
||||
stftIgnoreErrorMagnitude= bits, U32, 976, [10:10], "false", "true"
|
||||
unusedBit_251_11 = bits, U32, 976, [11:11], "false", "true"
|
||||
dcMotorIdleValve = bits, U32, 976, [11:11], "false", "true"
|
||||
unusedBit_251_12 = bits, U32, 976, [12:12], "false", "true"
|
||||
unusedBit_251_13 = bits, U32, 976, [13:13], "false", "true"
|
||||
unusedBit_251_14 = bits, U32, 976, [14:14], "false", "true"
|
||||
|
@ -1050,7 +1050,7 @@ page = 1
|
|||
gppwm1_pwmFrequency = scalar, U16, 4146, "hz", 1, 0, 0, 500, 0
|
||||
gppwm1_onAboveDuty = scalar, U08, 4148, "%", 1, 0, 0, 100, 0
|
||||
gppwm1_offBelowDuty = scalar, U08, 4149, "%", 1, 0, 0, 100, 0
|
||||
gppwm1_loadAxis = bits, U08, 4150, [0:1], "TPS", "MAP", "CLT", "IAT"
|
||||
gppwm1_loadAxis = bits, U08, 4150, [0:2], "TPS", "MAP", "CLT", "IAT", "Fuel Load", "Ignition Load", "INVALID", "INVALID"
|
||||
gppwm1_alignmentFill_map = scalar, U08, 4151, "unit", 1, 0, 0, 100, 0
|
||||
gppwm1_loadBins = array, U08, 4152, [8], "load", 1, 0, 0.0, 250, 0
|
||||
gppwm1_rpmBins = array, U08, 4160, [8], "RPM", 50, 0, 0.0, 12000.0, 0
|
||||
|
@ -1060,7 +1060,7 @@ page = 1
|
|||
gppwm2_pwmFrequency = scalar, U16, 4234, "hz", 1, 0, 0, 500, 0
|
||||
gppwm2_onAboveDuty = scalar, U08, 4236, "%", 1, 0, 0, 100, 0
|
||||
gppwm2_offBelowDuty = scalar, U08, 4237, "%", 1, 0, 0, 100, 0
|
||||
gppwm2_loadAxis = bits, U08, 4238, [0:1], "TPS", "MAP", "CLT", "IAT"
|
||||
gppwm2_loadAxis = bits, U08, 4238, [0:2], "TPS", "MAP", "CLT", "IAT", "Fuel Load", "Ignition Load", "INVALID", "INVALID"
|
||||
gppwm2_alignmentFill_map = scalar, U08, 4239, "unit", 1, 0, 0, 100, 0
|
||||
gppwm2_loadBins = array, U08, 4240, [8], "load", 1, 0, 0.0, 250, 0
|
||||
gppwm2_rpmBins = array, U08, 4248, [8], "RPM", 50, 0, 0.0, 12000.0, 0
|
||||
|
@ -1070,7 +1070,7 @@ page = 1
|
|||
gppwm3_pwmFrequency = scalar, U16, 4322, "hz", 1, 0, 0, 500, 0
|
||||
gppwm3_onAboveDuty = scalar, U08, 4324, "%", 1, 0, 0, 100, 0
|
||||
gppwm3_offBelowDuty = scalar, U08, 4325, "%", 1, 0, 0, 100, 0
|
||||
gppwm3_loadAxis = bits, U08, 4326, [0:1], "TPS", "MAP", "CLT", "IAT"
|
||||
gppwm3_loadAxis = bits, U08, 4326, [0:2], "TPS", "MAP", "CLT", "IAT", "Fuel Load", "Ignition Load", "INVALID", "INVALID"
|
||||
gppwm3_alignmentFill_map = scalar, U08, 4327, "unit", 1, 0, 0, 100, 0
|
||||
gppwm3_loadBins = array, U08, 4328, [8], "load", 1, 0, 0.0, 250, 0
|
||||
gppwm3_rpmBins = array, U08, 4336, [8], "RPM", 50, 0, 0.0, 12000.0, 0
|
||||
|
@ -1080,7 +1080,7 @@ page = 1
|
|||
gppwm4_pwmFrequency = scalar, U16, 4410, "hz", 1, 0, 0, 500, 0
|
||||
gppwm4_onAboveDuty = scalar, U08, 4412, "%", 1, 0, 0, 100, 0
|
||||
gppwm4_offBelowDuty = scalar, U08, 4413, "%", 1, 0, 0, 100, 0
|
||||
gppwm4_loadAxis = bits, U08, 4414, [0:1], "TPS", "MAP", "CLT", "IAT"
|
||||
gppwm4_loadAxis = bits, U08, 4414, [0:2], "TPS", "MAP", "CLT", "IAT", "Fuel Load", "Ignition Load", "INVALID", "INVALID"
|
||||
gppwm4_alignmentFill_map = scalar, U08, 4415, "unit", 1, 0, 0, 100, 0
|
||||
gppwm4_loadBins = array, U08, 4416, [8], "load", 1, 0, 0.0, 250, 0
|
||||
gppwm4_rpmBins = array, U08, 4424, [8], "RPM", 50, 0, 0.0, 12000.0, 0
|
||||
|
@ -1203,7 +1203,7 @@ page = 1
|
|||
injectionMode = "This is where the fuel injection type is defined: "Simultaneous" means all injectors will fire together at once. "Sequential" fires the injectors on a per cylinder basis, which requires individually wired injectors. "Batched" will fire the injectors in groups. If your injectors are individually wired you will also need to enable "Two wire batch emulation". \nset injection_mode X\nSee also twoWireBatchInjection"
|
||||
extraInjectionOffset = "this is about deciding when the injector starts it's squirt\nSee also injectionPhase map\ntodo: do we need even need this since we have the map anyway?"
|
||||
crankingTimingAngle = "Ignition advance angle used during engine cranking, 5-10 degrees will work as a base setting for most engines.\nset cranking_timing_angle X"
|
||||
ignitionMode = ""One Coil" is for use on distributed ignition system. "Individual Coils" is to be used when you have one coil per cylinder (COP or similar). "Wasted" means one coil is driving two spark plugs in two cylinders, with one of the sparks not doing anything since it's happening on the exhaust cycle\nset ignition_mode X"
|
||||
ignitionMode = ""Single Coil" is for use on distributed ignition system. "Individual Coils" is to be used when you have one coil per cylinder (COP or similar). "Wasted Spark" means one coil is driving two spark plugs in two cylinders, with one of the sparks not doing anything since it's happening on the exhaust cycle\nset ignition_mode X"
|
||||
ignitionOffset = "this value could be used to offset the whole ignition timing table by a constant"
|
||||
timingMode = "Dynamic uses the timing map to decide the ignition timing, Static timing fixes the timing to the value set below (only use for checking static timing)."
|
||||
fixedModeTiming = "This value is the ignition timing used when in 'fixed timing' mode, i.e. constant timing\nThis mode is useful when adjusting distributor location."
|
||||
|
@ -1237,7 +1237,7 @@ page = 1
|
|||
isFasterEngineSpinUpEnabled = "Smarter cranking logic.\nSee also startOfCrankingPrimingPulse"
|
||||
coastingFuelCutEnabled = "This setting disables fuel injection while the engine is in overrun, this is useful as a fuel saving measure and to prevent back firing."
|
||||
useIacTableForCoasting = "This setting allows the ECU to open the IAC during overrun conditions to help reduce engine breaking, this can be helpful for large engines in light weight cars. Used in Auto-PID Idle mode."
|
||||
pauseEtbControl = "Disable the electronic throttle motor for testing.\nThis mode is for testing ETB position sensors, etc without actually driving the throttle."
|
||||
pauseEtbControl = "Disable the electronic throttle motor and DC idle motor for testing.\nThis mode is for testing ETB/DC idle position sensors, etc without actually driving the throttle."
|
||||
useETBforIdleControl = "This setting allows the ETB to act as the idle air control valve and move to regulate the airflow at idle."
|
||||
acIdleExtraMin = "Additional idle PID minValue while A/C is active"
|
||||
sdCardPeriodMs = "SD card logging period, in milliseconds"
|
||||
|
@ -1246,6 +1246,7 @@ page = 1
|
|||
sensorChartMode = "rusEfi console Sensor Sniffer mode"
|
||||
useHbridges = "If enabled we use two H-bridges to drive stepper idle air valve"
|
||||
stftIgnoreErrorMagnitude = "If enabled, adjust at a constant rate instead of a rate proportional to the current lambda error. This mode may be easier to tune, and more tolerant of sensor noise. Use of this mode is required if you have a narrowband O2 sensor.;"
|
||||
dcMotorIdleValve = "Used on some German vehicles around late 90s: cable-operated throttle and DC motor idle air valve.\nSet the primary TPS to the cable-operated throttle's sensor\nSet the secondary TPS to the mini ETB's position sensor(s)."
|
||||
launchSpeedTreshold = "Disabled above this speed"
|
||||
launchRpmTreshold = "Disabled below this rpm"
|
||||
launchTimingRpmRange = "Range from Launch Rpm for Timing Retard to activate"
|
||||
|
@ -1284,7 +1285,7 @@ page = 1
|
|||
verboseTriggerSynchDetails = "enable trigger_details"
|
||||
twoWireBatchInjection = "This is needed if your coils are individually wired and you wish to use batch injection.\nenable two_wire_batch_injection"
|
||||
useOnlyRisingEdgeForTrigger = "VR sensors are only precise on rising front\nenable trigger_only_front"
|
||||
twoWireBatchIgnition = "This is needed if your coils are individually wired (COP) and you wish to use batch ignition (wasted spark)."
|
||||
twoWireBatchIgnition = "This is needed if your coils are individually wired (COP) and you wish to use batch ignition (Wasted Spark)."
|
||||
useSeparateAdvanceForCranking = "This activates a separate advance table for cranking conditions, this allows cranking advance to be RPM dependant."
|
||||
useAdvanceCorrectionsForCranking = "This enables the various ignition corrections during cranking (IAT, CLT, FSIO and PID idle)."
|
||||
useTPSAdvanceTable = "This flag allows to use TPS for ignition lookup while in Speed Density Fuel Mode"
|
||||
|
@ -1490,8 +1491,8 @@ page = 1
|
|||
internalMcuTemperature = scalar,S08, 11, "deg C", 1, 0
|
||||
coolant = scalar, S16, 12, "deg C",{1/100}, 0.0
|
||||
intake = scalar, S16, 14, "deg C",{1/100}, 0.0
|
||||
; todo: aux1
|
||||
; todo: aux2
|
||||
auxt1 = scalar, S16, 16, "deg C",{1/100}, 0.0
|
||||
auxt2 = scalar, S16, 18, "deg C",{1/100}, 0.0
|
||||
|
||||
|
||||
; throttle, pedal
|
||||
|
@ -1631,7 +1632,7 @@ page = 1
|
|||
rawOilPressure = scalar, U16, 242, "V",{1/1000}, 0.0
|
||||
|
||||
; we use this to match logs to tunes
|
||||
tuneCrc16= scalar, U16, 244, "crc16", 1, 0
|
||||
tuneCrc16 = scalar, U16, 244, "crc16", 1, 0
|
||||
|
||||
;
|
||||
; see TunerStudioOutputChannels struct
|
||||
|
@ -1647,10 +1648,10 @@ page = 1
|
|||
time = { timeNow }
|
||||
|
||||
; These "synthetic" channels provide the Y-axis (load) value for gen purp PWM table's Y axes
|
||||
gppwm1_load = {(gppwm1_loadAxis == 0) ? TPSValue : ((gppwm1_loadAxis == 1) ? MAPValue : ((gppwm1_loadAxis == 2) ? coolant : intake))}
|
||||
gppwm2_load = {(gppwm2_loadAxis == 0) ? TPSValue : ((gppwm2_loadAxis == 1) ? MAPValue : ((gppwm2_loadAxis == 2) ? coolant : intake))}
|
||||
gppwm3_load = {(gppwm3_loadAxis == 0) ? TPSValue : ((gppwm3_loadAxis == 1) ? MAPValue : ((gppwm3_loadAxis == 2) ? coolant : intake))}
|
||||
gppwm4_load = {(gppwm4_loadAxis == 0) ? TPSValue : ((gppwm4_loadAxis == 1) ? MAPValue : ((gppwm4_loadAxis == 2) ? coolant : intake))}
|
||||
gppwm1_load = {(gppwm1_loadAxis == 0) ? TPSValue : ((gppwm1_loadAxis == 1) ? MAPValue : ((gppwm1_loadAxis == 2) ? coolant : ((gppwm1_loadAxis == 3) ? intake : ((gppwm1_loadAxis == 4) ? fuelingLoad : ignitionLoad))))}
|
||||
gppwm2_load = {(gppwm2_loadAxis == 0) ? TPSValue : ((gppwm2_loadAxis == 1) ? MAPValue : ((gppwm2_loadAxis == 2) ? coolant : ((gppwm2_loadAxis == 3) ? intake : ((gppwm2_loadAxis == 4) ? fuelingLoad : ignitionLoad))))}
|
||||
gppwm3_load = {(gppwm3_loadAxis == 0) ? TPSValue : ((gppwm3_loadAxis == 1) ? MAPValue : ((gppwm3_loadAxis == 2) ? coolant : ((gppwm3_loadAxis == 3) ? intake : ((gppwm3_loadAxis == 4) ? fuelingLoad : ignitionLoad))))}
|
||||
gppwm4_load = {(gppwm4_loadAxis == 0) ? TPSValue : ((gppwm4_loadAxis == 1) ? MAPValue : ((gppwm4_loadAxis == 2) ? coolant : ((gppwm4_loadAxis == 3) ? intake : ((gppwm4_loadAxis == 4) ? fuelingLoad : ignitionLoad))))}
|
||||
|
||||
[PcVariables]
|
||||
tuneCrcPcVariable = continuousChannelValue, tuneCrc16
|
||||
|
@ -2226,6 +2227,8 @@ gaugeCategory = Sensors - Extra 1
|
|||
internalMcuTemperatureGauge = internalMcuTemperature, "ECU temperature", "C", 0, 100, 0, 0, 75, 100, 0, 0
|
||||
OilPressGauge = oilPressure, "Oil Pressure", "kPa", 0, 750, 35, 75, 550, 700, 0, 0
|
||||
idleAirValvePositionGauge = idleAirValvePosition, "Idle position", "%", 0, 100, 0, 0, 100, 100, 1, 1
|
||||
AuxT1Gauge = auxt1, "Aux temp 1", "deg C", -40, 140, -15, 1, 95, 110, 1, 1
|
||||
AuxT2Gauge = auxt2, "Aux temp 2", "deg C", -40, 140, -15, 1, 95, 110, 1, 1
|
||||
|
||||
gaugeCategory = Ignition
|
||||
ignadvGauge = ignitionAdvance, "Ignition timing", "degrees", -100, 100, -999, -999, 999, 999, 1, 1
|
||||
|
@ -3533,7 +3536,7 @@ cmd_set_engine_type_default = "w\x00\x31\x00\x00"
|
|||
dialog = idleSettings, "", yAxis
|
||||
field = "Idle IAC control mode", idleMode
|
||||
field = useInstantRpmForIdle, useInstantRpmForIdle
|
||||
field = "use ETB for idle", useETBforIdleControl
|
||||
field = "use ETB for idle", useETBforIdleControl, { throttlePedalPositionAdcChannel != 16 }
|
||||
field = "ETB Idle range", etbIdleThrottleRange, {useETBforIdleControl == 1}
|
||||
field = "Use separate Ignition Table for idle", useSeparateAdvanceForIdle
|
||||
field = "Use separate VE Table for idle", useSeparateVeForIdle
|
||||
|
@ -4124,13 +4127,13 @@ cmd_set_engine_type_default = "w\x00\x31\x00\x00"
|
|||
panel = veTableMap, South
|
||||
|
||||
dialog = etbPidDialog, "PID settings"
|
||||
field = "pFactor", etb_pFactor, {throttlePedalPositionAdcChannel != 16}
|
||||
field = "iFactor", etb_iFactor, {throttlePedalPositionAdcChannel != 16}
|
||||
field = "dFactor", etb_dFactor, {throttlePedalPositionAdcChannel != 16}
|
||||
field = "pid min", etb_minValue, {throttlePedalPositionAdcChannel != 16}
|
||||
field = "pid max", etb_maxValue, {throttlePedalPositionAdcChannel != 16}
|
||||
field = "iTermMin", etb_iTermMin, {throttlePedalPositionAdcChannel != 16}
|
||||
field = "iTermMax", etb_iTermMax, {throttlePedalPositionAdcChannel != 16}
|
||||
field = "pFactor", etb_pFactor
|
||||
field = "iFactor", etb_iFactor
|
||||
field = "dFactor", etb_dFactor
|
||||
field = "pid min", etb_minValue
|
||||
field = "pid max", etb_maxValue
|
||||
field = "iTermMin", etb_iTermMin
|
||||
field = "iTermMax", etb_iTermMax
|
||||
|
||||
dialog = etbIdleDialog, "ETB Idle"
|
||||
field = "use ETB for idle", useETBforIdleControl
|
||||
|
@ -4138,11 +4141,12 @@ cmd_set_engine_type_default = "w\x00\x31\x00\x00"
|
|||
|
||||
dialog = etbDialogLeft
|
||||
field = "https://rusefi.com/s/etb"
|
||||
field = "Late 90s German DC Motor idle", dcMotorIdleValve, { throttlePedalPositionAdcChannel == 16 }
|
||||
field = "Detailed status in console", isVerboseETB
|
||||
field = "Disable ETB Motor", pauseEtbControl
|
||||
; we need the term about stepper idle in here, because there's a bug in TS that you can't have different visibility
|
||||
; criteria for the same panel when used in multiple places
|
||||
panel = hbridgeHardware, { throttlePedalPositionAdcChannel != 16 || useStepperIdle && useHbridges }
|
||||
panel = hbridgeHardware, { throttlePedalPositionAdcChannel != 16 || (useStepperIdle && useHbridges) || dcMotorIdleValve }
|
||||
|
||||
dialog = etbAutotune, "PID Autotune"
|
||||
commandButton = "Start ETB PID Autotune", cmd_etb_autotune
|
||||
|
@ -4154,8 +4158,8 @@ cmd_set_engine_type_default = "w\x00\x31\x00\x00"
|
|||
field = "Debug mode", debugMode
|
||||
|
||||
dialog = etbDialogRight
|
||||
panel = etbIdleDialog
|
||||
panel = etbPidDialog
|
||||
panel = etbIdleDialog, { throttlePedalPositionAdcChannel != 16 }
|
||||
panel = etbPidDialog, { (throttlePedalPositionAdcChannel != 16) || dcMotorIdleValve }
|
||||
panel = etbAutotune
|
||||
|
||||
; Neutral position handling not yet implemented!
|
||||
|
|
|
@ -33,12 +33,12 @@ enable2ndByteCanID = false
|
|||
|
||||
[MegaTune]
|
||||
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
|
||||
signature = "rusEFI 2020.07.22.mre_f7.1622770353"
|
||||
signature = "rusEFI 2020.07.28.mre_f7.302538475"
|
||||
|
||||
[TunerStudio]
|
||||
queryCommand = "S"
|
||||
versionInfo = "V" ; firmwave version for title bar.
|
||||
signature = "rusEFI 2020.07.22.mre_f7.1622770353" ; signature is expected to be 7 or more characters.
|
||||
signature = "rusEFI 2020.07.28.mre_f7.302538475" ; signature is expected to be 7 or more characters.
|
||||
|
||||
[Constants]
|
||||
; new packet serial format with CRC
|
||||
|
@ -76,7 +76,7 @@ enable2ndByteCanID = false
|
|||
|
||||
; see PAGE_0_SIZE in C source code
|
||||
; CONFIG_DEFINITION_START
|
||||
; this section was generated automatically by rusEfi tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Wed Jul 22 19:41:05 UTC 2020
|
||||
; this section was generated automatically by rusEfi tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Tue Jul 28 13:12:16 UTC 2020
|
||||
|
||||
pageSize = 20000
|
||||
page = 1
|
||||
|
@ -166,12 +166,12 @@ page = 1
|
|||
cylinderBore = scalar, F32, 408, "mm", 1, 0, 0, 20000.0, 2
|
||||
sensorSnifferRpmThreshold = scalar, S32, 412, "RPM", 1, 0, 0,30000, 0
|
||||
rpmHardLimit = scalar, S32, 416, "rpm", 1, 0, 0, 20000.0, 2
|
||||
fuelAlgorithm = bits, U32, 420, [0:2], "MAF", "Alpha-N/TPS", "INVALID", "SPEED DENSITY", "MAF Air Charge", "INVALID", "INVALID", "INVALID"
|
||||
fuelAlgorithm = bits, U32, 420, [0:2], "MAF", "Alpha-N/TPS", "INVALID", "Speed Density", "MAF Air Charge", "Alpha-N", "INVALID", "INVALID"
|
||||
crankingInjectionMode = bits, U32, 424, [0:1], "Simultaneous", "Sequential", "Batch", "Single Point"
|
||||
injectionMode = bits, U32, 428, [0:1], "Simultaneous", "Sequential", "Batch", "Single Point"
|
||||
extraInjectionOffset = scalar, F32, 432, "deg", 1, 0.0, -720, 720, 2
|
||||
crankingTimingAngle = scalar, F32, 436, "deg", 1, 0.0, -360, 360, 2
|
||||
ignitionMode = bits, U32, 440, [0:1], "One coil", "Individual Coils", "Wasted", "Two distributors"
|
||||
ignitionMode = bits, U32, 440, [0:1], "Single Coil", "Individual Coils", "Wasted Spark", "Two Distributors"
|
||||
ignitionOffset = scalar, F32, 444, "RPM", 1, 0, 0, 3000.0, 0
|
||||
timingMode = bits, U32, 448 [0:0], "dynamic", "fixed"
|
||||
fixedModeTiming = scalar, F32, 452, "RPM", 1, 0, 0, 3000.0, 0
|
||||
|
@ -541,7 +541,7 @@ page = 1
|
|||
enableInnovateLC2 = bits, U32, 976, [8:8], "false", "true"
|
||||
showHumanReadableWarning= bits, U32, 976, [9:9], "false", "true"
|
||||
stftIgnoreErrorMagnitude= bits, U32, 976, [10:10], "false", "true"
|
||||
unusedBit_251_11 = bits, U32, 976, [11:11], "false", "true"
|
||||
dcMotorIdleValve = bits, U32, 976, [11:11], "false", "true"
|
||||
unusedBit_251_12 = bits, U32, 976, [12:12], "false", "true"
|
||||
unusedBit_251_13 = bits, U32, 976, [13:13], "false", "true"
|
||||
unusedBit_251_14 = bits, U32, 976, [14:14], "false", "true"
|
||||
|
@ -1050,7 +1050,7 @@ page = 1
|
|||
gppwm1_pwmFrequency = scalar, U16, 4146, "hz", 1, 0, 0, 500, 0
|
||||
gppwm1_onAboveDuty = scalar, U08, 4148, "%", 1, 0, 0, 100, 0
|
||||
gppwm1_offBelowDuty = scalar, U08, 4149, "%", 1, 0, 0, 100, 0
|
||||
gppwm1_loadAxis = bits, U08, 4150, [0:1], "TPS", "MAP", "CLT", "IAT"
|
||||
gppwm1_loadAxis = bits, U08, 4150, [0:2], "TPS", "MAP", "CLT", "IAT", "Fuel Load", "Ignition Load", "INVALID", "INVALID"
|
||||
gppwm1_alignmentFill_map = scalar, U08, 4151, "unit", 1, 0, 0, 100, 0
|
||||
gppwm1_loadBins = array, U08, 4152, [8], "load", 1, 0, 0.0, 250, 0
|
||||
gppwm1_rpmBins = array, U08, 4160, [8], "RPM", 50, 0, 0.0, 12000.0, 0
|
||||
|
@ -1060,7 +1060,7 @@ page = 1
|
|||
gppwm2_pwmFrequency = scalar, U16, 4234, "hz", 1, 0, 0, 500, 0
|
||||
gppwm2_onAboveDuty = scalar, U08, 4236, "%", 1, 0, 0, 100, 0
|
||||
gppwm2_offBelowDuty = scalar, U08, 4237, "%", 1, 0, 0, 100, 0
|
||||
gppwm2_loadAxis = bits, U08, 4238, [0:1], "TPS", "MAP", "CLT", "IAT"
|
||||
gppwm2_loadAxis = bits, U08, 4238, [0:2], "TPS", "MAP", "CLT", "IAT", "Fuel Load", "Ignition Load", "INVALID", "INVALID"
|
||||
gppwm2_alignmentFill_map = scalar, U08, 4239, "unit", 1, 0, 0, 100, 0
|
||||
gppwm2_loadBins = array, U08, 4240, [8], "load", 1, 0, 0.0, 250, 0
|
||||
gppwm2_rpmBins = array, U08, 4248, [8], "RPM", 50, 0, 0.0, 12000.0, 0
|
||||
|
@ -1070,7 +1070,7 @@ page = 1
|
|||
gppwm3_pwmFrequency = scalar, U16, 4322, "hz", 1, 0, 0, 500, 0
|
||||
gppwm3_onAboveDuty = scalar, U08, 4324, "%", 1, 0, 0, 100, 0
|
||||
gppwm3_offBelowDuty = scalar, U08, 4325, "%", 1, 0, 0, 100, 0
|
||||
gppwm3_loadAxis = bits, U08, 4326, [0:1], "TPS", "MAP", "CLT", "IAT"
|
||||
gppwm3_loadAxis = bits, U08, 4326, [0:2], "TPS", "MAP", "CLT", "IAT", "Fuel Load", "Ignition Load", "INVALID", "INVALID"
|
||||
gppwm3_alignmentFill_map = scalar, U08, 4327, "unit", 1, 0, 0, 100, 0
|
||||
gppwm3_loadBins = array, U08, 4328, [8], "load", 1, 0, 0.0, 250, 0
|
||||
gppwm3_rpmBins = array, U08, 4336, [8], "RPM", 50, 0, 0.0, 12000.0, 0
|
||||
|
@ -1080,7 +1080,7 @@ page = 1
|
|||
gppwm4_pwmFrequency = scalar, U16, 4410, "hz", 1, 0, 0, 500, 0
|
||||
gppwm4_onAboveDuty = scalar, U08, 4412, "%", 1, 0, 0, 100, 0
|
||||
gppwm4_offBelowDuty = scalar, U08, 4413, "%", 1, 0, 0, 100, 0
|
||||
gppwm4_loadAxis = bits, U08, 4414, [0:1], "TPS", "MAP", "CLT", "IAT"
|
||||
gppwm4_loadAxis = bits, U08, 4414, [0:2], "TPS", "MAP", "CLT", "IAT", "Fuel Load", "Ignition Load", "INVALID", "INVALID"
|
||||
gppwm4_alignmentFill_map = scalar, U08, 4415, "unit", 1, 0, 0, 100, 0
|
||||
gppwm4_loadBins = array, U08, 4416, [8], "load", 1, 0, 0.0, 250, 0
|
||||
gppwm4_rpmBins = array, U08, 4424, [8], "RPM", 50, 0, 0.0, 12000.0, 0
|
||||
|
@ -1203,7 +1203,7 @@ page = 1
|
|||
injectionMode = "This is where the fuel injection type is defined: "Simultaneous" means all injectors will fire together at once. "Sequential" fires the injectors on a per cylinder basis, which requires individually wired injectors. "Batched" will fire the injectors in groups. If your injectors are individually wired you will also need to enable "Two wire batch emulation". \nset injection_mode X\nSee also twoWireBatchInjection"
|
||||
extraInjectionOffset = "this is about deciding when the injector starts it's squirt\nSee also injectionPhase map\ntodo: do we need even need this since we have the map anyway?"
|
||||
crankingTimingAngle = "Ignition advance angle used during engine cranking, 5-10 degrees will work as a base setting for most engines.\nset cranking_timing_angle X"
|
||||
ignitionMode = ""One Coil" is for use on distributed ignition system. "Individual Coils" is to be used when you have one coil per cylinder (COP or similar). "Wasted" means one coil is driving two spark plugs in two cylinders, with one of the sparks not doing anything since it's happening on the exhaust cycle\nset ignition_mode X"
|
||||
ignitionMode = ""Single Coil" is for use on distributed ignition system. "Individual Coils" is to be used when you have one coil per cylinder (COP or similar). "Wasted Spark" means one coil is driving two spark plugs in two cylinders, with one of the sparks not doing anything since it's happening on the exhaust cycle\nset ignition_mode X"
|
||||
ignitionOffset = "this value could be used to offset the whole ignition timing table by a constant"
|
||||
timingMode = "Dynamic uses the timing map to decide the ignition timing, Static timing fixes the timing to the value set below (only use for checking static timing)."
|
||||
fixedModeTiming = "This value is the ignition timing used when in 'fixed timing' mode, i.e. constant timing\nThis mode is useful when adjusting distributor location."
|
||||
|
@ -1237,7 +1237,7 @@ page = 1
|
|||
isFasterEngineSpinUpEnabled = "Smarter cranking logic.\nSee also startOfCrankingPrimingPulse"
|
||||
coastingFuelCutEnabled = "This setting disables fuel injection while the engine is in overrun, this is useful as a fuel saving measure and to prevent back firing."
|
||||
useIacTableForCoasting = "This setting allows the ECU to open the IAC during overrun conditions to help reduce engine breaking, this can be helpful for large engines in light weight cars. Used in Auto-PID Idle mode."
|
||||
pauseEtbControl = "Disable the electronic throttle motor for testing.\nThis mode is for testing ETB position sensors, etc without actually driving the throttle."
|
||||
pauseEtbControl = "Disable the electronic throttle motor and DC idle motor for testing.\nThis mode is for testing ETB/DC idle position sensors, etc without actually driving the throttle."
|
||||
useETBforIdleControl = "This setting allows the ETB to act as the idle air control valve and move to regulate the airflow at idle."
|
||||
acIdleExtraMin = "Additional idle PID minValue while A/C is active"
|
||||
sdCardPeriodMs = "SD card logging period, in milliseconds"
|
||||
|
@ -1246,6 +1246,7 @@ page = 1
|
|||
sensorChartMode = "rusEfi console Sensor Sniffer mode"
|
||||
useHbridges = "If enabled we use two H-bridges to drive stepper idle air valve"
|
||||
stftIgnoreErrorMagnitude = "If enabled, adjust at a constant rate instead of a rate proportional to the current lambda error. This mode may be easier to tune, and more tolerant of sensor noise. Use of this mode is required if you have a narrowband O2 sensor.;"
|
||||
dcMotorIdleValve = "Used on some German vehicles around late 90s: cable-operated throttle and DC motor idle air valve.\nSet the primary TPS to the cable-operated throttle's sensor\nSet the secondary TPS to the mini ETB's position sensor(s)."
|
||||
launchSpeedTreshold = "Disabled above this speed"
|
||||
launchRpmTreshold = "Disabled below this rpm"
|
||||
launchTimingRpmRange = "Range from Launch Rpm for Timing Retard to activate"
|
||||
|
@ -1284,7 +1285,7 @@ page = 1
|
|||
verboseTriggerSynchDetails = "enable trigger_details"
|
||||
twoWireBatchInjection = "This is needed if your coils are individually wired and you wish to use batch injection.\nenable two_wire_batch_injection"
|
||||
useOnlyRisingEdgeForTrigger = "VR sensors are only precise on rising front\nenable trigger_only_front"
|
||||
twoWireBatchIgnition = "This is needed if your coils are individually wired (COP) and you wish to use batch ignition (wasted spark)."
|
||||
twoWireBatchIgnition = "This is needed if your coils are individually wired (COP) and you wish to use batch ignition (Wasted Spark)."
|
||||
useSeparateAdvanceForCranking = "This activates a separate advance table for cranking conditions, this allows cranking advance to be RPM dependant."
|
||||
useAdvanceCorrectionsForCranking = "This enables the various ignition corrections during cranking (IAT, CLT, FSIO and PID idle)."
|
||||
useTPSAdvanceTable = "This flag allows to use TPS for ignition lookup while in Speed Density Fuel Mode"
|
||||
|
@ -1490,8 +1491,8 @@ page = 1
|
|||
internalMcuTemperature = scalar,S08, 11, "deg C", 1, 0
|
||||
coolant = scalar, S16, 12, "deg C",{1/100}, 0.0
|
||||
intake = scalar, S16, 14, "deg C",{1/100}, 0.0
|
||||
; todo: aux1
|
||||
; todo: aux2
|
||||
auxt1 = scalar, S16, 16, "deg C",{1/100}, 0.0
|
||||
auxt2 = scalar, S16, 18, "deg C",{1/100}, 0.0
|
||||
|
||||
|
||||
; throttle, pedal
|
||||
|
@ -1631,7 +1632,7 @@ page = 1
|
|||
rawOilPressure = scalar, U16, 242, "V",{1/1000}, 0.0
|
||||
|
||||
; we use this to match logs to tunes
|
||||
tuneCrc16= scalar, U16, 244, "crc16", 1, 0
|
||||
tuneCrc16 = scalar, U16, 244, "crc16", 1, 0
|
||||
|
||||
;
|
||||
; see TunerStudioOutputChannels struct
|
||||
|
@ -1647,10 +1648,10 @@ page = 1
|
|||
time = { timeNow }
|
||||
|
||||
; These "synthetic" channels provide the Y-axis (load) value for gen purp PWM table's Y axes
|
||||
gppwm1_load = {(gppwm1_loadAxis == 0) ? TPSValue : ((gppwm1_loadAxis == 1) ? MAPValue : ((gppwm1_loadAxis == 2) ? coolant : intake))}
|
||||
gppwm2_load = {(gppwm2_loadAxis == 0) ? TPSValue : ((gppwm2_loadAxis == 1) ? MAPValue : ((gppwm2_loadAxis == 2) ? coolant : intake))}
|
||||
gppwm3_load = {(gppwm3_loadAxis == 0) ? TPSValue : ((gppwm3_loadAxis == 1) ? MAPValue : ((gppwm3_loadAxis == 2) ? coolant : intake))}
|
||||
gppwm4_load = {(gppwm4_loadAxis == 0) ? TPSValue : ((gppwm4_loadAxis == 1) ? MAPValue : ((gppwm4_loadAxis == 2) ? coolant : intake))}
|
||||
gppwm1_load = {(gppwm1_loadAxis == 0) ? TPSValue : ((gppwm1_loadAxis == 1) ? MAPValue : ((gppwm1_loadAxis == 2) ? coolant : ((gppwm1_loadAxis == 3) ? intake : ((gppwm1_loadAxis == 4) ? fuelingLoad : ignitionLoad))))}
|
||||
gppwm2_load = {(gppwm2_loadAxis == 0) ? TPSValue : ((gppwm2_loadAxis == 1) ? MAPValue : ((gppwm2_loadAxis == 2) ? coolant : ((gppwm2_loadAxis == 3) ? intake : ((gppwm2_loadAxis == 4) ? fuelingLoad : ignitionLoad))))}
|
||||
gppwm3_load = {(gppwm3_loadAxis == 0) ? TPSValue : ((gppwm3_loadAxis == 1) ? MAPValue : ((gppwm3_loadAxis == 2) ? coolant : ((gppwm3_loadAxis == 3) ? intake : ((gppwm3_loadAxis == 4) ? fuelingLoad : ignitionLoad))))}
|
||||
gppwm4_load = {(gppwm4_loadAxis == 0) ? TPSValue : ((gppwm4_loadAxis == 1) ? MAPValue : ((gppwm4_loadAxis == 2) ? coolant : ((gppwm4_loadAxis == 3) ? intake : ((gppwm4_loadAxis == 4) ? fuelingLoad : ignitionLoad))))}
|
||||
|
||||
[PcVariables]
|
||||
tuneCrcPcVariable = continuousChannelValue, tuneCrc16
|
||||
|
@ -2226,6 +2227,8 @@ gaugeCategory = Sensors - Extra 1
|
|||
internalMcuTemperatureGauge = internalMcuTemperature, "ECU temperature", "C", 0, 100, 0, 0, 75, 100, 0, 0
|
||||
OilPressGauge = oilPressure, "Oil Pressure", "kPa", 0, 750, 35, 75, 550, 700, 0, 0
|
||||
idleAirValvePositionGauge = idleAirValvePosition, "Idle position", "%", 0, 100, 0, 0, 100, 100, 1, 1
|
||||
AuxT1Gauge = auxt1, "Aux temp 1", "deg C", -40, 140, -15, 1, 95, 110, 1, 1
|
||||
AuxT2Gauge = auxt2, "Aux temp 2", "deg C", -40, 140, -15, 1, 95, 110, 1, 1
|
||||
|
||||
gaugeCategory = Ignition
|
||||
ignadvGauge = ignitionAdvance, "Ignition timing", "degrees", -100, 100, -999, -999, 999, 999, 1, 1
|
||||
|
@ -3533,7 +3536,7 @@ cmd_set_engine_type_default = "w\x00\x31\x00\x00"
|
|||
dialog = idleSettings, "", yAxis
|
||||
field = "Idle IAC control mode", idleMode
|
||||
field = useInstantRpmForIdle, useInstantRpmForIdle
|
||||
field = "use ETB for idle", useETBforIdleControl
|
||||
field = "use ETB for idle", useETBforIdleControl, { throttlePedalPositionAdcChannel != 16 }
|
||||
field = "ETB Idle range", etbIdleThrottleRange, {useETBforIdleControl == 1}
|
||||
field = "Use separate Ignition Table for idle", useSeparateAdvanceForIdle
|
||||
field = "Use separate VE Table for idle", useSeparateVeForIdle
|
||||
|
@ -4124,13 +4127,13 @@ cmd_set_engine_type_default = "w\x00\x31\x00\x00"
|
|||
panel = veTableMap, South
|
||||
|
||||
dialog = etbPidDialog, "PID settings"
|
||||
field = "pFactor", etb_pFactor, {throttlePedalPositionAdcChannel != 16}
|
||||
field = "iFactor", etb_iFactor, {throttlePedalPositionAdcChannel != 16}
|
||||
field = "dFactor", etb_dFactor, {throttlePedalPositionAdcChannel != 16}
|
||||
field = "pid min", etb_minValue, {throttlePedalPositionAdcChannel != 16}
|
||||
field = "pid max", etb_maxValue, {throttlePedalPositionAdcChannel != 16}
|
||||
field = "iTermMin", etb_iTermMin, {throttlePedalPositionAdcChannel != 16}
|
||||
field = "iTermMax", etb_iTermMax, {throttlePedalPositionAdcChannel != 16}
|
||||
field = "pFactor", etb_pFactor
|
||||
field = "iFactor", etb_iFactor
|
||||
field = "dFactor", etb_dFactor
|
||||
field = "pid min", etb_minValue
|
||||
field = "pid max", etb_maxValue
|
||||
field = "iTermMin", etb_iTermMin
|
||||
field = "iTermMax", etb_iTermMax
|
||||
|
||||
dialog = etbIdleDialog, "ETB Idle"
|
||||
field = "use ETB for idle", useETBforIdleControl
|
||||
|
@ -4138,11 +4141,12 @@ cmd_set_engine_type_default = "w\x00\x31\x00\x00"
|
|||
|
||||
dialog = etbDialogLeft
|
||||
field = "https://rusefi.com/s/etb"
|
||||
field = "Late 90s German DC Motor idle", dcMotorIdleValve, { throttlePedalPositionAdcChannel == 16 }
|
||||
field = "Detailed status in console", isVerboseETB
|
||||
field = "Disable ETB Motor", pauseEtbControl
|
||||
; we need the term about stepper idle in here, because there's a bug in TS that you can't have different visibility
|
||||
; criteria for the same panel when used in multiple places
|
||||
panel = hbridgeHardware, { throttlePedalPositionAdcChannel != 16 || useStepperIdle && useHbridges }
|
||||
panel = hbridgeHardware, { throttlePedalPositionAdcChannel != 16 || (useStepperIdle && useHbridges) || dcMotorIdleValve }
|
||||
|
||||
dialog = etbAutotune, "PID Autotune"
|
||||
commandButton = "Start ETB PID Autotune", cmd_etb_autotune
|
||||
|
@ -4154,8 +4158,8 @@ cmd_set_engine_type_default = "w\x00\x31\x00\x00"
|
|||
field = "Debug mode", debugMode
|
||||
|
||||
dialog = etbDialogRight
|
||||
panel = etbIdleDialog
|
||||
panel = etbPidDialog
|
||||
panel = etbIdleDialog, { throttlePedalPositionAdcChannel != 16 }
|
||||
panel = etbPidDialog, { (throttlePedalPositionAdcChannel != 16) || dcMotorIdleValve }
|
||||
panel = etbAutotune
|
||||
|
||||
; Neutral position handling not yet implemented!
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -33,12 +33,12 @@ enable2ndByteCanID = false
|
|||
|
||||
[MegaTune]
|
||||
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
|
||||
signature = "rusEFI 2020.07.22.prometheus_405.3696987323"
|
||||
signature = "rusEFI 2020.07.28.prometheus_405.2934591713"
|
||||
|
||||
[TunerStudio]
|
||||
queryCommand = "S"
|
||||
versionInfo = "V" ; firmwave version for title bar.
|
||||
signature = "rusEFI 2020.07.22.prometheus_405.3696987323" ; signature is expected to be 7 or more characters.
|
||||
signature = "rusEFI 2020.07.28.prometheus_405.2934591713" ; signature is expected to be 7 or more characters.
|
||||
|
||||
[Constants]
|
||||
; new packet serial format with CRC
|
||||
|
@ -76,7 +76,7 @@ enable2ndByteCanID = false
|
|||
|
||||
; see PAGE_0_SIZE in C source code
|
||||
; CONFIG_DEFINITION_START
|
||||
; this section was generated automatically by rusEfi tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Wed Jul 22 19:41:13 UTC 2020
|
||||
; this section was generated automatically by rusEfi tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Tue Jul 28 13:12:21 UTC 2020
|
||||
|
||||
pageSize = 20000
|
||||
page = 1
|
||||
|
@ -166,12 +166,12 @@ page = 1
|
|||
cylinderBore = scalar, F32, 408, "mm", 1, 0, 0, 20000.0, 2
|
||||
sensorSnifferRpmThreshold = scalar, S32, 412, "RPM", 1, 0, 0,30000, 0
|
||||
rpmHardLimit = scalar, S32, 416, "rpm", 1, 0, 0, 20000.0, 2
|
||||
fuelAlgorithm = bits, U32, 420, [0:2], "MAF", "Alpha-N/TPS", "INVALID", "SPEED DENSITY", "MAF Air Charge", "INVALID", "INVALID", "INVALID"
|
||||
fuelAlgorithm = bits, U32, 420, [0:2], "MAF", "Alpha-N/TPS", "INVALID", "Speed Density", "MAF Air Charge", "Alpha-N", "INVALID", "INVALID"
|
||||
crankingInjectionMode = bits, U32, 424, [0:1], "Simultaneous", "Sequential", "Batch", "Single Point"
|
||||
injectionMode = bits, U32, 428, [0:1], "Simultaneous", "Sequential", "Batch", "Single Point"
|
||||
extraInjectionOffset = scalar, F32, 432, "deg", 1, 0.0, -720, 720, 2
|
||||
crankingTimingAngle = scalar, F32, 436, "deg", 1, 0.0, -360, 360, 2
|
||||
ignitionMode = bits, U32, 440, [0:1], "One coil", "Individual Coils", "Wasted", "Two distributors"
|
||||
ignitionMode = bits, U32, 440, [0:1], "Single Coil", "Individual Coils", "Wasted Spark", "Two Distributors"
|
||||
ignitionOffset = scalar, F32, 444, "RPM", 1, 0, 0, 3000.0, 0
|
||||
timingMode = bits, U32, 448 [0:0], "dynamic", "fixed"
|
||||
fixedModeTiming = scalar, F32, 452, "RPM", 1, 0, 0, 3000.0, 0
|
||||
|
@ -541,7 +541,7 @@ page = 1
|
|||
enableInnovateLC2 = bits, U32, 976, [8:8], "false", "true"
|
||||
showHumanReadableWarning= bits, U32, 976, [9:9], "false", "true"
|
||||
stftIgnoreErrorMagnitude= bits, U32, 976, [10:10], "false", "true"
|
||||
unusedBit_251_11 = bits, U32, 976, [11:11], "false", "true"
|
||||
dcMotorIdleValve = bits, U32, 976, [11:11], "false", "true"
|
||||
unusedBit_251_12 = bits, U32, 976, [12:12], "false", "true"
|
||||
unusedBit_251_13 = bits, U32, 976, [13:13], "false", "true"
|
||||
unusedBit_251_14 = bits, U32, 976, [14:14], "false", "true"
|
||||
|
@ -1050,7 +1050,7 @@ page = 1
|
|||
gppwm1_pwmFrequency = scalar, U16, 4146, "hz", 1, 0, 0, 500, 0
|
||||
gppwm1_onAboveDuty = scalar, U08, 4148, "%", 1, 0, 0, 100, 0
|
||||
gppwm1_offBelowDuty = scalar, U08, 4149, "%", 1, 0, 0, 100, 0
|
||||
gppwm1_loadAxis = bits, U08, 4150, [0:1], "TPS", "MAP", "CLT", "IAT"
|
||||
gppwm1_loadAxis = bits, U08, 4150, [0:2], "TPS", "MAP", "CLT", "IAT", "Fuel Load", "Ignition Load", "INVALID", "INVALID"
|
||||
gppwm1_alignmentFill_map = scalar, U08, 4151, "unit", 1, 0, 0, 100, 0
|
||||
gppwm1_loadBins = array, U08, 4152, [8], "load", 1, 0, 0.0, 250, 0
|
||||
gppwm1_rpmBins = array, U08, 4160, [8], "RPM", 50, 0, 0.0, 12000.0, 0
|
||||
|
@ -1060,7 +1060,7 @@ page = 1
|
|||
gppwm2_pwmFrequency = scalar, U16, 4234, "hz", 1, 0, 0, 500, 0
|
||||
gppwm2_onAboveDuty = scalar, U08, 4236, "%", 1, 0, 0, 100, 0
|
||||
gppwm2_offBelowDuty = scalar, U08, 4237, "%", 1, 0, 0, 100, 0
|
||||
gppwm2_loadAxis = bits, U08, 4238, [0:1], "TPS", "MAP", "CLT", "IAT"
|
||||
gppwm2_loadAxis = bits, U08, 4238, [0:2], "TPS", "MAP", "CLT", "IAT", "Fuel Load", "Ignition Load", "INVALID", "INVALID"
|
||||
gppwm2_alignmentFill_map = scalar, U08, 4239, "unit", 1, 0, 0, 100, 0
|
||||
gppwm2_loadBins = array, U08, 4240, [8], "load", 1, 0, 0.0, 250, 0
|
||||
gppwm2_rpmBins = array, U08, 4248, [8], "RPM", 50, 0, 0.0, 12000.0, 0
|
||||
|
@ -1070,7 +1070,7 @@ page = 1
|
|||
gppwm3_pwmFrequency = scalar, U16, 4322, "hz", 1, 0, 0, 500, 0
|
||||
gppwm3_onAboveDuty = scalar, U08, 4324, "%", 1, 0, 0, 100, 0
|
||||
gppwm3_offBelowDuty = scalar, U08, 4325, "%", 1, 0, 0, 100, 0
|
||||
gppwm3_loadAxis = bits, U08, 4326, [0:1], "TPS", "MAP", "CLT", "IAT"
|
||||
gppwm3_loadAxis = bits, U08, 4326, [0:2], "TPS", "MAP", "CLT", "IAT", "Fuel Load", "Ignition Load", "INVALID", "INVALID"
|
||||
gppwm3_alignmentFill_map = scalar, U08, 4327, "unit", 1, 0, 0, 100, 0
|
||||
gppwm3_loadBins = array, U08, 4328, [8], "load", 1, 0, 0.0, 250, 0
|
||||
gppwm3_rpmBins = array, U08, 4336, [8], "RPM", 50, 0, 0.0, 12000.0, 0
|
||||
|
@ -1080,7 +1080,7 @@ page = 1
|
|||
gppwm4_pwmFrequency = scalar, U16, 4410, "hz", 1, 0, 0, 500, 0
|
||||
gppwm4_onAboveDuty = scalar, U08, 4412, "%", 1, 0, 0, 100, 0
|
||||
gppwm4_offBelowDuty = scalar, U08, 4413, "%", 1, 0, 0, 100, 0
|
||||
gppwm4_loadAxis = bits, U08, 4414, [0:1], "TPS", "MAP", "CLT", "IAT"
|
||||
gppwm4_loadAxis = bits, U08, 4414, [0:2], "TPS", "MAP", "CLT", "IAT", "Fuel Load", "Ignition Load", "INVALID", "INVALID"
|
||||
gppwm4_alignmentFill_map = scalar, U08, 4415, "unit", 1, 0, 0, 100, 0
|
||||
gppwm4_loadBins = array, U08, 4416, [8], "load", 1, 0, 0.0, 250, 0
|
||||
gppwm4_rpmBins = array, U08, 4424, [8], "RPM", 50, 0, 0.0, 12000.0, 0
|
||||
|
@ -1203,7 +1203,7 @@ page = 1
|
|||
injectionMode = "This is where the fuel injection type is defined: "Simultaneous" means all injectors will fire together at once. "Sequential" fires the injectors on a per cylinder basis, which requires individually wired injectors. "Batched" will fire the injectors in groups. If your injectors are individually wired you will also need to enable "Two wire batch emulation". \nset injection_mode X\nSee also twoWireBatchInjection"
|
||||
extraInjectionOffset = "this is about deciding when the injector starts it's squirt\nSee also injectionPhase map\ntodo: do we need even need this since we have the map anyway?"
|
||||
crankingTimingAngle = "Ignition advance angle used during engine cranking, 5-10 degrees will work as a base setting for most engines.\nset cranking_timing_angle X"
|
||||
ignitionMode = ""One Coil" is for use on distributed ignition system. "Individual Coils" is to be used when you have one coil per cylinder (COP or similar). "Wasted" means one coil is driving two spark plugs in two cylinders, with one of the sparks not doing anything since it's happening on the exhaust cycle\nset ignition_mode X"
|
||||
ignitionMode = ""Single Coil" is for use on distributed ignition system. "Individual Coils" is to be used when you have one coil per cylinder (COP or similar). "Wasted Spark" means one coil is driving two spark plugs in two cylinders, with one of the sparks not doing anything since it's happening on the exhaust cycle\nset ignition_mode X"
|
||||
ignitionOffset = "this value could be used to offset the whole ignition timing table by a constant"
|
||||
timingMode = "Dynamic uses the timing map to decide the ignition timing, Static timing fixes the timing to the value set below (only use for checking static timing)."
|
||||
fixedModeTiming = "This value is the ignition timing used when in 'fixed timing' mode, i.e. constant timing\nThis mode is useful when adjusting distributor location."
|
||||
|
@ -1237,7 +1237,7 @@ page = 1
|
|||
isFasterEngineSpinUpEnabled = "Smarter cranking logic.\nSee also startOfCrankingPrimingPulse"
|
||||
coastingFuelCutEnabled = "This setting disables fuel injection while the engine is in overrun, this is useful as a fuel saving measure and to prevent back firing."
|
||||
useIacTableForCoasting = "This setting allows the ECU to open the IAC during overrun conditions to help reduce engine breaking, this can be helpful for large engines in light weight cars. Used in Auto-PID Idle mode."
|
||||
pauseEtbControl = "Disable the electronic throttle motor for testing.\nThis mode is for testing ETB position sensors, etc without actually driving the throttle."
|
||||
pauseEtbControl = "Disable the electronic throttle motor and DC idle motor for testing.\nThis mode is for testing ETB/DC idle position sensors, etc without actually driving the throttle."
|
||||
useETBforIdleControl = "This setting allows the ETB to act as the idle air control valve and move to regulate the airflow at idle."
|
||||
acIdleExtraMin = "Additional idle PID minValue while A/C is active"
|
||||
sdCardPeriodMs = "SD card logging period, in milliseconds"
|
||||
|
@ -1246,6 +1246,7 @@ page = 1
|
|||
sensorChartMode = "rusEfi console Sensor Sniffer mode"
|
||||
useHbridges = "If enabled we use two H-bridges to drive stepper idle air valve"
|
||||
stftIgnoreErrorMagnitude = "If enabled, adjust at a constant rate instead of a rate proportional to the current lambda error. This mode may be easier to tune, and more tolerant of sensor noise. Use of this mode is required if you have a narrowband O2 sensor.;"
|
||||
dcMotorIdleValve = "Used on some German vehicles around late 90s: cable-operated throttle and DC motor idle air valve.\nSet the primary TPS to the cable-operated throttle's sensor\nSet the secondary TPS to the mini ETB's position sensor(s)."
|
||||
launchSpeedTreshold = "Disabled above this speed"
|
||||
launchRpmTreshold = "Disabled below this rpm"
|
||||
launchTimingRpmRange = "Range from Launch Rpm for Timing Retard to activate"
|
||||
|
@ -1284,7 +1285,7 @@ page = 1
|
|||
verboseTriggerSynchDetails = "enable trigger_details"
|
||||
twoWireBatchInjection = "This is needed if your coils are individually wired and you wish to use batch injection.\nenable two_wire_batch_injection"
|
||||
useOnlyRisingEdgeForTrigger = "VR sensors are only precise on rising front\nenable trigger_only_front"
|
||||
twoWireBatchIgnition = "This is needed if your coils are individually wired (COP) and you wish to use batch ignition (wasted spark)."
|
||||
twoWireBatchIgnition = "This is needed if your coils are individually wired (COP) and you wish to use batch ignition (Wasted Spark)."
|
||||
useSeparateAdvanceForCranking = "This activates a separate advance table for cranking conditions, this allows cranking advance to be RPM dependant."
|
||||
useAdvanceCorrectionsForCranking = "This enables the various ignition corrections during cranking (IAT, CLT, FSIO and PID idle)."
|
||||
useTPSAdvanceTable = "This flag allows to use TPS for ignition lookup while in Speed Density Fuel Mode"
|
||||
|
@ -1490,8 +1491,8 @@ page = 1
|
|||
internalMcuTemperature = scalar,S08, 11, "deg C", 1, 0
|
||||
coolant = scalar, S16, 12, "deg C",{1/100}, 0.0
|
||||
intake = scalar, S16, 14, "deg C",{1/100}, 0.0
|
||||
; todo: aux1
|
||||
; todo: aux2
|
||||
auxt1 = scalar, S16, 16, "deg C",{1/100}, 0.0
|
||||
auxt2 = scalar, S16, 18, "deg C",{1/100}, 0.0
|
||||
|
||||
|
||||
; throttle, pedal
|
||||
|
@ -1631,7 +1632,7 @@ page = 1
|
|||
rawOilPressure = scalar, U16, 242, "V",{1/1000}, 0.0
|
||||
|
||||
; we use this to match logs to tunes
|
||||
tuneCrc16= scalar, U16, 244, "crc16", 1, 0
|
||||
tuneCrc16 = scalar, U16, 244, "crc16", 1, 0
|
||||
|
||||
;
|
||||
; see TunerStudioOutputChannels struct
|
||||
|
@ -1647,10 +1648,10 @@ page = 1
|
|||
time = { timeNow }
|
||||
|
||||
; These "synthetic" channels provide the Y-axis (load) value for gen purp PWM table's Y axes
|
||||
gppwm1_load = {(gppwm1_loadAxis == 0) ? TPSValue : ((gppwm1_loadAxis == 1) ? MAPValue : ((gppwm1_loadAxis == 2) ? coolant : intake))}
|
||||
gppwm2_load = {(gppwm2_loadAxis == 0) ? TPSValue : ((gppwm2_loadAxis == 1) ? MAPValue : ((gppwm2_loadAxis == 2) ? coolant : intake))}
|
||||
gppwm3_load = {(gppwm3_loadAxis == 0) ? TPSValue : ((gppwm3_loadAxis == 1) ? MAPValue : ((gppwm3_loadAxis == 2) ? coolant : intake))}
|
||||
gppwm4_load = {(gppwm4_loadAxis == 0) ? TPSValue : ((gppwm4_loadAxis == 1) ? MAPValue : ((gppwm4_loadAxis == 2) ? coolant : intake))}
|
||||
gppwm1_load = {(gppwm1_loadAxis == 0) ? TPSValue : ((gppwm1_loadAxis == 1) ? MAPValue : ((gppwm1_loadAxis == 2) ? coolant : ((gppwm1_loadAxis == 3) ? intake : ((gppwm1_loadAxis == 4) ? fuelingLoad : ignitionLoad))))}
|
||||
gppwm2_load = {(gppwm2_loadAxis == 0) ? TPSValue : ((gppwm2_loadAxis == 1) ? MAPValue : ((gppwm2_loadAxis == 2) ? coolant : ((gppwm2_loadAxis == 3) ? intake : ((gppwm2_loadAxis == 4) ? fuelingLoad : ignitionLoad))))}
|
||||
gppwm3_load = {(gppwm3_loadAxis == 0) ? TPSValue : ((gppwm3_loadAxis == 1) ? MAPValue : ((gppwm3_loadAxis == 2) ? coolant : ((gppwm3_loadAxis == 3) ? intake : ((gppwm3_loadAxis == 4) ? fuelingLoad : ignitionLoad))))}
|
||||
gppwm4_load = {(gppwm4_loadAxis == 0) ? TPSValue : ((gppwm4_loadAxis == 1) ? MAPValue : ((gppwm4_loadAxis == 2) ? coolant : ((gppwm4_loadAxis == 3) ? intake : ((gppwm4_loadAxis == 4) ? fuelingLoad : ignitionLoad))))}
|
||||
|
||||
[PcVariables]
|
||||
tuneCrcPcVariable = continuousChannelValue, tuneCrc16
|
||||
|
@ -2226,6 +2227,8 @@ gaugeCategory = Sensors - Extra 1
|
|||
internalMcuTemperatureGauge = internalMcuTemperature, "ECU temperature", "C", 0, 100, 0, 0, 75, 100, 0, 0
|
||||
OilPressGauge = oilPressure, "Oil Pressure", "kPa", 0, 750, 35, 75, 550, 700, 0, 0
|
||||
idleAirValvePositionGauge = idleAirValvePosition, "Idle position", "%", 0, 100, 0, 0, 100, 100, 1, 1
|
||||
AuxT1Gauge = auxt1, "Aux temp 1", "deg C", -40, 140, -15, 1, 95, 110, 1, 1
|
||||
AuxT2Gauge = auxt2, "Aux temp 2", "deg C", -40, 140, -15, 1, 95, 110, 1, 1
|
||||
|
||||
gaugeCategory = Ignition
|
||||
ignadvGauge = ignitionAdvance, "Ignition timing", "degrees", -100, 100, -999, -999, 999, 999, 1, 1
|
||||
|
@ -3546,7 +3549,7 @@ cmd_set_engine_type_default = "w\x00\x31\x00\x00"
|
|||
dialog = idleSettings, "", yAxis
|
||||
field = "Idle IAC control mode", idleMode
|
||||
field = useInstantRpmForIdle, useInstantRpmForIdle
|
||||
field = "use ETB for idle", useETBforIdleControl
|
||||
field = "use ETB for idle", useETBforIdleControl, { throttlePedalPositionAdcChannel != 16 }
|
||||
field = "ETB Idle range", etbIdleThrottleRange, {useETBforIdleControl == 1}
|
||||
field = "Use separate Ignition Table for idle", useSeparateAdvanceForIdle
|
||||
field = "Use separate VE Table for idle", useSeparateVeForIdle
|
||||
|
@ -4143,13 +4146,13 @@ cmd_set_engine_type_default = "w\x00\x31\x00\x00"
|
|||
panel = veTableMap, South
|
||||
|
||||
dialog = etbPidDialog, "PID settings"
|
||||
field = "pFactor", etb_pFactor, {throttlePedalPositionAdcChannel != 16}
|
||||
field = "iFactor", etb_iFactor, {throttlePedalPositionAdcChannel != 16}
|
||||
field = "dFactor", etb_dFactor, {throttlePedalPositionAdcChannel != 16}
|
||||
field = "pid min", etb_minValue, {throttlePedalPositionAdcChannel != 16}
|
||||
field = "pid max", etb_maxValue, {throttlePedalPositionAdcChannel != 16}
|
||||
field = "iTermMin", etb_iTermMin, {throttlePedalPositionAdcChannel != 16}
|
||||
field = "iTermMax", etb_iTermMax, {throttlePedalPositionAdcChannel != 16}
|
||||
field = "pFactor", etb_pFactor
|
||||
field = "iFactor", etb_iFactor
|
||||
field = "dFactor", etb_dFactor
|
||||
field = "pid min", etb_minValue
|
||||
field = "pid max", etb_maxValue
|
||||
field = "iTermMin", etb_iTermMin
|
||||
field = "iTermMax", etb_iTermMax
|
||||
|
||||
dialog = etbIdleDialog, "ETB Idle"
|
||||
field = "use ETB for idle", useETBforIdleControl
|
||||
|
@ -4157,11 +4160,12 @@ cmd_set_engine_type_default = "w\x00\x31\x00\x00"
|
|||
|
||||
dialog = etbDialogLeft
|
||||
field = "https://rusefi.com/s/etb"
|
||||
field = "Late 90s German DC Motor idle", dcMotorIdleValve, { throttlePedalPositionAdcChannel == 16 }
|
||||
field = "Detailed status in console", isVerboseETB
|
||||
field = "Disable ETB Motor", pauseEtbControl
|
||||
; we need the term about stepper idle in here, because there's a bug in TS that you can't have different visibility
|
||||
; criteria for the same panel when used in multiple places
|
||||
panel = hbridgeHardware, { throttlePedalPositionAdcChannel != 16 || useStepperIdle && useHbridges }
|
||||
panel = hbridgeHardware, { throttlePedalPositionAdcChannel != 16 || (useStepperIdle && useHbridges) || dcMotorIdleValve }
|
||||
|
||||
dialog = etbAutotune, "PID Autotune"
|
||||
commandButton = "Start ETB PID Autotune", cmd_etb_autotune
|
||||
|
@ -4173,8 +4177,8 @@ cmd_set_engine_type_default = "w\x00\x31\x00\x00"
|
|||
field = "Debug mode", debugMode
|
||||
|
||||
dialog = etbDialogRight
|
||||
panel = etbIdleDialog
|
||||
panel = etbPidDialog
|
||||
panel = etbIdleDialog, { throttlePedalPositionAdcChannel != 16 }
|
||||
panel = etbPidDialog, { (throttlePedalPositionAdcChannel != 16) || dcMotorIdleValve }
|
||||
panel = etbAutotune
|
||||
|
||||
; Neutral position handling not yet implemented!
|
||||
|
|
|
@ -33,12 +33,12 @@ enable2ndByteCanID = false
|
|||
|
||||
[MegaTune]
|
||||
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
|
||||
signature = "rusEFI 2020.07.22.prometheus_469.3696987323"
|
||||
signature = "rusEFI 2020.07.28.prometheus_469.2934591713"
|
||||
|
||||
[TunerStudio]
|
||||
queryCommand = "S"
|
||||
versionInfo = "V" ; firmwave version for title bar.
|
||||
signature = "rusEFI 2020.07.22.prometheus_469.3696987323" ; signature is expected to be 7 or more characters.
|
||||
signature = "rusEFI 2020.07.28.prometheus_469.2934591713" ; signature is expected to be 7 or more characters.
|
||||
|
||||
[Constants]
|
||||
; new packet serial format with CRC
|
||||
|
@ -76,7 +76,7 @@ enable2ndByteCanID = false
|
|||
|
||||
; see PAGE_0_SIZE in C source code
|
||||
; CONFIG_DEFINITION_START
|
||||
; this section was generated automatically by rusEfi tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Wed Jul 22 19:41:11 UTC 2020
|
||||
; this section was generated automatically by rusEfi tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Tue Jul 28 13:12:20 UTC 2020
|
||||
|
||||
pageSize = 20000
|
||||
page = 1
|
||||
|
@ -166,12 +166,12 @@ page = 1
|
|||
cylinderBore = scalar, F32, 408, "mm", 1, 0, 0, 20000.0, 2
|
||||
sensorSnifferRpmThreshold = scalar, S32, 412, "RPM", 1, 0, 0,30000, 0
|
||||
rpmHardLimit = scalar, S32, 416, "rpm", 1, 0, 0, 20000.0, 2
|
||||
fuelAlgorithm = bits, U32, 420, [0:2], "MAF", "Alpha-N/TPS", "INVALID", "SPEED DENSITY", "MAF Air Charge", "INVALID", "INVALID", "INVALID"
|
||||
fuelAlgorithm = bits, U32, 420, [0:2], "MAF", "Alpha-N/TPS", "INVALID", "Speed Density", "MAF Air Charge", "Alpha-N", "INVALID", "INVALID"
|
||||
crankingInjectionMode = bits, U32, 424, [0:1], "Simultaneous", "Sequential", "Batch", "Single Point"
|
||||
injectionMode = bits, U32, 428, [0:1], "Simultaneous", "Sequential", "Batch", "Single Point"
|
||||
extraInjectionOffset = scalar, F32, 432, "deg", 1, 0.0, -720, 720, 2
|
||||
crankingTimingAngle = scalar, F32, 436, "deg", 1, 0.0, -360, 360, 2
|
||||
ignitionMode = bits, U32, 440, [0:1], "One coil", "Individual Coils", "Wasted", "Two distributors"
|
||||
ignitionMode = bits, U32, 440, [0:1], "Single Coil", "Individual Coils", "Wasted Spark", "Two Distributors"
|
||||
ignitionOffset = scalar, F32, 444, "RPM", 1, 0, 0, 3000.0, 0
|
||||
timingMode = bits, U32, 448 [0:0], "dynamic", "fixed"
|
||||
fixedModeTiming = scalar, F32, 452, "RPM", 1, 0, 0, 3000.0, 0
|
||||
|
@ -541,7 +541,7 @@ page = 1
|
|||
enableInnovateLC2 = bits, U32, 976, [8:8], "false", "true"
|
||||
showHumanReadableWarning= bits, U32, 976, [9:9], "false", "true"
|
||||
stftIgnoreErrorMagnitude= bits, U32, 976, [10:10], "false", "true"
|
||||
unusedBit_251_11 = bits, U32, 976, [11:11], "false", "true"
|
||||
dcMotorIdleValve = bits, U32, 976, [11:11], "false", "true"
|
||||
unusedBit_251_12 = bits, U32, 976, [12:12], "false", "true"
|
||||
unusedBit_251_13 = bits, U32, 976, [13:13], "false", "true"
|
||||
unusedBit_251_14 = bits, U32, 976, [14:14], "false", "true"
|
||||
|
@ -1050,7 +1050,7 @@ page = 1
|
|||
gppwm1_pwmFrequency = scalar, U16, 4146, "hz", 1, 0, 0, 500, 0
|
||||
gppwm1_onAboveDuty = scalar, U08, 4148, "%", 1, 0, 0, 100, 0
|
||||
gppwm1_offBelowDuty = scalar, U08, 4149, "%", 1, 0, 0, 100, 0
|
||||
gppwm1_loadAxis = bits, U08, 4150, [0:1], "TPS", "MAP", "CLT", "IAT"
|
||||
gppwm1_loadAxis = bits, U08, 4150, [0:2], "TPS", "MAP", "CLT", "IAT", "Fuel Load", "Ignition Load", "INVALID", "INVALID"
|
||||
gppwm1_alignmentFill_map = scalar, U08, 4151, "unit", 1, 0, 0, 100, 0
|
||||
gppwm1_loadBins = array, U08, 4152, [8], "load", 1, 0, 0.0, 250, 0
|
||||
gppwm1_rpmBins = array, U08, 4160, [8], "RPM", 50, 0, 0.0, 12000.0, 0
|
||||
|
@ -1060,7 +1060,7 @@ page = 1
|
|||
gppwm2_pwmFrequency = scalar, U16, 4234, "hz", 1, 0, 0, 500, 0
|
||||
gppwm2_onAboveDuty = scalar, U08, 4236, "%", 1, 0, 0, 100, 0
|
||||
gppwm2_offBelowDuty = scalar, U08, 4237, "%", 1, 0, 0, 100, 0
|
||||
gppwm2_loadAxis = bits, U08, 4238, [0:1], "TPS", "MAP", "CLT", "IAT"
|
||||
gppwm2_loadAxis = bits, U08, 4238, [0:2], "TPS", "MAP", "CLT", "IAT", "Fuel Load", "Ignition Load", "INVALID", "INVALID"
|
||||
gppwm2_alignmentFill_map = scalar, U08, 4239, "unit", 1, 0, 0, 100, 0
|
||||
gppwm2_loadBins = array, U08, 4240, [8], "load", 1, 0, 0.0, 250, 0
|
||||
gppwm2_rpmBins = array, U08, 4248, [8], "RPM", 50, 0, 0.0, 12000.0, 0
|
||||
|
@ -1070,7 +1070,7 @@ page = 1
|
|||
gppwm3_pwmFrequency = scalar, U16, 4322, "hz", 1, 0, 0, 500, 0
|
||||
gppwm3_onAboveDuty = scalar, U08, 4324, "%", 1, 0, 0, 100, 0
|
||||
gppwm3_offBelowDuty = scalar, U08, 4325, "%", 1, 0, 0, 100, 0
|
||||
gppwm3_loadAxis = bits, U08, 4326, [0:1], "TPS", "MAP", "CLT", "IAT"
|
||||
gppwm3_loadAxis = bits, U08, 4326, [0:2], "TPS", "MAP", "CLT", "IAT", "Fuel Load", "Ignition Load", "INVALID", "INVALID"
|
||||
gppwm3_alignmentFill_map = scalar, U08, 4327, "unit", 1, 0, 0, 100, 0
|
||||
gppwm3_loadBins = array, U08, 4328, [8], "load", 1, 0, 0.0, 250, 0
|
||||
gppwm3_rpmBins = array, U08, 4336, [8], "RPM", 50, 0, 0.0, 12000.0, 0
|
||||
|
@ -1080,7 +1080,7 @@ page = 1
|
|||
gppwm4_pwmFrequency = scalar, U16, 4410, "hz", 1, 0, 0, 500, 0
|
||||
gppwm4_onAboveDuty = scalar, U08, 4412, "%", 1, 0, 0, 100, 0
|
||||
gppwm4_offBelowDuty = scalar, U08, 4413, "%", 1, 0, 0, 100, 0
|
||||
gppwm4_loadAxis = bits, U08, 4414, [0:1], "TPS", "MAP", "CLT", "IAT"
|
||||
gppwm4_loadAxis = bits, U08, 4414, [0:2], "TPS", "MAP", "CLT", "IAT", "Fuel Load", "Ignition Load", "INVALID", "INVALID"
|
||||
gppwm4_alignmentFill_map = scalar, U08, 4415, "unit", 1, 0, 0, 100, 0
|
||||
gppwm4_loadBins = array, U08, 4416, [8], "load", 1, 0, 0.0, 250, 0
|
||||
gppwm4_rpmBins = array, U08, 4424, [8], "RPM", 50, 0, 0.0, 12000.0, 0
|
||||
|
@ -1203,7 +1203,7 @@ page = 1
|
|||
injectionMode = "This is where the fuel injection type is defined: "Simultaneous" means all injectors will fire together at once. "Sequential" fires the injectors on a per cylinder basis, which requires individually wired injectors. "Batched" will fire the injectors in groups. If your injectors are individually wired you will also need to enable "Two wire batch emulation". \nset injection_mode X\nSee also twoWireBatchInjection"
|
||||
extraInjectionOffset = "this is about deciding when the injector starts it's squirt\nSee also injectionPhase map\ntodo: do we need even need this since we have the map anyway?"
|
||||
crankingTimingAngle = "Ignition advance angle used during engine cranking, 5-10 degrees will work as a base setting for most engines.\nset cranking_timing_angle X"
|
||||
ignitionMode = ""One Coil" is for use on distributed ignition system. "Individual Coils" is to be used when you have one coil per cylinder (COP or similar). "Wasted" means one coil is driving two spark plugs in two cylinders, with one of the sparks not doing anything since it's happening on the exhaust cycle\nset ignition_mode X"
|
||||
ignitionMode = ""Single Coil" is for use on distributed ignition system. "Individual Coils" is to be used when you have one coil per cylinder (COP or similar). "Wasted Spark" means one coil is driving two spark plugs in two cylinders, with one of the sparks not doing anything since it's happening on the exhaust cycle\nset ignition_mode X"
|
||||
ignitionOffset = "this value could be used to offset the whole ignition timing table by a constant"
|
||||
timingMode = "Dynamic uses the timing map to decide the ignition timing, Static timing fixes the timing to the value set below (only use for checking static timing)."
|
||||
fixedModeTiming = "This value is the ignition timing used when in 'fixed timing' mode, i.e. constant timing\nThis mode is useful when adjusting distributor location."
|
||||
|
@ -1237,7 +1237,7 @@ page = 1
|
|||
isFasterEngineSpinUpEnabled = "Smarter cranking logic.\nSee also startOfCrankingPrimingPulse"
|
||||
coastingFuelCutEnabled = "This setting disables fuel injection while the engine is in overrun, this is useful as a fuel saving measure and to prevent back firing."
|
||||
useIacTableForCoasting = "This setting allows the ECU to open the IAC during overrun conditions to help reduce engine breaking, this can be helpful for large engines in light weight cars. Used in Auto-PID Idle mode."
|
||||
pauseEtbControl = "Disable the electronic throttle motor for testing.\nThis mode is for testing ETB position sensors, etc without actually driving the throttle."
|
||||
pauseEtbControl = "Disable the electronic throttle motor and DC idle motor for testing.\nThis mode is for testing ETB/DC idle position sensors, etc without actually driving the throttle."
|
||||
useETBforIdleControl = "This setting allows the ETB to act as the idle air control valve and move to regulate the airflow at idle."
|
||||
acIdleExtraMin = "Additional idle PID minValue while A/C is active"
|
||||
sdCardPeriodMs = "SD card logging period, in milliseconds"
|
||||
|
@ -1246,6 +1246,7 @@ page = 1
|
|||
sensorChartMode = "rusEfi console Sensor Sniffer mode"
|
||||
useHbridges = "If enabled we use two H-bridges to drive stepper idle air valve"
|
||||
stftIgnoreErrorMagnitude = "If enabled, adjust at a constant rate instead of a rate proportional to the current lambda error. This mode may be easier to tune, and more tolerant of sensor noise. Use of this mode is required if you have a narrowband O2 sensor.;"
|
||||
dcMotorIdleValve = "Used on some German vehicles around late 90s: cable-operated throttle and DC motor idle air valve.\nSet the primary TPS to the cable-operated throttle's sensor\nSet the secondary TPS to the mini ETB's position sensor(s)."
|
||||
launchSpeedTreshold = "Disabled above this speed"
|
||||
launchRpmTreshold = "Disabled below this rpm"
|
||||
launchTimingRpmRange = "Range from Launch Rpm for Timing Retard to activate"
|
||||
|
@ -1284,7 +1285,7 @@ page = 1
|
|||
verboseTriggerSynchDetails = "enable trigger_details"
|
||||
twoWireBatchInjection = "This is needed if your coils are individually wired and you wish to use batch injection.\nenable two_wire_batch_injection"
|
||||
useOnlyRisingEdgeForTrigger = "VR sensors are only precise on rising front\nenable trigger_only_front"
|
||||
twoWireBatchIgnition = "This is needed if your coils are individually wired (COP) and you wish to use batch ignition (wasted spark)."
|
||||
twoWireBatchIgnition = "This is needed if your coils are individually wired (COP) and you wish to use batch ignition (Wasted Spark)."
|
||||
useSeparateAdvanceForCranking = "This activates a separate advance table for cranking conditions, this allows cranking advance to be RPM dependant."
|
||||
useAdvanceCorrectionsForCranking = "This enables the various ignition corrections during cranking (IAT, CLT, FSIO and PID idle)."
|
||||
useTPSAdvanceTable = "This flag allows to use TPS for ignition lookup while in Speed Density Fuel Mode"
|
||||
|
@ -1490,8 +1491,8 @@ page = 1
|
|||
internalMcuTemperature = scalar,S08, 11, "deg C", 1, 0
|
||||
coolant = scalar, S16, 12, "deg C",{1/100}, 0.0
|
||||
intake = scalar, S16, 14, "deg C",{1/100}, 0.0
|
||||
; todo: aux1
|
||||
; todo: aux2
|
||||
auxt1 = scalar, S16, 16, "deg C",{1/100}, 0.0
|
||||
auxt2 = scalar, S16, 18, "deg C",{1/100}, 0.0
|
||||
|
||||
|
||||
; throttle, pedal
|
||||
|
@ -1631,7 +1632,7 @@ page = 1
|
|||
rawOilPressure = scalar, U16, 242, "V",{1/1000}, 0.0
|
||||
|
||||
; we use this to match logs to tunes
|
||||
tuneCrc16= scalar, U16, 244, "crc16", 1, 0
|
||||
tuneCrc16 = scalar, U16, 244, "crc16", 1, 0
|
||||
|
||||
;
|
||||
; see TunerStudioOutputChannels struct
|
||||
|
@ -1647,10 +1648,10 @@ page = 1
|
|||
time = { timeNow }
|
||||
|
||||
; These "synthetic" channels provide the Y-axis (load) value for gen purp PWM table's Y axes
|
||||
gppwm1_load = {(gppwm1_loadAxis == 0) ? TPSValue : ((gppwm1_loadAxis == 1) ? MAPValue : ((gppwm1_loadAxis == 2) ? coolant : intake))}
|
||||
gppwm2_load = {(gppwm2_loadAxis == 0) ? TPSValue : ((gppwm2_loadAxis == 1) ? MAPValue : ((gppwm2_loadAxis == 2) ? coolant : intake))}
|
||||
gppwm3_load = {(gppwm3_loadAxis == 0) ? TPSValue : ((gppwm3_loadAxis == 1) ? MAPValue : ((gppwm3_loadAxis == 2) ? coolant : intake))}
|
||||
gppwm4_load = {(gppwm4_loadAxis == 0) ? TPSValue : ((gppwm4_loadAxis == 1) ? MAPValue : ((gppwm4_loadAxis == 2) ? coolant : intake))}
|
||||
gppwm1_load = {(gppwm1_loadAxis == 0) ? TPSValue : ((gppwm1_loadAxis == 1) ? MAPValue : ((gppwm1_loadAxis == 2) ? coolant : ((gppwm1_loadAxis == 3) ? intake : ((gppwm1_loadAxis == 4) ? fuelingLoad : ignitionLoad))))}
|
||||
gppwm2_load = {(gppwm2_loadAxis == 0) ? TPSValue : ((gppwm2_loadAxis == 1) ? MAPValue : ((gppwm2_loadAxis == 2) ? coolant : ((gppwm2_loadAxis == 3) ? intake : ((gppwm2_loadAxis == 4) ? fuelingLoad : ignitionLoad))))}
|
||||
gppwm3_load = {(gppwm3_loadAxis == 0) ? TPSValue : ((gppwm3_loadAxis == 1) ? MAPValue : ((gppwm3_loadAxis == 2) ? coolant : ((gppwm3_loadAxis == 3) ? intake : ((gppwm3_loadAxis == 4) ? fuelingLoad : ignitionLoad))))}
|
||||
gppwm4_load = {(gppwm4_loadAxis == 0) ? TPSValue : ((gppwm4_loadAxis == 1) ? MAPValue : ((gppwm4_loadAxis == 2) ? coolant : ((gppwm4_loadAxis == 3) ? intake : ((gppwm4_loadAxis == 4) ? fuelingLoad : ignitionLoad))))}
|
||||
|
||||
[PcVariables]
|
||||
tuneCrcPcVariable = continuousChannelValue, tuneCrc16
|
||||
|
@ -2226,6 +2227,8 @@ gaugeCategory = Sensors - Extra 1
|
|||
internalMcuTemperatureGauge = internalMcuTemperature, "ECU temperature", "C", 0, 100, 0, 0, 75, 100, 0, 0
|
||||
OilPressGauge = oilPressure, "Oil Pressure", "kPa", 0, 750, 35, 75, 550, 700, 0, 0
|
||||
idleAirValvePositionGauge = idleAirValvePosition, "Idle position", "%", 0, 100, 0, 0, 100, 100, 1, 1
|
||||
AuxT1Gauge = auxt1, "Aux temp 1", "deg C", -40, 140, -15, 1, 95, 110, 1, 1
|
||||
AuxT2Gauge = auxt2, "Aux temp 2", "deg C", -40, 140, -15, 1, 95, 110, 1, 1
|
||||
|
||||
gaugeCategory = Ignition
|
||||
ignadvGauge = ignitionAdvance, "Ignition timing", "degrees", -100, 100, -999, -999, 999, 999, 1, 1
|
||||
|
@ -3546,7 +3549,7 @@ cmd_set_engine_type_default = "w\x00\x31\x00\x00"
|
|||
dialog = idleSettings, "", yAxis
|
||||
field = "Idle IAC control mode", idleMode
|
||||
field = useInstantRpmForIdle, useInstantRpmForIdle
|
||||
field = "use ETB for idle", useETBforIdleControl
|
||||
field = "use ETB for idle", useETBforIdleControl, { throttlePedalPositionAdcChannel != 16 }
|
||||
field = "ETB Idle range", etbIdleThrottleRange, {useETBforIdleControl == 1}
|
||||
field = "Use separate Ignition Table for idle", useSeparateAdvanceForIdle
|
||||
field = "Use separate VE Table for idle", useSeparateVeForIdle
|
||||
|
@ -4143,13 +4146,13 @@ cmd_set_engine_type_default = "w\x00\x31\x00\x00"
|
|||
panel = veTableMap, South
|
||||
|
||||
dialog = etbPidDialog, "PID settings"
|
||||
field = "pFactor", etb_pFactor, {throttlePedalPositionAdcChannel != 16}
|
||||
field = "iFactor", etb_iFactor, {throttlePedalPositionAdcChannel != 16}
|
||||
field = "dFactor", etb_dFactor, {throttlePedalPositionAdcChannel != 16}
|
||||
field = "pid min", etb_minValue, {throttlePedalPositionAdcChannel != 16}
|
||||
field = "pid max", etb_maxValue, {throttlePedalPositionAdcChannel != 16}
|
||||
field = "iTermMin", etb_iTermMin, {throttlePedalPositionAdcChannel != 16}
|
||||
field = "iTermMax", etb_iTermMax, {throttlePedalPositionAdcChannel != 16}
|
||||
field = "pFactor", etb_pFactor
|
||||
field = "iFactor", etb_iFactor
|
||||
field = "dFactor", etb_dFactor
|
||||
field = "pid min", etb_minValue
|
||||
field = "pid max", etb_maxValue
|
||||
field = "iTermMin", etb_iTermMin
|
||||
field = "iTermMax", etb_iTermMax
|
||||
|
||||
dialog = etbIdleDialog, "ETB Idle"
|
||||
field = "use ETB for idle", useETBforIdleControl
|
||||
|
@ -4157,11 +4160,12 @@ cmd_set_engine_type_default = "w\x00\x31\x00\x00"
|
|||
|
||||
dialog = etbDialogLeft
|
||||
field = "https://rusefi.com/s/etb"
|
||||
field = "Late 90s German DC Motor idle", dcMotorIdleValve, { throttlePedalPositionAdcChannel == 16 }
|
||||
field = "Detailed status in console", isVerboseETB
|
||||
field = "Disable ETB Motor", pauseEtbControl
|
||||
; we need the term about stepper idle in here, because there's a bug in TS that you can't have different visibility
|
||||
; criteria for the same panel when used in multiple places
|
||||
panel = hbridgeHardware, { throttlePedalPositionAdcChannel != 16 || useStepperIdle && useHbridges }
|
||||
panel = hbridgeHardware, { throttlePedalPositionAdcChannel != 16 || (useStepperIdle && useHbridges) || dcMotorIdleValve }
|
||||
|
||||
dialog = etbAutotune, "PID Autotune"
|
||||
commandButton = "Start ETB PID Autotune", cmd_etb_autotune
|
||||
|
@ -4173,8 +4177,8 @@ cmd_set_engine_type_default = "w\x00\x31\x00\x00"
|
|||
field = "Debug mode", debugMode
|
||||
|
||||
dialog = etbDialogRight
|
||||
panel = etbIdleDialog
|
||||
panel = etbPidDialog
|
||||
panel = etbIdleDialog, { throttlePedalPositionAdcChannel != 16 }
|
||||
panel = etbPidDialog, { (throttlePedalPositionAdcChannel != 16) || dcMotorIdleValve }
|
||||
panel = etbAutotune
|
||||
|
||||
; Neutral position handling not yet implemented!
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -33,12 +33,12 @@ enable2ndByteCanID = false
|
|||
|
||||
[MegaTune]
|
||||
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
|
||||
signature = "rusEFI 2020.07.22.proteus_f4.2765497840"
|
||||
signature = "rusEFI 2020.07.28.proteus_f4.3597138346"
|
||||
|
||||
[TunerStudio]
|
||||
queryCommand = "S"
|
||||
versionInfo = "V" ; firmwave version for title bar.
|
||||
signature = "rusEFI 2020.07.22.proteus_f4.2765497840" ; signature is expected to be 7 or more characters.
|
||||
signature = "rusEFI 2020.07.28.proteus_f4.3597138346" ; signature is expected to be 7 or more characters.
|
||||
|
||||
[Constants]
|
||||
; new packet serial format with CRC
|
||||
|
@ -76,7 +76,7 @@ enable2ndByteCanID = false
|
|||
|
||||
; see PAGE_0_SIZE in C source code
|
||||
; CONFIG_DEFINITION_START
|
||||
; this section was generated automatically by rusEfi tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Wed Jul 22 19:41:16 UTC 2020
|
||||
; this section was generated automatically by rusEfi tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Tue Jul 28 13:12:23 UTC 2020
|
||||
|
||||
pageSize = 20000
|
||||
page = 1
|
||||
|
@ -166,12 +166,12 @@ page = 1
|
|||
cylinderBore = scalar, F32, 408, "mm", 1, 0, 0, 20000.0, 2
|
||||
sensorSnifferRpmThreshold = scalar, S32, 412, "RPM", 1, 0, 0,30000, 0
|
||||
rpmHardLimit = scalar, S32, 416, "rpm", 1, 0, 0, 20000.0, 2
|
||||
fuelAlgorithm = bits, U32, 420, [0:2], "MAF", "Alpha-N/TPS", "INVALID", "SPEED DENSITY", "MAF Air Charge", "INVALID", "INVALID", "INVALID"
|
||||
fuelAlgorithm = bits, U32, 420, [0:2], "MAF", "Alpha-N/TPS", "INVALID", "Speed Density", "MAF Air Charge", "Alpha-N", "INVALID", "INVALID"
|
||||
crankingInjectionMode = bits, U32, 424, [0:1], "Simultaneous", "Sequential", "Batch", "Single Point"
|
||||
injectionMode = bits, U32, 428, [0:1], "Simultaneous", "Sequential", "Batch", "Single Point"
|
||||
extraInjectionOffset = scalar, F32, 432, "deg", 1, 0.0, -720, 720, 2
|
||||
crankingTimingAngle = scalar, F32, 436, "deg", 1, 0.0, -360, 360, 2
|
||||
ignitionMode = bits, U32, 440, [0:1], "One coil", "Individual Coils", "Wasted", "Two distributors"
|
||||
ignitionMode = bits, U32, 440, [0:1], "Single Coil", "Individual Coils", "Wasted Spark", "Two Distributors"
|
||||
ignitionOffset = scalar, F32, 444, "RPM", 1, 0, 0, 3000.0, 0
|
||||
timingMode = bits, U32, 448 [0:0], "dynamic", "fixed"
|
||||
fixedModeTiming = scalar, F32, 452, "RPM", 1, 0, 0, 3000.0, 0
|
||||
|
@ -541,7 +541,7 @@ page = 1
|
|||
enableInnovateLC2 = bits, U32, 976, [8:8], "false", "true"
|
||||
showHumanReadableWarning= bits, U32, 976, [9:9], "false", "true"
|
||||
stftIgnoreErrorMagnitude= bits, U32, 976, [10:10], "false", "true"
|
||||
unusedBit_251_11 = bits, U32, 976, [11:11], "false", "true"
|
||||
dcMotorIdleValve = bits, U32, 976, [11:11], "false", "true"
|
||||
unusedBit_251_12 = bits, U32, 976, [12:12], "false", "true"
|
||||
unusedBit_251_13 = bits, U32, 976, [13:13], "false", "true"
|
||||
unusedBit_251_14 = bits, U32, 976, [14:14], "false", "true"
|
||||
|
@ -1050,7 +1050,7 @@ page = 1
|
|||
gppwm1_pwmFrequency = scalar, U16, 4146, "hz", 1, 0, 0, 500, 0
|
||||
gppwm1_onAboveDuty = scalar, U08, 4148, "%", 1, 0, 0, 100, 0
|
||||
gppwm1_offBelowDuty = scalar, U08, 4149, "%", 1, 0, 0, 100, 0
|
||||
gppwm1_loadAxis = bits, U08, 4150, [0:1], "TPS", "MAP", "CLT", "IAT"
|
||||
gppwm1_loadAxis = bits, U08, 4150, [0:2], "TPS", "MAP", "CLT", "IAT", "Fuel Load", "Ignition Load", "INVALID", "INVALID"
|
||||
gppwm1_alignmentFill_map = scalar, U08, 4151, "unit", 1, 0, 0, 100, 0
|
||||
gppwm1_loadBins = array, U08, 4152, [8], "load", 1, 0, 0.0, 250, 0
|
||||
gppwm1_rpmBins = array, U08, 4160, [8], "RPM", 50, 0, 0.0, 12000.0, 0
|
||||
|
@ -1060,7 +1060,7 @@ page = 1
|
|||
gppwm2_pwmFrequency = scalar, U16, 4234, "hz", 1, 0, 0, 500, 0
|
||||
gppwm2_onAboveDuty = scalar, U08, 4236, "%", 1, 0, 0, 100, 0
|
||||
gppwm2_offBelowDuty = scalar, U08, 4237, "%", 1, 0, 0, 100, 0
|
||||
gppwm2_loadAxis = bits, U08, 4238, [0:1], "TPS", "MAP", "CLT", "IAT"
|
||||
gppwm2_loadAxis = bits, U08, 4238, [0:2], "TPS", "MAP", "CLT", "IAT", "Fuel Load", "Ignition Load", "INVALID", "INVALID"
|
||||
gppwm2_alignmentFill_map = scalar, U08, 4239, "unit", 1, 0, 0, 100, 0
|
||||
gppwm2_loadBins = array, U08, 4240, [8], "load", 1, 0, 0.0, 250, 0
|
||||
gppwm2_rpmBins = array, U08, 4248, [8], "RPM", 50, 0, 0.0, 12000.0, 0
|
||||
|
@ -1070,7 +1070,7 @@ page = 1
|
|||
gppwm3_pwmFrequency = scalar, U16, 4322, "hz", 1, 0, 0, 500, 0
|
||||
gppwm3_onAboveDuty = scalar, U08, 4324, "%", 1, 0, 0, 100, 0
|
||||
gppwm3_offBelowDuty = scalar, U08, 4325, "%", 1, 0, 0, 100, 0
|
||||
gppwm3_loadAxis = bits, U08, 4326, [0:1], "TPS", "MAP", "CLT", "IAT"
|
||||
gppwm3_loadAxis = bits, U08, 4326, [0:2], "TPS", "MAP", "CLT", "IAT", "Fuel Load", "Ignition Load", "INVALID", "INVALID"
|
||||
gppwm3_alignmentFill_map = scalar, U08, 4327, "unit", 1, 0, 0, 100, 0
|
||||
gppwm3_loadBins = array, U08, 4328, [8], "load", 1, 0, 0.0, 250, 0
|
||||
gppwm3_rpmBins = array, U08, 4336, [8], "RPM", 50, 0, 0.0, 12000.0, 0
|
||||
|
@ -1080,7 +1080,7 @@ page = 1
|
|||
gppwm4_pwmFrequency = scalar, U16, 4410, "hz", 1, 0, 0, 500, 0
|
||||
gppwm4_onAboveDuty = scalar, U08, 4412, "%", 1, 0, 0, 100, 0
|
||||
gppwm4_offBelowDuty = scalar, U08, 4413, "%", 1, 0, 0, 100, 0
|
||||
gppwm4_loadAxis = bits, U08, 4414, [0:1], "TPS", "MAP", "CLT", "IAT"
|
||||
gppwm4_loadAxis = bits, U08, 4414, [0:2], "TPS", "MAP", "CLT", "IAT", "Fuel Load", "Ignition Load", "INVALID", "INVALID"
|
||||
gppwm4_alignmentFill_map = scalar, U08, 4415, "unit", 1, 0, 0, 100, 0
|
||||
gppwm4_loadBins = array, U08, 4416, [8], "load", 1, 0, 0.0, 250, 0
|
||||
gppwm4_rpmBins = array, U08, 4424, [8], "RPM", 50, 0, 0.0, 12000.0, 0
|
||||
|
@ -1203,7 +1203,7 @@ page = 1
|
|||
injectionMode = "This is where the fuel injection type is defined: "Simultaneous" means all injectors will fire together at once. "Sequential" fires the injectors on a per cylinder basis, which requires individually wired injectors. "Batched" will fire the injectors in groups. If your injectors are individually wired you will also need to enable "Two wire batch emulation". \nset injection_mode X\nSee also twoWireBatchInjection"
|
||||
extraInjectionOffset = "this is about deciding when the injector starts it's squirt\nSee also injectionPhase map\ntodo: do we need even need this since we have the map anyway?"
|
||||
crankingTimingAngle = "Ignition advance angle used during engine cranking, 5-10 degrees will work as a base setting for most engines.\nset cranking_timing_angle X"
|
||||
ignitionMode = ""One Coil" is for use on distributed ignition system. "Individual Coils" is to be used when you have one coil per cylinder (COP or similar). "Wasted" means one coil is driving two spark plugs in two cylinders, with one of the sparks not doing anything since it's happening on the exhaust cycle\nset ignition_mode X"
|
||||
ignitionMode = ""Single Coil" is for use on distributed ignition system. "Individual Coils" is to be used when you have one coil per cylinder (COP or similar). "Wasted Spark" means one coil is driving two spark plugs in two cylinders, with one of the sparks not doing anything since it's happening on the exhaust cycle\nset ignition_mode X"
|
||||
ignitionOffset = "this value could be used to offset the whole ignition timing table by a constant"
|
||||
timingMode = "Dynamic uses the timing map to decide the ignition timing, Static timing fixes the timing to the value set below (only use for checking static timing)."
|
||||
fixedModeTiming = "This value is the ignition timing used when in 'fixed timing' mode, i.e. constant timing\nThis mode is useful when adjusting distributor location."
|
||||
|
@ -1237,7 +1237,7 @@ page = 1
|
|||
isFasterEngineSpinUpEnabled = "Smarter cranking logic.\nSee also startOfCrankingPrimingPulse"
|
||||
coastingFuelCutEnabled = "This setting disables fuel injection while the engine is in overrun, this is useful as a fuel saving measure and to prevent back firing."
|
||||
useIacTableForCoasting = "This setting allows the ECU to open the IAC during overrun conditions to help reduce engine breaking, this can be helpful for large engines in light weight cars. Used in Auto-PID Idle mode."
|
||||
pauseEtbControl = "Disable the electronic throttle motor for testing.\nThis mode is for testing ETB position sensors, etc without actually driving the throttle."
|
||||
pauseEtbControl = "Disable the electronic throttle motor and DC idle motor for testing.\nThis mode is for testing ETB/DC idle position sensors, etc without actually driving the throttle."
|
||||
useETBforIdleControl = "This setting allows the ETB to act as the idle air control valve and move to regulate the airflow at idle."
|
||||
acIdleExtraMin = "Additional idle PID minValue while A/C is active"
|
||||
sdCardPeriodMs = "SD card logging period, in milliseconds"
|
||||
|
@ -1246,6 +1246,7 @@ page = 1
|
|||
sensorChartMode = "rusEfi console Sensor Sniffer mode"
|
||||
useHbridges = "If enabled we use two H-bridges to drive stepper idle air valve"
|
||||
stftIgnoreErrorMagnitude = "If enabled, adjust at a constant rate instead of a rate proportional to the current lambda error. This mode may be easier to tune, and more tolerant of sensor noise. Use of this mode is required if you have a narrowband O2 sensor.;"
|
||||
dcMotorIdleValve = "Used on some German vehicles around late 90s: cable-operated throttle and DC motor idle air valve.\nSet the primary TPS to the cable-operated throttle's sensor\nSet the secondary TPS to the mini ETB's position sensor(s)."
|
||||
launchSpeedTreshold = "Disabled above this speed"
|
||||
launchRpmTreshold = "Disabled below this rpm"
|
||||
launchTimingRpmRange = "Range from Launch Rpm for Timing Retard to activate"
|
||||
|
@ -1284,7 +1285,7 @@ page = 1
|
|||
verboseTriggerSynchDetails = "enable trigger_details"
|
||||
twoWireBatchInjection = "This is needed if your coils are individually wired and you wish to use batch injection.\nenable two_wire_batch_injection"
|
||||
useOnlyRisingEdgeForTrigger = "VR sensors are only precise on rising front\nenable trigger_only_front"
|
||||
twoWireBatchIgnition = "This is needed if your coils are individually wired (COP) and you wish to use batch ignition (wasted spark)."
|
||||
twoWireBatchIgnition = "This is needed if your coils are individually wired (COP) and you wish to use batch ignition (Wasted Spark)."
|
||||
useSeparateAdvanceForCranking = "This activates a separate advance table for cranking conditions, this allows cranking advance to be RPM dependant."
|
||||
useAdvanceCorrectionsForCranking = "This enables the various ignition corrections during cranking (IAT, CLT, FSIO and PID idle)."
|
||||
useTPSAdvanceTable = "This flag allows to use TPS for ignition lookup while in Speed Density Fuel Mode"
|
||||
|
@ -1490,8 +1491,8 @@ page = 1
|
|||
internalMcuTemperature = scalar,S08, 11, "deg C", 1, 0
|
||||
coolant = scalar, S16, 12, "deg C",{1/100}, 0.0
|
||||
intake = scalar, S16, 14, "deg C",{1/100}, 0.0
|
||||
; todo: aux1
|
||||
; todo: aux2
|
||||
auxt1 = scalar, S16, 16, "deg C",{1/100}, 0.0
|
||||
auxt2 = scalar, S16, 18, "deg C",{1/100}, 0.0
|
||||
|
||||
|
||||
; throttle, pedal
|
||||
|
@ -1631,7 +1632,7 @@ page = 1
|
|||
rawOilPressure = scalar, U16, 242, "V",{1/1000}, 0.0
|
||||
|
||||
; we use this to match logs to tunes
|
||||
tuneCrc16= scalar, U16, 244, "crc16", 1, 0
|
||||
tuneCrc16 = scalar, U16, 244, "crc16", 1, 0
|
||||
|
||||
;
|
||||
; see TunerStudioOutputChannels struct
|
||||
|
@ -1647,10 +1648,10 @@ page = 1
|
|||
time = { timeNow }
|
||||
|
||||
; These "synthetic" channels provide the Y-axis (load) value for gen purp PWM table's Y axes
|
||||
gppwm1_load = {(gppwm1_loadAxis == 0) ? TPSValue : ((gppwm1_loadAxis == 1) ? MAPValue : ((gppwm1_loadAxis == 2) ? coolant : intake))}
|
||||
gppwm2_load = {(gppwm2_loadAxis == 0) ? TPSValue : ((gppwm2_loadAxis == 1) ? MAPValue : ((gppwm2_loadAxis == 2) ? coolant : intake))}
|
||||
gppwm3_load = {(gppwm3_loadAxis == 0) ? TPSValue : ((gppwm3_loadAxis == 1) ? MAPValue : ((gppwm3_loadAxis == 2) ? coolant : intake))}
|
||||
gppwm4_load = {(gppwm4_loadAxis == 0) ? TPSValue : ((gppwm4_loadAxis == 1) ? MAPValue : ((gppwm4_loadAxis == 2) ? coolant : intake))}
|
||||
gppwm1_load = {(gppwm1_loadAxis == 0) ? TPSValue : ((gppwm1_loadAxis == 1) ? MAPValue : ((gppwm1_loadAxis == 2) ? coolant : ((gppwm1_loadAxis == 3) ? intake : ((gppwm1_loadAxis == 4) ? fuelingLoad : ignitionLoad))))}
|
||||
gppwm2_load = {(gppwm2_loadAxis == 0) ? TPSValue : ((gppwm2_loadAxis == 1) ? MAPValue : ((gppwm2_loadAxis == 2) ? coolant : ((gppwm2_loadAxis == 3) ? intake : ((gppwm2_loadAxis == 4) ? fuelingLoad : ignitionLoad))))}
|
||||
gppwm3_load = {(gppwm3_loadAxis == 0) ? TPSValue : ((gppwm3_loadAxis == 1) ? MAPValue : ((gppwm3_loadAxis == 2) ? coolant : ((gppwm3_loadAxis == 3) ? intake : ((gppwm3_loadAxis == 4) ? fuelingLoad : ignitionLoad))))}
|
||||
gppwm4_load = {(gppwm4_loadAxis == 0) ? TPSValue : ((gppwm4_loadAxis == 1) ? MAPValue : ((gppwm4_loadAxis == 2) ? coolant : ((gppwm4_loadAxis == 3) ? intake : ((gppwm4_loadAxis == 4) ? fuelingLoad : ignitionLoad))))}
|
||||
|
||||
[PcVariables]
|
||||
tuneCrcPcVariable = continuousChannelValue, tuneCrc16
|
||||
|
@ -2226,6 +2227,8 @@ gaugeCategory = Sensors - Extra 1
|
|||
internalMcuTemperatureGauge = internalMcuTemperature, "ECU temperature", "C", 0, 100, 0, 0, 75, 100, 0, 0
|
||||
OilPressGauge = oilPressure, "Oil Pressure", "kPa", 0, 750, 35, 75, 550, 700, 0, 0
|
||||
idleAirValvePositionGauge = idleAirValvePosition, "Idle position", "%", 0, 100, 0, 0, 100, 100, 1, 1
|
||||
AuxT1Gauge = auxt1, "Aux temp 1", "deg C", -40, 140, -15, 1, 95, 110, 1, 1
|
||||
AuxT2Gauge = auxt2, "Aux temp 2", "deg C", -40, 140, -15, 1, 95, 110, 1, 1
|
||||
|
||||
gaugeCategory = Ignition
|
||||
ignadvGauge = ignitionAdvance, "Ignition timing", "degrees", -100, 100, -999, -999, 999, 999, 1, 1
|
||||
|
@ -3525,7 +3528,7 @@ cmd_set_engine_type_default = "w\x00\x31\x00\x00"
|
|||
dialog = idleSettings, "", yAxis
|
||||
field = "Idle IAC control mode", idleMode
|
||||
field = useInstantRpmForIdle, useInstantRpmForIdle
|
||||
field = "use ETB for idle", useETBforIdleControl
|
||||
field = "use ETB for idle", useETBforIdleControl, { throttlePedalPositionAdcChannel != 16 }
|
||||
field = "ETB Idle range", etbIdleThrottleRange, {useETBforIdleControl == 1}
|
||||
field = "Use separate Ignition Table for idle", useSeparateAdvanceForIdle
|
||||
field = "Use separate VE Table for idle", useSeparateVeForIdle
|
||||
|
@ -4114,13 +4117,13 @@ cmd_set_engine_type_default = "w\x00\x31\x00\x00"
|
|||
panel = veTableMap, South
|
||||
|
||||
dialog = etbPidDialog, "PID settings"
|
||||
field = "pFactor", etb_pFactor, {throttlePedalPositionAdcChannel != 16}
|
||||
field = "iFactor", etb_iFactor, {throttlePedalPositionAdcChannel != 16}
|
||||
field = "dFactor", etb_dFactor, {throttlePedalPositionAdcChannel != 16}
|
||||
field = "pid min", etb_minValue, {throttlePedalPositionAdcChannel != 16}
|
||||
field = "pid max", etb_maxValue, {throttlePedalPositionAdcChannel != 16}
|
||||
field = "iTermMin", etb_iTermMin, {throttlePedalPositionAdcChannel != 16}
|
||||
field = "iTermMax", etb_iTermMax, {throttlePedalPositionAdcChannel != 16}
|
||||
field = "pFactor", etb_pFactor
|
||||
field = "iFactor", etb_iFactor
|
||||
field = "dFactor", etb_dFactor
|
||||
field = "pid min", etb_minValue
|
||||
field = "pid max", etb_maxValue
|
||||
field = "iTermMin", etb_iTermMin
|
||||
field = "iTermMax", etb_iTermMax
|
||||
|
||||
dialog = etbIdleDialog, "ETB Idle"
|
||||
field = "use ETB for idle", useETBforIdleControl
|
||||
|
@ -4128,11 +4131,12 @@ cmd_set_engine_type_default = "w\x00\x31\x00\x00"
|
|||
|
||||
dialog = etbDialogLeft
|
||||
field = "https://rusefi.com/s/etb"
|
||||
field = "Late 90s German DC Motor idle", dcMotorIdleValve, { throttlePedalPositionAdcChannel == 16 }
|
||||
field = "Detailed status in console", isVerboseETB
|
||||
field = "Disable ETB Motor", pauseEtbControl
|
||||
; we need the term about stepper idle in here, because there's a bug in TS that you can't have different visibility
|
||||
; criteria for the same panel when used in multiple places
|
||||
panel = hbridgeHardware, { throttlePedalPositionAdcChannel != 16 || useStepperIdle && useHbridges }
|
||||
panel = hbridgeHardware, { throttlePedalPositionAdcChannel != 16 || (useStepperIdle && useHbridges) || dcMotorIdleValve }
|
||||
|
||||
dialog = etbAutotune, "PID Autotune"
|
||||
commandButton = "Start ETB PID Autotune", cmd_etb_autotune
|
||||
|
@ -4144,8 +4148,8 @@ cmd_set_engine_type_default = "w\x00\x31\x00\x00"
|
|||
field = "Debug mode", debugMode
|
||||
|
||||
dialog = etbDialogRight
|
||||
panel = etbIdleDialog
|
||||
panel = etbPidDialog
|
||||
panel = etbIdleDialog, { throttlePedalPositionAdcChannel != 16 }
|
||||
panel = etbPidDialog, { (throttlePedalPositionAdcChannel != 16) || dcMotorIdleValve }
|
||||
panel = etbAutotune
|
||||
|
||||
; Neutral position handling not yet implemented!
|
||||
|
|
|
@ -33,12 +33,12 @@ enable2ndByteCanID = false
|
|||
|
||||
[MegaTune]
|
||||
; https://rusefi.com/forum/viewtopic.php?p=36201#p36201
|
||||
signature = "rusEFI 2020.07.22.proteus_f7.2765497840"
|
||||
signature = "rusEFI 2020.07.28.proteus_f7.3597138346"
|
||||
|
||||
[TunerStudio]
|
||||
queryCommand = "S"
|
||||
versionInfo = "V" ; firmwave version for title bar.
|
||||
signature = "rusEFI 2020.07.22.proteus_f7.2765497840" ; signature is expected to be 7 or more characters.
|
||||
signature = "rusEFI 2020.07.28.proteus_f7.3597138346" ; signature is expected to be 7 or more characters.
|
||||
|
||||
[Constants]
|
||||
; new packet serial format with CRC
|
||||
|
@ -76,7 +76,7 @@ enable2ndByteCanID = false
|
|||
|
||||
; see PAGE_0_SIZE in C source code
|
||||
; CONFIG_DEFINITION_START
|
||||
; this section was generated automatically by rusEfi tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Wed Jul 22 19:41:14 UTC 2020
|
||||
; this section was generated automatically by rusEfi tool ConfigDefinition.jar based on gen_config.sh integration/rusefi_config.txt Tue Jul 28 13:12:22 UTC 2020
|
||||
|
||||
pageSize = 20000
|
||||
page = 1
|
||||
|
@ -166,12 +166,12 @@ page = 1
|
|||
cylinderBore = scalar, F32, 408, "mm", 1, 0, 0, 20000.0, 2
|
||||
sensorSnifferRpmThreshold = scalar, S32, 412, "RPM", 1, 0, 0,30000, 0
|
||||
rpmHardLimit = scalar, S32, 416, "rpm", 1, 0, 0, 20000.0, 2
|
||||
fuelAlgorithm = bits, U32, 420, [0:2], "MAF", "Alpha-N/TPS", "INVALID", "SPEED DENSITY", "MAF Air Charge", "INVALID", "INVALID", "INVALID"
|
||||
fuelAlgorithm = bits, U32, 420, [0:2], "MAF", "Alpha-N/TPS", "INVALID", "Speed Density", "MAF Air Charge", "Alpha-N", "INVALID", "INVALID"
|
||||
crankingInjectionMode = bits, U32, 424, [0:1], "Simultaneous", "Sequential", "Batch", "Single Point"
|
||||
injectionMode = bits, U32, 428, [0:1], "Simultaneous", "Sequential", "Batch", "Single Point"
|
||||
extraInjectionOffset = scalar, F32, 432, "deg", 1, 0.0, -720, 720, 2
|
||||
crankingTimingAngle = scalar, F32, 436, "deg", 1, 0.0, -360, 360, 2
|
||||
ignitionMode = bits, U32, 440, [0:1], "One coil", "Individual Coils", "Wasted", "Two distributors"
|
||||
ignitionMode = bits, U32, 440, [0:1], "Single Coil", "Individual Coils", "Wasted Spark", "Two Distributors"
|
||||
ignitionOffset = scalar, F32, 444, "RPM", 1, 0, 0, 3000.0, 0
|
||||
timingMode = bits, U32, 448 [0:0], "dynamic", "fixed"
|
||||
fixedModeTiming = scalar, F32, 452, "RPM", 1, 0, 0, 3000.0, 0
|
||||
|
@ -541,7 +541,7 @@ page = 1
|
|||
enableInnovateLC2 = bits, U32, 976, [8:8], "false", "true"
|
||||
showHumanReadableWarning= bits, U32, 976, [9:9], "false", "true"
|
||||
stftIgnoreErrorMagnitude= bits, U32, 976, [10:10], "false", "true"
|
||||
unusedBit_251_11 = bits, U32, 976, [11:11], "false", "true"
|
||||
dcMotorIdleValve = bits, U32, 976, [11:11], "false", "true"
|
||||
unusedBit_251_12 = bits, U32, 976, [12:12], "false", "true"
|
||||
unusedBit_251_13 = bits, U32, 976, [13:13], "false", "true"
|
||||
unusedBit_251_14 = bits, U32, 976, [14:14], "false", "true"
|
||||
|
@ -1050,7 +1050,7 @@ page = 1
|
|||
gppwm1_pwmFrequency = scalar, U16, 4146, "hz", 1, 0, 0, 500, 0
|
||||
gppwm1_onAboveDuty = scalar, U08, 4148, "%", 1, 0, 0, 100, 0
|
||||
gppwm1_offBelowDuty = scalar, U08, 4149, "%", 1, 0, 0, 100, 0
|
||||
gppwm1_loadAxis = bits, U08, 4150, [0:1], "TPS", "MAP", "CLT", "IAT"
|
||||
gppwm1_loadAxis = bits, U08, 4150, [0:2], "TPS", "MAP", "CLT", "IAT", "Fuel Load", "Ignition Load", "INVALID", "INVALID"
|
||||
gppwm1_alignmentFill_map = scalar, U08, 4151, "unit", 1, 0, 0, 100, 0
|
||||
gppwm1_loadBins = array, U08, 4152, [8], "load", 1, 0, 0.0, 250, 0
|
||||
gppwm1_rpmBins = array, U08, 4160, [8], "RPM", 50, 0, 0.0, 12000.0, 0
|
||||
|
@ -1060,7 +1060,7 @@ page = 1
|
|||
gppwm2_pwmFrequency = scalar, U16, 4234, "hz", 1, 0, 0, 500, 0
|
||||
gppwm2_onAboveDuty = scalar, U08, 4236, "%", 1, 0, 0, 100, 0
|
||||
gppwm2_offBelowDuty = scalar, U08, 4237, "%", 1, 0, 0, 100, 0
|
||||
gppwm2_loadAxis = bits, U08, 4238, [0:1], "TPS", "MAP", "CLT", "IAT"
|
||||
gppwm2_loadAxis = bits, U08, 4238, [0:2], "TPS", "MAP", "CLT", "IAT", "Fuel Load", "Ignition Load", "INVALID", "INVALID"
|
||||
gppwm2_alignmentFill_map = scalar, U08, 4239, "unit", 1, 0, 0, 100, 0
|
||||
gppwm2_loadBins = array, U08, 4240, [8], "load", 1, 0, 0.0, 250, 0
|
||||
gppwm2_rpmBins = array, U08, 4248, [8], "RPM", 50, 0, 0.0, 12000.0, 0
|
||||
|
@ -1070,7 +1070,7 @@ page = 1
|
|||
gppwm3_pwmFrequency = scalar, U16, 4322, "hz", 1, 0, 0, 500, 0
|
||||
gppwm3_onAboveDuty = scalar, U08, 4324, "%", 1, 0, 0, 100, 0
|
||||
gppwm3_offBelowDuty = scalar, U08, 4325, "%", 1, 0, 0, 100, 0
|
||||
gppwm3_loadAxis = bits, U08, 4326, [0:1], "TPS", "MAP", "CLT", "IAT"
|
||||
gppwm3_loadAxis = bits, U08, 4326, [0:2], "TPS", "MAP", "CLT", "IAT", "Fuel Load", "Ignition Load", "INVALID", "INVALID"
|
||||
gppwm3_alignmentFill_map = scalar, U08, 4327, "unit", 1, 0, 0, 100, 0
|
||||
gppwm3_loadBins = array, U08, 4328, [8], "load", 1, 0, 0.0, 250, 0
|
||||
gppwm3_rpmBins = array, U08, 4336, [8], "RPM", 50, 0, 0.0, 12000.0, 0
|
||||
|
@ -1080,7 +1080,7 @@ page = 1
|
|||
gppwm4_pwmFrequency = scalar, U16, 4410, "hz", 1, 0, 0, 500, 0
|
||||
gppwm4_onAboveDuty = scalar, U08, 4412, "%", 1, 0, 0, 100, 0
|
||||
gppwm4_offBelowDuty = scalar, U08, 4413, "%", 1, 0, 0, 100, 0
|
||||
gppwm4_loadAxis = bits, U08, 4414, [0:1], "TPS", "MAP", "CLT", "IAT"
|
||||
gppwm4_loadAxis = bits, U08, 4414, [0:2], "TPS", "MAP", "CLT", "IAT", "Fuel Load", "Ignition Load", "INVALID", "INVALID"
|
||||
gppwm4_alignmentFill_map = scalar, U08, 4415, "unit", 1, 0, 0, 100, 0
|
||||
gppwm4_loadBins = array, U08, 4416, [8], "load", 1, 0, 0.0, 250, 0
|
||||
gppwm4_rpmBins = array, U08, 4424, [8], "RPM", 50, 0, 0.0, 12000.0, 0
|
||||
|
@ -1203,7 +1203,7 @@ page = 1
|
|||
injectionMode = "This is where the fuel injection type is defined: "Simultaneous" means all injectors will fire together at once. "Sequential" fires the injectors on a per cylinder basis, which requires individually wired injectors. "Batched" will fire the injectors in groups. If your injectors are individually wired you will also need to enable "Two wire batch emulation". \nset injection_mode X\nSee also twoWireBatchInjection"
|
||||
extraInjectionOffset = "this is about deciding when the injector starts it's squirt\nSee also injectionPhase map\ntodo: do we need even need this since we have the map anyway?"
|
||||
crankingTimingAngle = "Ignition advance angle used during engine cranking, 5-10 degrees will work as a base setting for most engines.\nset cranking_timing_angle X"
|
||||
ignitionMode = ""One Coil" is for use on distributed ignition system. "Individual Coils" is to be used when you have one coil per cylinder (COP or similar). "Wasted" means one coil is driving two spark plugs in two cylinders, with one of the sparks not doing anything since it's happening on the exhaust cycle\nset ignition_mode X"
|
||||
ignitionMode = ""Single Coil" is for use on distributed ignition system. "Individual Coils" is to be used when you have one coil per cylinder (COP or similar). "Wasted Spark" means one coil is driving two spark plugs in two cylinders, with one of the sparks not doing anything since it's happening on the exhaust cycle\nset ignition_mode X"
|
||||
ignitionOffset = "this value could be used to offset the whole ignition timing table by a constant"
|
||||
timingMode = "Dynamic uses the timing map to decide the ignition timing, Static timing fixes the timing to the value set below (only use for checking static timing)."
|
||||
fixedModeTiming = "This value is the ignition timing used when in 'fixed timing' mode, i.e. constant timing\nThis mode is useful when adjusting distributor location."
|
||||
|
@ -1237,7 +1237,7 @@ page = 1
|
|||
isFasterEngineSpinUpEnabled = "Smarter cranking logic.\nSee also startOfCrankingPrimingPulse"
|
||||
coastingFuelCutEnabled = "This setting disables fuel injection while the engine is in overrun, this is useful as a fuel saving measure and to prevent back firing."
|
||||
useIacTableForCoasting = "This setting allows the ECU to open the IAC during overrun conditions to help reduce engine breaking, this can be helpful for large engines in light weight cars. Used in Auto-PID Idle mode."
|
||||
pauseEtbControl = "Disable the electronic throttle motor for testing.\nThis mode is for testing ETB position sensors, etc without actually driving the throttle."
|
||||
pauseEtbControl = "Disable the electronic throttle motor and DC idle motor for testing.\nThis mode is for testing ETB/DC idle position sensors, etc without actually driving the throttle."
|
||||
useETBforIdleControl = "This setting allows the ETB to act as the idle air control valve and move to regulate the airflow at idle."
|
||||
acIdleExtraMin = "Additional idle PID minValue while A/C is active"
|
||||
sdCardPeriodMs = "SD card logging period, in milliseconds"
|
||||
|
@ -1246,6 +1246,7 @@ page = 1
|
|||
sensorChartMode = "rusEfi console Sensor Sniffer mode"
|
||||
useHbridges = "If enabled we use two H-bridges to drive stepper idle air valve"
|
||||
stftIgnoreErrorMagnitude = "If enabled, adjust at a constant rate instead of a rate proportional to the current lambda error. This mode may be easier to tune, and more tolerant of sensor noise. Use of this mode is required if you have a narrowband O2 sensor.;"
|
||||
dcMotorIdleValve = "Used on some German vehicles around late 90s: cable-operated throttle and DC motor idle air valve.\nSet the primary TPS to the cable-operated throttle's sensor\nSet the secondary TPS to the mini ETB's position sensor(s)."
|
||||
launchSpeedTreshold = "Disabled above this speed"
|
||||
launchRpmTreshold = "Disabled below this rpm"
|
||||
launchTimingRpmRange = "Range from Launch Rpm for Timing Retard to activate"
|
||||
|
@ -1284,7 +1285,7 @@ page = 1
|
|||
verboseTriggerSynchDetails = "enable trigger_details"
|
||||
twoWireBatchInjection = "This is needed if your coils are individually wired and you wish to use batch injection.\nenable two_wire_batch_injection"
|
||||
useOnlyRisingEdgeForTrigger = "VR sensors are only precise on rising front\nenable trigger_only_front"
|
||||
twoWireBatchIgnition = "This is needed if your coils are individually wired (COP) and you wish to use batch ignition (wasted spark)."
|
||||
twoWireBatchIgnition = "This is needed if your coils are individually wired (COP) and you wish to use batch ignition (Wasted Spark)."
|
||||
useSeparateAdvanceForCranking = "This activates a separate advance table for cranking conditions, this allows cranking advance to be RPM dependant."
|
||||
useAdvanceCorrectionsForCranking = "This enables the various ignition corrections during cranking (IAT, CLT, FSIO and PID idle)."
|
||||
useTPSAdvanceTable = "This flag allows to use TPS for ignition lookup while in Speed Density Fuel Mode"
|
||||
|
@ -1490,8 +1491,8 @@ page = 1
|
|||
internalMcuTemperature = scalar,S08, 11, "deg C", 1, 0
|
||||
coolant = scalar, S16, 12, "deg C",{1/100}, 0.0
|
||||
intake = scalar, S16, 14, "deg C",{1/100}, 0.0
|
||||
; todo: aux1
|
||||
; todo: aux2
|
||||
auxt1 = scalar, S16, 16, "deg C",{1/100}, 0.0
|
||||
auxt2 = scalar, S16, 18, "deg C",{1/100}, 0.0
|
||||
|
||||
|
||||
; throttle, pedal
|
||||
|
@ -1631,7 +1632,7 @@ page = 1
|
|||
rawOilPressure = scalar, U16, 242, "V",{1/1000}, 0.0
|
||||
|
||||
; we use this to match logs to tunes
|
||||
tuneCrc16= scalar, U16, 244, "crc16", 1, 0
|
||||
tuneCrc16 = scalar, U16, 244, "crc16", 1, 0
|
||||
|
||||
;
|
||||
; see TunerStudioOutputChannels struct
|
||||
|
@ -1647,10 +1648,10 @@ page = 1
|
|||
time = { timeNow }
|
||||
|
||||
; These "synthetic" channels provide the Y-axis (load) value for gen purp PWM table's Y axes
|
||||
gppwm1_load = {(gppwm1_loadAxis == 0) ? TPSValue : ((gppwm1_loadAxis == 1) ? MAPValue : ((gppwm1_loadAxis == 2) ? coolant : intake))}
|
||||
gppwm2_load = {(gppwm2_loadAxis == 0) ? TPSValue : ((gppwm2_loadAxis == 1) ? MAPValue : ((gppwm2_loadAxis == 2) ? coolant : intake))}
|
||||
gppwm3_load = {(gppwm3_loadAxis == 0) ? TPSValue : ((gppwm3_loadAxis == 1) ? MAPValue : ((gppwm3_loadAxis == 2) ? coolant : intake))}
|
||||
gppwm4_load = {(gppwm4_loadAxis == 0) ? TPSValue : ((gppwm4_loadAxis == 1) ? MAPValue : ((gppwm4_loadAxis == 2) ? coolant : intake))}
|
||||
gppwm1_load = {(gppwm1_loadAxis == 0) ? TPSValue : ((gppwm1_loadAxis == 1) ? MAPValue : ((gppwm1_loadAxis == 2) ? coolant : ((gppwm1_loadAxis == 3) ? intake : ((gppwm1_loadAxis == 4) ? fuelingLoad : ignitionLoad))))}
|
||||
gppwm2_load = {(gppwm2_loadAxis == 0) ? TPSValue : ((gppwm2_loadAxis == 1) ? MAPValue : ((gppwm2_loadAxis == 2) ? coolant : ((gppwm2_loadAxis == 3) ? intake : ((gppwm2_loadAxis == 4) ? fuelingLoad : ignitionLoad))))}
|
||||
gppwm3_load = {(gppwm3_loadAxis == 0) ? TPSValue : ((gppwm3_loadAxis == 1) ? MAPValue : ((gppwm3_loadAxis == 2) ? coolant : ((gppwm3_loadAxis == 3) ? intake : ((gppwm3_loadAxis == 4) ? fuelingLoad : ignitionLoad))))}
|
||||
gppwm4_load = {(gppwm4_loadAxis == 0) ? TPSValue : ((gppwm4_loadAxis == 1) ? MAPValue : ((gppwm4_loadAxis == 2) ? coolant : ((gppwm4_loadAxis == 3) ? intake : ((gppwm4_loadAxis == 4) ? fuelingLoad : ignitionLoad))))}
|
||||
|
||||
[PcVariables]
|
||||
tuneCrcPcVariable = continuousChannelValue, tuneCrc16
|
||||
|
@ -2226,6 +2227,8 @@ gaugeCategory = Sensors - Extra 1
|
|||
internalMcuTemperatureGauge = internalMcuTemperature, "ECU temperature", "C", 0, 100, 0, 0, 75, 100, 0, 0
|
||||
OilPressGauge = oilPressure, "Oil Pressure", "kPa", 0, 750, 35, 75, 550, 700, 0, 0
|
||||
idleAirValvePositionGauge = idleAirValvePosition, "Idle position", "%", 0, 100, 0, 0, 100, 100, 1, 1
|
||||
AuxT1Gauge = auxt1, "Aux temp 1", "deg C", -40, 140, -15, 1, 95, 110, 1, 1
|
||||
AuxT2Gauge = auxt2, "Aux temp 2", "deg C", -40, 140, -15, 1, 95, 110, 1, 1
|
||||
|
||||
gaugeCategory = Ignition
|
||||
ignadvGauge = ignitionAdvance, "Ignition timing", "degrees", -100, 100, -999, -999, 999, 999, 1, 1
|
||||
|
@ -3525,7 +3528,7 @@ cmd_set_engine_type_default = "w\x00\x31\x00\x00"
|
|||
dialog = idleSettings, "", yAxis
|
||||
field = "Idle IAC control mode", idleMode
|
||||
field = useInstantRpmForIdle, useInstantRpmForIdle
|
||||
field = "use ETB for idle", useETBforIdleControl
|
||||
field = "use ETB for idle", useETBforIdleControl, { throttlePedalPositionAdcChannel != 16 }
|
||||
field = "ETB Idle range", etbIdleThrottleRange, {useETBforIdleControl == 1}
|
||||
field = "Use separate Ignition Table for idle", useSeparateAdvanceForIdle
|
||||
field = "Use separate VE Table for idle", useSeparateVeForIdle
|
||||
|
@ -4114,13 +4117,13 @@ cmd_set_engine_type_default = "w\x00\x31\x00\x00"
|
|||
panel = veTableMap, South
|
||||
|
||||
dialog = etbPidDialog, "PID settings"
|
||||
field = "pFactor", etb_pFactor, {throttlePedalPositionAdcChannel != 16}
|
||||
field = "iFactor", etb_iFactor, {throttlePedalPositionAdcChannel != 16}
|
||||
field = "dFactor", etb_dFactor, {throttlePedalPositionAdcChannel != 16}
|
||||
field = "pid min", etb_minValue, {throttlePedalPositionAdcChannel != 16}
|
||||
field = "pid max", etb_maxValue, {throttlePedalPositionAdcChannel != 16}
|
||||
field = "iTermMin", etb_iTermMin, {throttlePedalPositionAdcChannel != 16}
|
||||
field = "iTermMax", etb_iTermMax, {throttlePedalPositionAdcChannel != 16}
|
||||
field = "pFactor", etb_pFactor
|
||||
field = "iFactor", etb_iFactor
|
||||
field = "dFactor", etb_dFactor
|
||||
field = "pid min", etb_minValue
|
||||
field = "pid max", etb_maxValue
|
||||
field = "iTermMin", etb_iTermMin
|
||||
field = "iTermMax", etb_iTermMax
|
||||
|
||||
dialog = etbIdleDialog, "ETB Idle"
|
||||
field = "use ETB for idle", useETBforIdleControl
|
||||
|
@ -4128,11 +4131,12 @@ cmd_set_engine_type_default = "w\x00\x31\x00\x00"
|
|||
|
||||
dialog = etbDialogLeft
|
||||
field = "https://rusefi.com/s/etb"
|
||||
field = "Late 90s German DC Motor idle", dcMotorIdleValve, { throttlePedalPositionAdcChannel == 16 }
|
||||
field = "Detailed status in console", isVerboseETB
|
||||
field = "Disable ETB Motor", pauseEtbControl
|
||||
; we need the term about stepper idle in here, because there's a bug in TS that you can't have different visibility
|
||||
; criteria for the same panel when used in multiple places
|
||||
panel = hbridgeHardware, { throttlePedalPositionAdcChannel != 16 || useStepperIdle && useHbridges }
|
||||
panel = hbridgeHardware, { throttlePedalPositionAdcChannel != 16 || (useStepperIdle && useHbridges) || dcMotorIdleValve }
|
||||
|
||||
dialog = etbAutotune, "PID Autotune"
|
||||
commandButton = "Start ETB PID Autotune", cmd_etb_autotune
|
||||
|
@ -4144,8 +4148,8 @@ cmd_set_engine_type_default = "w\x00\x31\x00\x00"
|
|||
field = "Debug mode", debugMode
|
||||
|
||||
dialog = etbDialogRight
|
||||
panel = etbIdleDialog
|
||||
panel = etbPidDialog
|
||||
panel = etbIdleDialog, { throttlePedalPositionAdcChannel != 16 }
|
||||
panel = etbPidDialog, { (throttlePedalPositionAdcChannel != 16) || dcMotorIdleValve }
|
||||
panel = etbAutotune
|
||||
|
||||
; Neutral position handling not yet implemented!
|
||||
|
|
|
@ -206,8 +206,8 @@ enable2ndByteCanID = false
|
|||
internalMcuTemperature = scalar,S08, 11, "deg C", 1, 0
|
||||
coolant = scalar, S16, 12, "deg C",{1/@@PACK_MULT_TEMPERATURE@@}, 0.0
|
||||
intake = scalar, S16, 14, "deg C",{1/@@PACK_MULT_TEMPERATURE@@}, 0.0
|
||||
; todo: aux1
|
||||
; todo: aux2
|
||||
auxt1 = scalar, S16, 16, "deg C",{1/@@PACK_MULT_TEMPERATURE@@}, 0.0
|
||||
auxt2 = scalar, S16, 18, "deg C",{1/@@PACK_MULT_TEMPERATURE@@}, 0.0
|
||||
|
||||
|
||||
; throttle, pedal
|
||||
|
@ -347,7 +347,7 @@ enable2ndByteCanID = false
|
|||
rawOilPressure = scalar, U16, 242, "V",{1/@@PACK_MULT_VOLTAGE@@}, 0.0
|
||||
|
||||
; we use this to match logs to tunes
|
||||
tuneCrc16= scalar, U16, 244, "crc16", 1, 0
|
||||
tuneCrc16 = scalar, U16, 244, "crc16", 1, 0
|
||||
|
||||
;
|
||||
; see TunerStudioOutputChannels struct
|
||||
|
@ -362,10 +362,10 @@ enable2ndByteCanID = false
|
|||
time = { timeNow }
|
||||
|
||||
; These "synthetic" channels provide the Y-axis (load) value for gen purp PWM table's Y axes
|
||||
gppwm1_load = {(gppwm1_loadAxis == 0) ? TPSValue : ((gppwm1_loadAxis == 1) ? MAPValue : ((gppwm1_loadAxis == 2) ? coolant : intake))}
|
||||
gppwm2_load = {(gppwm2_loadAxis == 0) ? TPSValue : ((gppwm2_loadAxis == 1) ? MAPValue : ((gppwm2_loadAxis == 2) ? coolant : intake))}
|
||||
gppwm3_load = {(gppwm3_loadAxis == 0) ? TPSValue : ((gppwm3_loadAxis == 1) ? MAPValue : ((gppwm3_loadAxis == 2) ? coolant : intake))}
|
||||
gppwm4_load = {(gppwm4_loadAxis == 0) ? TPSValue : ((gppwm4_loadAxis == 1) ? MAPValue : ((gppwm4_loadAxis == 2) ? coolant : intake))}
|
||||
gppwm1_load = {(gppwm1_loadAxis == 0) ? TPSValue : ((gppwm1_loadAxis == 1) ? MAPValue : ((gppwm1_loadAxis == 2) ? coolant : ((gppwm1_loadAxis == 3) ? intake : ((gppwm1_loadAxis == 4) ? fuelingLoad : ignitionLoad))))}
|
||||
gppwm2_load = {(gppwm2_loadAxis == 0) ? TPSValue : ((gppwm2_loadAxis == 1) ? MAPValue : ((gppwm2_loadAxis == 2) ? coolant : ((gppwm2_loadAxis == 3) ? intake : ((gppwm2_loadAxis == 4) ? fuelingLoad : ignitionLoad))))}
|
||||
gppwm3_load = {(gppwm3_loadAxis == 0) ? TPSValue : ((gppwm3_loadAxis == 1) ? MAPValue : ((gppwm3_loadAxis == 2) ? coolant : ((gppwm3_loadAxis == 3) ? intake : ((gppwm3_loadAxis == 4) ? fuelingLoad : ignitionLoad))))}
|
||||
gppwm4_load = {(gppwm4_loadAxis == 0) ? TPSValue : ((gppwm4_loadAxis == 1) ? MAPValue : ((gppwm4_loadAxis == 2) ? coolant : ((gppwm4_loadAxis == 3) ? intake : ((gppwm4_loadAxis == 4) ? fuelingLoad : ignitionLoad))))}
|
||||
|
||||
[PcVariables]
|
||||
tuneCrcPcVariable = continuousChannelValue, tuneCrc16
|
||||
|
@ -931,6 +931,8 @@ gaugeCategory = Sensors - Extra 1
|
|||
internalMcuTemperatureGauge = internalMcuTemperature, @@GAUGE_NAME_ECU_TEMPERATURE@@, "C", 0, 100, 0, 0, 75, 100, 0, 0
|
||||
OilPressGauge = oilPressure, "Oil Pressure", "kPa", 0, 750, 35, 75, 550, 700, 0, 0
|
||||
idleAirValvePositionGauge = idleAirValvePosition, "Idle position", "%", 0, 100, 0, 0, 100, 100, 1, 1
|
||||
AuxT1Gauge = auxt1, "Aux temp 1", "deg C", -40, 140, -15, 1, 95, 110, 1, 1
|
||||
AuxT2Gauge = auxt2, "Aux temp 2", "deg C", -40, 140, -15, 1, 95, 110, 1, 1
|
||||
|
||||
gaugeCategory = Ignition
|
||||
ignadvGauge = ignitionAdvance, "Ignition timing", "degrees", -100, 100, -999, -999, 999, 999, 1, 1
|
||||
|
@ -2131,9 +2133,9 @@ cmd_set_engine_type_default = "w\x00\x31\x00\x00"
|
|||
|
||||
dialog = baroSettings, "Baro sensor"
|
||||
field = "Baro ADC input", baroSensor_hwChannel
|
||||
field = baroSensor_lowValue, baroSensor_lowValue, {baroSensor_hwChannel != 16}
|
||||
field = baroSensor_highValue, baroSensor_highValue, {baroSensor_hwChannel != 16}
|
||||
field = baroSensor_type, baroSensor_type, {baroSensor_hwChannel != 16}
|
||||
field = baroSensor_lowValue, baroSensor_lowValue, {baroSensor_hwChannel != @@ADC_CHANNEL_NONE@@}
|
||||
field = baroSensor_highValue, baroSensor_highValue, {baroSensor_hwChannel != @@ADC_CHANNEL_NONE@@}
|
||||
field = baroSensor_type, baroSensor_type, {baroSensor_hwChannel != @@ADC_CHANNEL_NONE@@}
|
||||
|
||||
dialog = mapCurves, "MAP sampling", yAxis
|
||||
field = "isMapAveragingEnabled", isMapAveragingEnabled
|
||||
|
@ -2159,7 +2161,7 @@ cmd_set_engine_type_default = "w\x00\x31\x00\x00"
|
|||
|
||||
dialog = egoSettings, "", yAxis
|
||||
panel = egoSettings_IO
|
||||
panel = egoSettings_sensor, {afr_hwChannel != 16 && enableAemXSeries == 0 && !auxSerialRxPin && !auxSerialTxPin}
|
||||
panel = egoSettings_sensor, {afr_hwChannel != @@ADC_CHANNEL_NONE@@ && enableAemXSeries == 0 && !auxSerialRxPin && !auxSerialTxPin}
|
||||
field = "Enable AEM X-Series CANbus", enableAemXSeries, { canReadEnabled }
|
||||
field = "Enable Innovate LC-2 Serial", enableInnovateLC2, { auxSerialRxPin && auxSerialTxPin }
|
||||
|
||||
|
@ -2244,7 +2246,7 @@ cmd_set_engine_type_default = "w\x00\x31\x00\x00"
|
|||
dialog = idleSettings, "", yAxis
|
||||
field = "Idle IAC control mode", idleMode
|
||||
field = useInstantRpmForIdle, useInstantRpmForIdle
|
||||
field = "use ETB for idle", useETBforIdleControl
|
||||
field = "use ETB for idle", useETBforIdleControl, { throttlePedalPositionAdcChannel != @@ADC_CHANNEL_NONE@@ }
|
||||
field = "ETB Idle range", etbIdleThrottleRange, {useETBforIdleControl == 1}
|
||||
field = "Use separate Ignition Table for idle", useSeparateAdvanceForIdle
|
||||
field = "Use separate VE Table for idle", useSeparateVeForIdle
|
||||
|
@ -2842,13 +2844,13 @@ cmd_set_engine_type_default = "w\x00\x31\x00\x00"
|
|||
panel = veTableMap, South
|
||||
|
||||
dialog = etbPidDialog, "PID settings"
|
||||
field = "pFactor", etb_pFactor, {throttlePedalPositionAdcChannel != 16}
|
||||
field = "iFactor", etb_iFactor, {throttlePedalPositionAdcChannel != 16}
|
||||
field = "dFactor", etb_dFactor, {throttlePedalPositionAdcChannel != 16}
|
||||
field = "pid min", etb_minValue, {throttlePedalPositionAdcChannel != 16}
|
||||
field = "pid max", etb_maxValue, {throttlePedalPositionAdcChannel != 16}
|
||||
field = "iTermMin", etb_iTermMin, {throttlePedalPositionAdcChannel != 16}
|
||||
field = "iTermMax", etb_iTermMax, {throttlePedalPositionAdcChannel != 16}
|
||||
field = "pFactor", etb_pFactor
|
||||
field = "iFactor", etb_iFactor
|
||||
field = "dFactor", etb_dFactor
|
||||
field = "pid min", etb_minValue
|
||||
field = "pid max", etb_maxValue
|
||||
field = "iTermMin", etb_iTermMin
|
||||
field = "iTermMax", etb_iTermMax
|
||||
|
||||
dialog = etbIdleDialog, "ETB Idle"
|
||||
field = "use ETB for idle", useETBforIdleControl
|
||||
|
@ -2856,11 +2858,12 @@ cmd_set_engine_type_default = "w\x00\x31\x00\x00"
|
|||
|
||||
dialog = etbDialogLeft
|
||||
field = "https://rusefi.com/s/etb"
|
||||
field = "Late 90s German DC Motor idle", dcMotorIdleValve, { throttlePedalPositionAdcChannel == @@ADC_CHANNEL_NONE@@ }
|
||||
field = "Detailed status in console", isVerboseETB
|
||||
field = "Disable ETB Motor", pauseEtbControl
|
||||
; we need the term about stepper idle in here, because there's a bug in TS that you can't have different visibility
|
||||
; criteria for the same panel when used in multiple places
|
||||
panel = hbridgeHardware, { throttlePedalPositionAdcChannel != 16 || useStepperIdle && useHbridges }
|
||||
panel = hbridgeHardware, { throttlePedalPositionAdcChannel != @@ADC_CHANNEL_NONE@@ || (useStepperIdle && useHbridges) || dcMotorIdleValve }
|
||||
|
||||
dialog = etbAutotune, "PID Autotune"
|
||||
commandButton = "Start ETB PID Autotune", cmd_etb_autotune
|
||||
|
@ -2872,8 +2875,8 @@ cmd_set_engine_type_default = "w\x00\x31\x00\x00"
|
|||
field = "Debug mode", debugMode
|
||||
|
||||
dialog = etbDialogRight
|
||||
panel = etbIdleDialog
|
||||
panel = etbPidDialog
|
||||
panel = etbIdleDialog, { throttlePedalPositionAdcChannel != @@ADC_CHANNEL_NONE@@ }
|
||||
panel = etbPidDialog, { (throttlePedalPositionAdcChannel != @@ADC_CHANNEL_NONE@@) || dcMotorIdleValve }
|
||||
panel = etbAutotune
|
||||
|
||||
; Neutral position handling not yet implemented!
|
||||
|
|
|
@ -0,0 +1,11 @@
|
|||
<component name="libraryTable">
|
||||
<library name="dfu_java">
|
||||
<CLASSES>
|
||||
<root url="jar://$PROJECT_DIR$/lib/dfu/dfu_java.jar!/" />
|
||||
<root url="jar://$PROJECT_DIR$/lib/dfu/IntelHexParser.jar!/" />
|
||||
<root url="jar://$PROJECT_DIR$/lib/dfu/usb4java-1.3.0.jar!/" />
|
||||
</CLASSES>
|
||||
<JAVADOC />
|
||||
<SOURCES />
|
||||
</library>
|
||||
</component>
|
|
@ -0,0 +1,11 @@
|
|||
<component name="libraryTable">
|
||||
<library name="jsr305-2.0.1">
|
||||
<CLASSES>
|
||||
<root url="jar://$PROJECT_DIR$/lib/jsr305-2.0.1.jar!/" />
|
||||
</CLASSES>
|
||||
<JAVADOC />
|
||||
<SOURCES>
|
||||
<root url="jar://$PROJECT_DIR$/lib/jsr305-2.0.1.jar!/" />
|
||||
</SOURCES>
|
||||
</library>
|
||||
</component>
|
|
@ -0,0 +1,10 @@
|
|||
<component name="libraryTable">
|
||||
<library name="log4j-api-2.13.3">
|
||||
<CLASSES>
|
||||
<root url="jar://$PROJECT_DIR$/lib/log4j-api-2.13.3.jar!/" />
|
||||
<root url="jar://$PROJECT_DIR$/lib/log4j-core-2.13.3.jar!/" />
|
||||
</CLASSES>
|
||||
<JAVADOC />
|
||||
<SOURCES />
|
||||
</library>
|
||||
</component>
|
|
@ -0,0 +1,11 @@
|
|||
<component name="ProjectRunConfigurationManager">
|
||||
<configuration default="false" name="Launcher network connector" type="Application" factoryName="Application">
|
||||
<option name="MAIN_CLASS_NAME" value="com.rusefi.Launcher" />
|
||||
<module name="ui" />
|
||||
<option name="PROGRAM_PARAMETERS" value="network_connector" />
|
||||
<option name="VM_PARAMETERS" value="-Dini_file_path=../firmware/tunerstudio -Dshow_etb_pane=true -Dhigh_speed_logger_rpm=10000" />
|
||||
<method v="2">
|
||||
<option name="Make" enabled="true" />
|
||||
</method>
|
||||
</configuration>
|
||||
</component>
|
|
@ -555,7 +555,7 @@ public class AutoTest {
|
|||
|
||||
boolean failed = false;
|
||||
try {
|
||||
LinkManager linkManager = new LinkManager(FileLog.LOGGER);
|
||||
LinkManager linkManager = new LinkManager();
|
||||
IoUtil.connectToSimulator(linkManager, startSimulator);
|
||||
new AutoTest(linkManager, linkManager.getCommandQueue()).mainTestBody();
|
||||
} catch (Throwable e) {
|
||||
|
|
|
@ -12,7 +12,7 @@ public class EnduranceTest {
|
|||
private static final int DEFAULT_COUNT = 2000;
|
||||
|
||||
public static void main(String[] args) {
|
||||
LinkManager linkManager = new LinkManager(FileLog.LOGGER);
|
||||
LinkManager linkManager = new LinkManager();
|
||||
CommandQueue commandQueue = linkManager.getCommandQueue();
|
||||
long start = System.currentTimeMillis();
|
||||
int count = parseCount(args);
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
package com.rusefi;
|
||||
|
||||
import com.rusefi.io.CommandQueue;
|
||||
import com.rusefi.io.LinkManager;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
|
@ -83,7 +82,7 @@ public class RealHwTest {
|
|||
}
|
||||
|
||||
private static void runRealHardwareTest(String port) throws Exception {
|
||||
LinkManager linkManager = new LinkManager(FileLog.LOGGER);
|
||||
LinkManager linkManager = new LinkManager();
|
||||
IoUtil.realHardwareConnect(linkManager, port);
|
||||
new AutoTest(linkManager, linkManager.getCommandQueue()).mainTestBody();
|
||||
}
|
||||
|
|
|
@ -11,6 +11,8 @@ import java.util.function.Consumer;
|
|||
* Andrey Belomutskiy, (c) 2013-2020
|
||||
*/
|
||||
public class SimulatorExecHelper {
|
||||
private final static NamedThreadFactory THREAD_FACTORY = new NamedThreadFactory("SimulatorExecHelper", true);
|
||||
|
||||
// see also SimulatorHelper
|
||||
private static final String SIMULATOR_BINARY = "../simulator/build/rusefi_simulator.exe";
|
||||
static Process simulatorProcess;
|
||||
|
@ -42,8 +44,7 @@ public class SimulatorExecHelper {
|
|||
public static void dumpProcessOutput(Process process) throws IOException {
|
||||
BufferedReader input =
|
||||
new BufferedReader(new InputStreamReader(process.getInputStream()));
|
||||
Thread thread = new Thread(createErrorStreamEcho(process));
|
||||
thread.setDaemon(true);
|
||||
Thread thread = THREAD_FACTORY.newThread(createErrorStreamEcho(process));
|
||||
thread.start();
|
||||
|
||||
String prefix = "from console: ";
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
java -jar console/rusefi_console.jar dfu $1
|
|
@ -2,7 +2,7 @@
|
|||
<property name="jar_file_folder" value="../java_console_binary"/>
|
||||
<property name="jar_file" value="${jar_file_folder}/rusefi_console.jar"/>
|
||||
<property name="server_jar_file" value="${jar_file_folder}/rusefi_server.jar"/>
|
||||
<property name="lib_list" value="../java_tools/configuration_definition/lib/snakeyaml.jar:lib/json-simple-1.1.1.jar:lib/server/javax.json.jar:lib/server/cactoos.jar:lib/server/takes.jar:lib/json-simple-1.1.1.jar:lib/jaxb-api.jar:lib/httpclient.jar:lib/httpmime.jar:lib/httpcore.jar:lib/jSerialComm.jar:lib/jcip-annotations-1.0.jar:lib/jlatexmath-1.0.6.jar:lib/swing-layout-1.0.jar:lib/jep.jar:lib/log4j.jar:lib/junit.jar:lib/SteelSeries-3.9.30.jar:lib/annotations.jar:lib/miglayout-4.0.jar:lib/surfaceplotter-2.0.1.jar"/>
|
||||
<property name="lib_list" value="../java_tools/configuration_definition/lib/snakeyaml.jar:lib/log4j-api-2.13.3.jar:lib/log4j-core-2.13.3.jar:lib/jsr305-2.0.1.jar:lib/dfu/dfu_java.jar:lib/dfu/IntelHexParser.jar:lib/json-simple-1.1.1.jar:lib/server/javax.json.jar:lib/server/cactoos.jar:lib/server/takes.jar:lib/json-simple-1.1.1.jar:lib/jaxb-api.jar:lib/httpclient.jar:lib/httpmime.jar:lib/httpcore.jar:lib/jSerialComm.jar:lib/jcip-annotations-1.0.jar:lib/jlatexmath-1.0.6.jar:lib/swing-layout-1.0.jar:lib/jep.jar:lib/log4j.jar:lib/junit.jar:lib/SteelSeries-3.9.30.jar:lib/annotations.jar:lib/miglayout-4.0.jar:lib/surfaceplotter-2.0.1.jar"/>
|
||||
|
||||
<target name="clean">
|
||||
<delete dir="build"/>
|
||||
|
@ -56,7 +56,7 @@
|
|||
<src path="inifile/src/test/java"/>
|
||||
<src path="shared_ui/src"/>
|
||||
<src path="shared_io/src/main/java"/>
|
||||
<src path="shared_io/src/test/java"/>
|
||||
<!-- <src path="shared_io/src/test/java"/>-->
|
||||
<src path="logging-api/src/main/java"/>
|
||||
<src path="ui/src/main/java"/>
|
||||
<src path="ui/src/test/java"/>
|
||||
|
@ -102,7 +102,7 @@
|
|||
|
||||
<jar destfile="${server_jar_file}">
|
||||
<manifest>
|
||||
<attribute name="Main-Class" value="com.rusefi.Launcher"/>
|
||||
<attribute name="Main-Class" value="com.rusefi.server.BackendLauncher"/>
|
||||
<attribute name="Built-Date" value="${TODAY}"/>
|
||||
<attribute name="Signature-Vendor" value="rusEFI LLC"/>
|
||||
</manifest>
|
||||
|
@ -111,6 +111,9 @@
|
|||
<zipfileset src="lib/server/cactoos.jar" includes="**/*.class"/>
|
||||
<zipfileset src="lib/server/javax.json.jar" includes="**/*.class"/>
|
||||
<zipfileset src="lib/server/takes.jar" includes="**/*.class"/>
|
||||
<zipfileset src="lib/log4j-api-2.13.3.jar"/>
|
||||
<zipfileset src="lib/log4j-core-2.13.3.jar"/>
|
||||
<fileset dir="../java_tools/proxy_server/src/main/resources" includes="**/*.*"/>
|
||||
</jar>
|
||||
</target>
|
||||
|
||||
|
@ -148,6 +151,14 @@
|
|||
<zipfileset src="lib/httpmime.jar" includes="**/*.class"/>
|
||||
<zipfileset src="lib/jaxb-api.jar" includes="**/*.class"/>
|
||||
<zipfileset src="lib/jSerialComm.jar" includes="**/*.class **/*.so **/*.dll **/*.jnilib"/>
|
||||
<zipfileset src="lib/dfu/libusb4java-1.3.0-linux-aarch64.jar" includes="**/*.class **/*.so **/*.dll **/*.jnilib"/>
|
||||
<zipfileset src="lib/dfu/libusb4java-1.3.0-linux-arm.jar" includes="**/*.class **/*.so **/*.dll **/*.jnilib"/>
|
||||
<zipfileset src="lib/dfu/libusb4java-1.3.0-linux-x86.jar" includes="**/*.class **/*.so **/*.dll **/*.jnilib"/>
|
||||
<zipfileset src="lib/dfu/libusb4java-1.3.0-linux-x86-64.jar" includes="**/*.class **/*.so **/*.dll **/*.jnilib"/>
|
||||
<zipfileset src="lib/dfu/libusb4java-1.3.0-darwin-x86-64.jar" includes="**/*.class **/*.so **/*.dll **/*.jnilib"/>
|
||||
<zipfileset src="lib/dfu/usb4java-1.3.0.jar" includes="**/*.class"/>
|
||||
<zipfileset src="lib/dfu/IntelHexParser.jar" includes="**/*.class"/>
|
||||
<zipfileset src="lib/dfu/dfu_java.jar" includes="**/*.class"/>
|
||||
<zipfileset src="lib/annotations.jar" includes="**/*.class"/>
|
||||
<zipfileset src="lib/miglayout-4.0.jar" includes="**/*.class"/>
|
||||
<zipfileset src="lib/surfaceplotter-2.0.1.jar" includes="**/*.class **/*.properties"/>
|
||||
|
|
|
@ -12,6 +12,8 @@ public interface WriteStream {
|
|||
*/
|
||||
void write(byte[] bytes) throws IOException;
|
||||
|
||||
void flush() throws IOException;
|
||||
|
||||
default void write(byte value) throws IOException {
|
||||
write(new byte[]{value});
|
||||
}
|
||||
|
|
|
@ -2,4 +2,9 @@ package com.rusefi;
|
|||
|
||||
public interface Listener<T> {
|
||||
void onResult(T parameter);
|
||||
|
||||
static <T> Listener<T> empty() {
|
||||
return parameter -> {
|
||||
};
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,53 +0,0 @@
|
|||
package com.rusefi;
|
||||
|
||||
import com.opensr5.Logger;
|
||||
import com.rusefi.io.IoStream;
|
||||
import com.rusefi.io.commands.HelloCommand;
|
||||
import com.rusefi.io.tcp.BinaryProtocolProxy;
|
||||
import com.rusefi.io.tcp.TcpIoStream;
|
||||
import com.rusefi.server.ApplicationRequest;
|
||||
import com.rusefi.server.rusEFISSLContext;
|
||||
import com.rusefi.tools.online.HttpUtil;
|
||||
import com.rusefi.tools.online.ProxyClient;
|
||||
import org.apache.http.HttpResponse;
|
||||
|
||||
import java.io.IOException;
|
||||
|
||||
public class LocalApplicationProxy {
|
||||
public static final int SERVER_PORT_FOR_APPLICATIONS = 8002;
|
||||
private final Logger logger;
|
||||
private final ApplicationRequest applicationRequest;
|
||||
|
||||
public LocalApplicationProxy(Logger logger, ApplicationRequest applicationRequest) {
|
||||
this.logger = logger;
|
||||
this.applicationRequest = applicationRequest;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param serverPortForRemoteUsers port on which rusEFI proxy accepts authenticator connections
|
||||
* @param applicationRequest remote session we want to connect to
|
||||
* @param authenticatorPort local port we would bind for TunerStudio to connect to
|
||||
* @param httpPort
|
||||
*/
|
||||
static void startAndRun(Logger logger, int serverPortForRemoteUsers, ApplicationRequest applicationRequest, int authenticatorPort, int httpPort) throws IOException {
|
||||
HttpResponse httpResponse = HttpUtil.executeGet(ProxyClient.getHttpAddress(httpPort) + ProxyClient.VERSION_PATH);
|
||||
String version = HttpUtil.getResponse(httpResponse);
|
||||
logger.info("Version=" + version);
|
||||
if (!version.contains(ProxyClient.BACKEND_VERSION))
|
||||
throw new IOException("Unexpected backend version " + version + " while we want " + ProxyClient.BACKEND_VERSION);
|
||||
|
||||
IoStream authenticatorToProxyStream = new TcpIoStream("authenticatorToProxyStream ", logger, rusEFISSLContext.getSSLSocket(HttpUtil.RUSEFI_PROXY_HOSTNAME, serverPortForRemoteUsers));
|
||||
LocalApplicationProxy localApplicationProxy = new LocalApplicationProxy(logger, applicationRequest);
|
||||
localApplicationProxy.run(authenticatorToProxyStream);
|
||||
|
||||
BinaryProtocolProxy.createProxy(logger, authenticatorToProxyStream, authenticatorPort);
|
||||
}
|
||||
|
||||
public void run(IoStream authenticatorToProxyStream) throws IOException {
|
||||
// right from connection push session authentication data
|
||||
new HelloCommand(logger, applicationRequest.toJson()).handle(authenticatorToProxyStream);
|
||||
}
|
||||
|
||||
public static void start(String[] strings) {
|
||||
}
|
||||
}
|
|
@ -9,15 +9,23 @@ import java.util.concurrent.atomic.AtomicInteger;
|
|||
public class NamedThreadFactory implements ThreadFactory {
|
||||
private final AtomicInteger counter = new AtomicInteger();
|
||||
private String name;
|
||||
private final boolean isDaemon;
|
||||
|
||||
public NamedThreadFactory(String name) {
|
||||
this.name = name;
|
||||
this(name, false);
|
||||
}
|
||||
|
||||
public NamedThreadFactory(String name, boolean isDaemon) {
|
||||
this.name = name;
|
||||
this.isDaemon = isDaemon;
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public Thread newThread(@NotNull Runnable r) {
|
||||
Thread t = Executors.defaultThreadFactory().newThread(r);
|
||||
t.setName(name + counter.incrementAndGet());
|
||||
t.setDaemon(isDaemon);
|
||||
return t;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -5,6 +5,7 @@ package com.rusefi;
|
|||
*/
|
||||
public interface Timeouts {
|
||||
int SECOND = 1000;
|
||||
int MINUTE = 60 * SECOND;
|
||||
int COMMAND_TIMEOUT_SEC = 10; // seconds
|
||||
|
||||
/**
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
package com.rusefi.autodetect;
|
||||
|
||||
import com.rusefi.FileLog;
|
||||
import com.devexperts.logging.Logging;
|
||||
import com.rusefi.NamedThreadFactory;
|
||||
import com.rusefi.io.IoStream;
|
||||
import com.rusefi.io.LinkManager;
|
||||
|
@ -19,24 +19,28 @@ import java.util.function.Function;
|
|||
* Andrey Belomutskiy, (c) 2013-2020
|
||||
*/
|
||||
public class PortDetector {
|
||||
private final static Logging log = Logging.getLogging(PortDetector.class);
|
||||
|
||||
private static final NamedThreadFactory AUTO_DETECT_PORT = new NamedThreadFactory("AutoDetectPort");
|
||||
|
||||
/**
|
||||
* Connect to all serial ports and find out which one respond first
|
||||
* @param callback
|
||||
* @return port name on which rusEFI was detected or null if none
|
||||
*/
|
||||
@Nullable
|
||||
public static String autoDetectSerial(Function<IoStream, Void> callback) {
|
||||
String[] serialPorts = getPortNames();
|
||||
if (serialPorts.length == 0) {
|
||||
System.err.println("No serial ports detected");
|
||||
log.error("No serial ports detected");
|
||||
return null;
|
||||
}
|
||||
FileLog.MAIN.logLine("Trying " + Arrays.toString(serialPorts));
|
||||
log.info("Trying " + Arrays.toString(serialPorts));
|
||||
List<Thread> serialFinder = new ArrayList<>();
|
||||
CountDownLatch portFound = new CountDownLatch(1);
|
||||
AtomicReference<String> result = new AtomicReference<>();
|
||||
for (String serialPort : serialPorts) {
|
||||
Thread thread = AUTO_DETECT_PORT.newThread(new SerialAutoChecker(FileLog.LOGGER, serialPort, portFound, result, callback));
|
||||
Thread thread = AUTO_DETECT_PORT.newThread(new SerialAutoChecker(serialPort, portFound, result, callback));
|
||||
serialFinder.add(thread);
|
||||
thread.start();
|
||||
}
|
|
@ -1,7 +1,6 @@
|
|||
package com.rusefi.autodetect;
|
||||
|
||||
import com.opensr5.Logger;
|
||||
import com.rusefi.FileLog;
|
||||
import com.devexperts.logging.Logging;
|
||||
import com.rusefi.binaryprotocol.BinaryProtocolCommands;
|
||||
import com.rusefi.binaryprotocol.IncomingDataBuffer;
|
||||
import com.rusefi.config.generated.Fields;
|
||||
|
@ -17,38 +16,36 @@ import java.util.function.Function;
|
|||
import static com.rusefi.binaryprotocol.IoHelper.checkResponseCode;
|
||||
|
||||
public class SerialAutoChecker implements Runnable {
|
||||
private final Logger logger;
|
||||
private final static Logging log = Logging.getLogging(SerialAutoChecker.class);
|
||||
private final String serialPort;
|
||||
private final CountDownLatch portFound;
|
||||
private final AtomicReference<String> result;
|
||||
private final Function<IoStream, Void> callback;
|
||||
public static String SIGNATURE;
|
||||
|
||||
public SerialAutoChecker(Logger logger, String serialPort, CountDownLatch portFound, AtomicReference<String> result, Function<IoStream, Void> callback) {
|
||||
this.logger = logger;
|
||||
public SerialAutoChecker(String serialPort, CountDownLatch portFound, AtomicReference<String> result, Function<IoStream, Void> callback) {
|
||||
this.serialPort = serialPort;
|
||||
this.portFound = portFound;
|
||||
this.result = result;
|
||||
this.callback = callback;
|
||||
}
|
||||
|
||||
public SerialAutoChecker(Logger logger, String serialPort, CountDownLatch portFound, AtomicReference<String> result) {
|
||||
this(logger, serialPort, portFound, result, null);
|
||||
public SerialAutoChecker(String serialPort, CountDownLatch portFound, AtomicReference<String> result) {
|
||||
this(serialPort, portFound, result, null);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void run() {
|
||||
IoStream stream = SerialIoStreamJSerialComm.openPort(serialPort, logger);
|
||||
Logger logger = FileLog.LOGGER;
|
||||
IoStream stream = SerialIoStreamJSerialComm.openPort(serialPort);
|
||||
IncomingDataBuffer incomingData = stream.getDataBuffer();
|
||||
try {
|
||||
HelloCommand.send(stream, logger);
|
||||
byte[] response = incomingData.getPacket(logger, "", false);
|
||||
HelloCommand.send(stream);
|
||||
byte[] response = incomingData.getPacket("", false);
|
||||
if (!checkResponseCode(response, BinaryProtocolCommands.RESPONSE_OK))
|
||||
return;
|
||||
String signature = new String(response, 1, response.length - 1);
|
||||
SIGNATURE = signature;
|
||||
System.out.println("Got signature=" + signature + " from " + serialPort);
|
||||
log.info("Got signature=" + signature + " from " + serialPort);
|
||||
if (signature.startsWith(Fields.PROTOCOL_SIGNATURE_PREFIX)) {
|
||||
if (callback != null) {
|
||||
callback.apply(stream);
|
|
@ -1,15 +1,20 @@
|
|||
package com.rusefi.binaryprotocol;
|
||||
|
||||
import com.devexperts.logging.Logging;
|
||||
import com.opensr5.ConfigurationImage;
|
||||
import com.opensr5.Logger;
|
||||
import com.opensr5.io.ConfigurationImageFile;
|
||||
import com.opensr5.io.DataListener;
|
||||
import com.rusefi.ConfigurationImageDiff;
|
||||
import com.rusefi.NamedThreadFactory;
|
||||
import com.rusefi.Timeouts;
|
||||
import com.rusefi.composite.CompositeEvent;
|
||||
import com.rusefi.composite.CompositeParser;
|
||||
import com.rusefi.config.generated.Fields;
|
||||
import com.rusefi.core.*;
|
||||
import com.rusefi.core.MessagesCentral;
|
||||
import com.rusefi.core.Pair;
|
||||
import com.rusefi.core.Sensor;
|
||||
import com.rusefi.core.SensorCentral;
|
||||
import com.rusefi.io.*;
|
||||
import com.rusefi.io.commands.GetOutputsCommand;
|
||||
import com.rusefi.stream.LogicdataStreamFile;
|
||||
|
@ -28,23 +33,23 @@ import java.nio.ByteOrder;
|
|||
import java.util.ArrayList;
|
||||
import java.util.Arrays;
|
||||
import java.util.List;
|
||||
import java.util.concurrent.ExecutionException;
|
||||
import java.util.concurrent.Future;
|
||||
import java.util.concurrent.TimeUnit;
|
||||
import java.util.concurrent.TimeoutException;
|
||||
import java.util.concurrent.*;
|
||||
|
||||
import static com.devexperts.logging.Logging.getLogging;
|
||||
import static com.rusefi.binaryprotocol.IoHelper.*;
|
||||
|
||||
/**
|
||||
* This object represents logical state of physical connection.
|
||||
*
|
||||
* <p>
|
||||
* Instance is connected until we experience issues. Once we decide to close the connection there is no restart -
|
||||
* new instance of this class would need to be created once we establish a new physical connection.
|
||||
*
|
||||
* <p>
|
||||
* Andrey Belomutskiy, (c) 2013-2020
|
||||
* 3/6/2015
|
||||
*/
|
||||
public class BinaryProtocol implements BinaryProtocolCommands {
|
||||
private static final Logging log = getLogging(BinaryProtocol.class);
|
||||
private static final ThreadFactory THREAD_FACTORY = new NamedThreadFactory("text pull");
|
||||
|
||||
private static final String USE_PLAIN_PROTOCOL_PROPERTY = "protocol.plain";
|
||||
private static final String CONFIGURATION_RUSEFI_BINARY = "current_configuration.rusefi_binary";
|
||||
|
@ -57,7 +62,6 @@ public class BinaryProtocol implements BinaryProtocolCommands {
|
|||
public static boolean PLAIN_PROTOCOL = Boolean.getBoolean(USE_PLAIN_PROTOCOL_PROPERTY);
|
||||
|
||||
private final LinkManager linkManager;
|
||||
private final Logger logger;
|
||||
private final IoStream stream;
|
||||
private final IncomingDataBuffer incomingData;
|
||||
private boolean isBurnPending;
|
||||
|
@ -89,6 +93,8 @@ public class BinaryProtocol implements BinaryProtocolCommands {
|
|||
return "HELLO";
|
||||
case Fields.TS_READ_COMMAND:
|
||||
return "READ";
|
||||
case Fields.TS_GET_TEXT:
|
||||
return "TS_GET_TEXT";
|
||||
case Fields.TS_GET_FIRMWARE_VERSION:
|
||||
return "GET_FW_VERSION";
|
||||
case Fields.TS_CHUNK_WRITE_COMMAND:
|
||||
|
@ -96,7 +102,7 @@ public class BinaryProtocol implements BinaryProtocolCommands {
|
|||
case Fields.TS_OUTPUT_COMMAND:
|
||||
return "TS_OUTPUT_COMMAND";
|
||||
default:
|
||||
return "command " + (char) + command + "/" + command;
|
||||
return "command " + (char) +command + "/" + command;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -130,15 +136,14 @@ public class BinaryProtocol implements BinaryProtocolCommands {
|
|||
|
||||
private final Thread hook = new Thread(() -> closeComposites(), "BinaryProtocol::hook");
|
||||
|
||||
public BinaryProtocol(LinkManager linkManager, final Logger logger, IoStream stream, IncomingDataBuffer dataBuffer) {
|
||||
public BinaryProtocol(LinkManager linkManager, IoStream stream, IncomingDataBuffer dataBuffer) {
|
||||
this.linkManager = linkManager;
|
||||
this.logger = logger;
|
||||
this.stream = stream;
|
||||
|
||||
communicationLoggingListener = new CommunicationLoggingListener() {
|
||||
@Override
|
||||
public void onPortHolderMessage(Class clazz, String message) {
|
||||
MessagesCentral.getInstance().postMessage(logger, clazz, message);
|
||||
MessagesCentral.getInstance().postMessage(clazz, message);
|
||||
}
|
||||
};
|
||||
|
||||
|
@ -150,7 +155,7 @@ public class BinaryProtocol implements BinaryProtocolCommands {
|
|||
needCompositeLogger = linkManager.getCompositeLogicEnabled();
|
||||
lastLowRpmTime = System.currentTimeMillis();
|
||||
} else if (System.currentTimeMillis() - lastLowRpmTime > HIGH_RPM_DELAY * Timeouts.SECOND) {
|
||||
logger.info("Time to turn off composite logging");
|
||||
log.info("Time to turn off composite logging");
|
||||
needCompositeLogger = false;
|
||||
}
|
||||
};
|
||||
|
@ -175,7 +180,7 @@ public class BinaryProtocol implements BinaryProtocolCommands {
|
|||
}
|
||||
|
||||
public void doSend(final String command, boolean fireEvent) throws InterruptedException {
|
||||
logger.info("Sending [" + command + "]");
|
||||
log.info("Sending [" + command + "]");
|
||||
if (fireEvent && LinkManager.LOG_LEVEL.isDebugEnabled()) {
|
||||
communicationLoggingListener.onPortHolderMessage(BinaryProtocol.class, "Sending [" + command + "]");
|
||||
}
|
||||
|
@ -197,7 +202,7 @@ public class BinaryProtocol implements BinaryProtocolCommands {
|
|||
} catch (ExecutionException e) {
|
||||
throw new IllegalStateException(e);
|
||||
} catch (TimeoutException e) {
|
||||
getLogger().error("timeout sending [" + command + "] giving up: " + e);
|
||||
log.error("timeout sending [" + command + "] giving up: " + e);
|
||||
return;
|
||||
}
|
||||
/**
|
||||
|
@ -224,7 +229,7 @@ public class BinaryProtocol implements BinaryProtocolCommands {
|
|||
|
||||
private void startTextPullThread(final DataListener listener) {
|
||||
if (!linkManager.COMMUNICATION_QUEUE.isEmpty()) {
|
||||
System.out.println("Current queue: " + linkManager.COMMUNICATION_QUEUE.size());
|
||||
log.info("Current queue: " + linkManager.COMMUNICATION_QUEUE.size());
|
||||
}
|
||||
Runnable textPull = new Runnable() {
|
||||
@Override
|
||||
|
@ -247,11 +252,10 @@ public class BinaryProtocol implements BinaryProtocolCommands {
|
|||
}
|
||||
sleep(Timeouts.TEXT_PULL_PERIOD);
|
||||
}
|
||||
logger.info("Stopping text pull");
|
||||
log.info("Stopping text pull");
|
||||
}
|
||||
};
|
||||
Thread tr = new Thread(textPull);
|
||||
tr.setName("text pull");
|
||||
Thread tr = THREAD_FACTORY.newThread(textPull);
|
||||
tr.start();
|
||||
}
|
||||
|
||||
|
@ -275,10 +279,6 @@ public class BinaryProtocol implements BinaryProtocolCommands {
|
|||
compositeLogs.clear();
|
||||
}
|
||||
|
||||
public Logger getLogger() {
|
||||
return logger;
|
||||
}
|
||||
|
||||
private void dropPending() {
|
||||
synchronized (ioLock) {
|
||||
if (isClosed)
|
||||
|
@ -315,7 +315,7 @@ public class BinaryProtocol implements BinaryProtocolCommands {
|
|||
private byte[] receivePacket(String msg, boolean allowLongResponse) throws EOFException {
|
||||
long start = System.currentTimeMillis();
|
||||
synchronized (ioLock) {
|
||||
return incomingData.getPacket(logger, msg, allowLongResponse, start);
|
||||
return incomingData.getPacket(msg, allowLongResponse, start);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -331,7 +331,7 @@ public class BinaryProtocol implements BinaryProtocolCommands {
|
|||
return;
|
||||
}
|
||||
setController(image);
|
||||
logger.info("Got configuration from controller.");
|
||||
log.info("Got configuration from controller.");
|
||||
ConnectionStatusLogic.INSTANCE.setValue(ConnectionStatusValue.CONNECTED);
|
||||
}
|
||||
|
||||
|
@ -343,7 +343,7 @@ public class BinaryProtocol implements BinaryProtocolCommands {
|
|||
int offset = 0;
|
||||
|
||||
long start = System.currentTimeMillis();
|
||||
logger.info("Reading from controller...");
|
||||
log.info("Reading from controller...");
|
||||
|
||||
while (offset < image.getSize() && (System.currentTimeMillis() - start < Timeouts.READ_IMAGE_TIMEOUT)) {
|
||||
if (isClosed)
|
||||
|
@ -363,7 +363,7 @@ public class BinaryProtocol implements BinaryProtocolCommands {
|
|||
if (!checkResponseCode(response, RESPONSE_OK) || response.length != requestSize + 1) {
|
||||
String code = (response == null || response.length == 0) ? "empty" : "code " + response[0];
|
||||
String info = response == null ? "NO RESPONSE" : (code + " size " + response.length);
|
||||
logger.info("readImage: ERROR UNEXPECTED Something is wrong, retrying... " + info);
|
||||
log.info("readImage: ERROR UNEXPECTED Something is wrong, retrying... " + info);
|
||||
continue;
|
||||
}
|
||||
|
||||
|
@ -396,7 +396,7 @@ public class BinaryProtocol implements BinaryProtocolCommands {
|
|||
|
||||
if (localCached != null) {
|
||||
int crcOfLocallyCachedConfiguration = IoHelper.getCrc32(localCached.getContent());
|
||||
System.out.printf(CONFIGURATION_RUSEFI_BINARY + " Local cache CRC %x\n", crcOfLocallyCachedConfiguration);
|
||||
log.info(String.format(CONFIGURATION_RUSEFI_BINARY + " Local cache CRC %x\n", crcOfLocallyCachedConfiguration));
|
||||
|
||||
byte packet[] = new byte[7];
|
||||
packet[0] = COMMAND_CRC_CHECK_COMMAND;
|
||||
|
@ -407,7 +407,7 @@ public class BinaryProtocol implements BinaryProtocolCommands {
|
|||
// that's unusual - most of the protocol is LITTLE_ENDIAN
|
||||
bb.order(ByteOrder.BIG_ENDIAN);
|
||||
int crcFromController = bb.getInt();
|
||||
System.out.printf("From rusEFI CRC %x\n", crcFromController);
|
||||
log.info(String.format("From rusEFI CRC %x\n", crcFromController));
|
||||
if (crcOfLocallyCachedConfiguration == crcFromController) {
|
||||
return localCached;
|
||||
}
|
||||
|
@ -435,7 +435,7 @@ public class BinaryProtocol implements BinaryProtocolCommands {
|
|||
sendPacket(packet);
|
||||
return receivePacket(msg, allowLongResponse);
|
||||
} catch (IOException e) {
|
||||
logger.error(msg + ": executeCommand failed: " + e);
|
||||
log.error(msg + ": executeCommand failed: " + e);
|
||||
close();
|
||||
return null;
|
||||
}
|
||||
|
@ -509,7 +509,7 @@ public class BinaryProtocol implements BinaryProtocolCommands {
|
|||
}
|
||||
|
||||
private void sendPacket(byte[] command) throws IOException {
|
||||
stream.sendPacket(command, logger);
|
||||
stream.sendPacket(command);
|
||||
}
|
||||
|
||||
|
||||
|
@ -549,7 +549,7 @@ public class BinaryProtocol implements BinaryProtocolCommands {
|
|||
Thread.sleep(100);
|
||||
return new String(response, 1, response.length - 1);
|
||||
} catch (InterruptedException e) {
|
||||
logger.error(e.toString());
|
||||
log.error(e.toString());
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
package com.rusefi.binaryprotocol;
|
||||
|
||||
import com.opensr5.Logger;
|
||||
import com.devexperts.logging.Logging;
|
||||
import com.rusefi.Timeouts;
|
||||
import com.rusefi.config.generated.Fields;
|
||||
import com.rusefi.io.IoStream;
|
||||
|
@ -13,6 +13,7 @@ import java.io.IOException;
|
|||
import java.util.Arrays;
|
||||
import java.util.Objects;
|
||||
|
||||
import static com.devexperts.logging.Logging.getLogging;
|
||||
import static com.rusefi.binaryprotocol.IoHelper.*;
|
||||
|
||||
/**
|
||||
|
@ -23,39 +24,44 @@ import static com.rusefi.binaryprotocol.IoHelper.*;
|
|||
*/
|
||||
@ThreadSafe
|
||||
public class IncomingDataBuffer {
|
||||
private static final Logging log = getLogging(IoStream.class);
|
||||
|
||||
private static final int BUFFER_SIZE = 32768;
|
||||
private static String loggingPrefix;
|
||||
/**
|
||||
* buffer for response bytes from controller
|
||||
*/
|
||||
private final CircularByteBuffer cbb;
|
||||
private final Logger logger;
|
||||
private final AbstractIoStream.StreamStats streamStats;
|
||||
|
||||
public IncomingDataBuffer(Logger logger, AbstractIoStream.StreamStats streamStats) {
|
||||
public IncomingDataBuffer(AbstractIoStream.StreamStats streamStats) {
|
||||
this.streamStats = Objects.requireNonNull(streamStats, "streamStats");
|
||||
this.cbb = new CircularByteBuffer(BUFFER_SIZE);
|
||||
this.logger = logger;
|
||||
}
|
||||
|
||||
public static IncomingDataBuffer createDataBuffer(String loggingPrefix, IoStream stream, Logger logger) {
|
||||
public static IncomingDataBuffer createDataBuffer(String loggingPrefix, IoStream stream) {
|
||||
IncomingDataBuffer.loggingPrefix = loggingPrefix;
|
||||
IncomingDataBuffer incomingData = new IncomingDataBuffer(logger, stream.getStreamStats());
|
||||
IncomingDataBuffer incomingData = new IncomingDataBuffer(stream.getStreamStats());
|
||||
stream.setInputListener(incomingData::addData);
|
||||
return incomingData;
|
||||
}
|
||||
|
||||
public byte[] getPacket(Logger logger, String msg, boolean allowLongResponse) throws EOFException {
|
||||
return getPacket(logger, msg, allowLongResponse, System.currentTimeMillis());
|
||||
public byte[] getPacket(String msg, boolean allowLongResponse) throws EOFException {
|
||||
return getPacket(msg, allowLongResponse, System.currentTimeMillis());
|
||||
}
|
||||
|
||||
public byte[] getPacket(Logger logger, String msg, boolean allowLongResponse, long start) throws EOFException {
|
||||
/**
|
||||
* why does this method return NULL in case of timeout?!
|
||||
* todo: there is a very similar BinaryProtocolServer#readPromisedBytes which throws exception in case of timeout
|
||||
*/
|
||||
public byte[] getPacket(String msg, boolean allowLongResponse, long start) throws EOFException {
|
||||
boolean isTimeout = waitForBytes(msg + " header", start, 2);
|
||||
if (isTimeout)
|
||||
return null;
|
||||
|
||||
int packetSize = swap16(getShort());
|
||||
logger.trace( loggingPrefix + "Got packet size " + packetSize);
|
||||
if (log.debugEnabled())
|
||||
log.debug(loggingPrefix + "Got packet size " + packetSize);
|
||||
if (packetSize < 0)
|
||||
return null;
|
||||
if (!allowLongResponse && packetSize > Math.max(BinaryProtocolCommands.BLOCKING_FACTOR, Fields.TS_OUTPUT_SIZE) + 10)
|
||||
|
@ -72,20 +78,26 @@ public class IncomingDataBuffer {
|
|||
|
||||
boolean isCrcOk = actualCrc == packetCrc;
|
||||
if (!isCrcOk) {
|
||||
logger.trace(String.format("%x", actualCrc) + " vs " + String.format("%x", packetCrc));
|
||||
if (log.debugEnabled())
|
||||
log.debug(String.format("%x", actualCrc) + " vs " + String.format("%x", packetCrc));
|
||||
return null;
|
||||
}
|
||||
streamStats.onPacketArrived();
|
||||
logger.trace("packet " + Arrays.toString(packet) + ": crc OK");
|
||||
onPacketArrived();
|
||||
if (log.debugEnabled())
|
||||
log.debug("packet " + Arrays.toString(packet) + ": crc OK");
|
||||
|
||||
return packet;
|
||||
}
|
||||
|
||||
public void onPacketArrived() {
|
||||
streamStats.onPacketArrived();
|
||||
}
|
||||
|
||||
public void addData(byte[] freshData) {
|
||||
logger.info("IncomingDataBuffer: " + freshData.length + " byte(s) arrived");
|
||||
log.info("IncomingDataBuffer: " + freshData.length + " byte(s) arrived");
|
||||
synchronized (cbb) {
|
||||
if (cbb.size() - cbb.length() < freshData.length) {
|
||||
logger.error("IncomingDataBuffer: buffer overflow not expected");
|
||||
log.error("IncomingDataBuffer: buffer overflow not expected");
|
||||
cbb.clear();
|
||||
}
|
||||
cbb.put(freshData);
|
||||
|
@ -102,19 +114,22 @@ public class IncomingDataBuffer {
|
|||
return waitForBytes(Timeouts.BINARY_IO_TIMEOUT, loggingMessage, startTimestamp, count);
|
||||
}
|
||||
|
||||
/**
|
||||
* @return true in case of timeout, false if we have received count of bytes
|
||||
*/
|
||||
public boolean waitForBytes(int timeoutMs, String loggingMessage, long startTimestamp, int count) {
|
||||
logger.info(loggingMessage + ": waiting for " + count + " byte(s)");
|
||||
log.info(loggingMessage + ": waiting for " + count + " byte(s)");
|
||||
synchronized (cbb) {
|
||||
while (cbb.length() < count) {
|
||||
int timeout = (int) (startTimestamp + timeoutMs - System.currentTimeMillis());
|
||||
if (timeout <= 0) {
|
||||
logger.info(loggingMessage + ": timeout. Got only " + cbb.length());
|
||||
log.info(loggingMessage + ": timeout. Got only " + cbb.length());
|
||||
return true; // timeout. Sad face.
|
||||
}
|
||||
try {
|
||||
cbb.wait(timeout);
|
||||
} catch (InterruptedException e) {
|
||||
throw new IllegalStateException(e);
|
||||
return true; // thread thrown away, handling like a timeout
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -126,10 +141,10 @@ public class IncomingDataBuffer {
|
|||
synchronized (cbb) {
|
||||
int pending = cbb.length();
|
||||
if (pending > 0) {
|
||||
logger.error("dropPending: Unexpected pending data: " + pending + " byte(s)");
|
||||
log.error("dropPending: Unexpected pending data: " + pending + " byte(s)");
|
||||
byte[] bytes = new byte[pending];
|
||||
cbb.get(bytes);
|
||||
logger.error("data: " + Arrays.toString(bytes));
|
||||
log.error("data: " + Arrays.toString(bytes));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -163,31 +178,30 @@ public class IncomingDataBuffer {
|
|||
}
|
||||
|
||||
public byte readByte(int timeoutMs) throws IOException {
|
||||
boolean isTimeout = waitForBytes(timeoutMs,loggingPrefix + "readByte", System.currentTimeMillis(), 1);
|
||||
boolean isTimeout = waitForBytes(timeoutMs, loggingPrefix + "readByte", System.currentTimeMillis(), 1);
|
||||
if (isTimeout)
|
||||
throw new IOException("Timeout in readByte");
|
||||
throw new EOFException("Timeout in readByte " + timeoutMs);
|
||||
return (byte) getByte();
|
||||
}
|
||||
|
||||
public int readInt() throws EOFException {
|
||||
boolean isTimeout = waitForBytes(loggingPrefix + "readInt", System.currentTimeMillis(), 4);
|
||||
if (isTimeout)
|
||||
throw new IllegalStateException("Timeout in readByte");
|
||||
throw new EOFException("Timeout in readInt ");
|
||||
return swap32(getInt());
|
||||
}
|
||||
|
||||
public short readShort() throws EOFException {
|
||||
boolean isTimeout = waitForBytes(loggingPrefix + "readShort", System.currentTimeMillis(), 2);
|
||||
if (isTimeout)
|
||||
throw new IllegalStateException("Timeout in readShort");
|
||||
throw new EOFException("Timeout in readShort");
|
||||
return (short) swap16(getShort());
|
||||
}
|
||||
|
||||
public int read(byte[] packet) {
|
||||
public void read(byte[] packet) throws EOFException {
|
||||
boolean isTimeout = waitForBytes(loggingPrefix + "read", System.currentTimeMillis(), packet.length);
|
||||
if (isTimeout)
|
||||
throw new IllegalStateException("Timeout while waiting " + packet.length);
|
||||
throw new EOFException("Timeout while waiting " + packet.length);
|
||||
getData(packet);
|
||||
return packet.length;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
package com.rusefi.file;
|
||||
|
||||
import com.opensr5.Logger;
|
||||
import com.rusefi.core.EngineState;
|
||||
import com.rusefi.io.LinkManager;
|
||||
|
||||
|
@ -12,8 +11,8 @@ import java.util.List;
|
|||
* Andrey Belomutskiy, (c) 2013-2020
|
||||
*/
|
||||
public class FileUtils {
|
||||
public static void readFile(String filename, EngineState.EngineStateListener listener, Logger logger) {
|
||||
readFile2(filename, new EngineState(listener, logger));
|
||||
public static void readFile(String filename, EngineState.EngineStateListener listener) {
|
||||
readFile2(filename, new EngineState(listener));
|
||||
}
|
||||
|
||||
public static void readFile2(String filename, EngineState engineState) {
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue