auto-sync
This commit is contained in:
parent
2fce102b46
commit
110e66e7b2
|
@ -254,6 +254,9 @@ void prepareVoidConfiguration(engine_configuration_s *activeConfiguration) {
|
|||
boardConfiguration->joystickCPin = GPIO_UNASSIGNED;
|
||||
boardConfiguration->joystickDPin = GPIO_UNASSIGNED;
|
||||
|
||||
engineConfiguration->cj125ua = EFI_ADC_NONE;
|
||||
engineConfiguration->cj125ur = EFI_ADC_NONE;
|
||||
|
||||
boardConfiguration->idle.stepperDirectionPin = GPIO_UNASSIGNED;
|
||||
boardConfiguration->idle.stepperStepPin = GPIO_UNASSIGNED;
|
||||
engineConfiguration->stepperEnablePin = GPIO_UNASSIGNED;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// this section was generated automatically by ConfigDefinition.jar based on rusefi_config.txt Sun Feb 05 22:20:28 EST 2017
|
||||
// this section was generated automatically by ConfigDefinition.jar based on rusefi_config.txt Sun Feb 12 01:30:52 EST 2017
|
||||
// begin
|
||||
#ifndef ENGINE_CONFIGURATION_GENERATED_H_
|
||||
#define ENGINE_CONFIGURATION_GENERATED_H_
|
||||
|
@ -1822,9 +1822,19 @@ typedef struct {
|
|||
*/
|
||||
pin_mode_e stepperEnablePinMode;
|
||||
/**
|
||||
* lampda input
|
||||
* offset 2768
|
||||
*/
|
||||
int unused[70];
|
||||
adc_channel_e cj125ua;
|
||||
/**
|
||||
* heater input
|
||||
* offset 2772
|
||||
*/
|
||||
adc_channel_e cj125ur;
|
||||
/**
|
||||
* offset 2776
|
||||
*/
|
||||
int unused[68];
|
||||
/** total size 3048*/
|
||||
} engine_configuration_s;
|
||||
|
||||
|
@ -2039,4 +2049,4 @@ typedef struct {
|
|||
|
||||
#endif
|
||||
// end
|
||||
// this section was generated automatically by ConfigDefinition.jar based on rusefi_config.txt Sun Feb 05 22:20:28 EST 2017
|
||||
// this section was generated automatically by ConfigDefinition.jar based on rusefi_config.txt Sun Feb 12 01:30:52 EST 2017
|
||||
|
|
|
@ -930,7 +930,9 @@
|
|||
#define fuelClosedLoopAfrLowThreshold_offset 2756
|
||||
#define fuelClosedLoopAfrHighThreshold_offset 2760
|
||||
#define stepperEnablePinMode_offset 2764
|
||||
#define unused_offset 2768
|
||||
#define cj125ua_offset 2768
|
||||
#define cj125ur_offset 2772
|
||||
#define unused_offset 2776
|
||||
#define le_formulas1_offset 3048
|
||||
#define le_formulas2_offset 3248
|
||||
#define le_formulas3_offset 3448
|
||||
|
|
|
@ -197,6 +197,12 @@ static msg_t ivThread(int param) {
|
|||
(void) param;
|
||||
chRegSetThreadName("IdleValve");
|
||||
|
||||
/*
|
||||
* Here we have idle logic thread - actual stepper movement is implemented in a separate
|
||||
* working thread,
|
||||
* @see stepper.cpp
|
||||
*/
|
||||
|
||||
while (true) {
|
||||
chThdSleepMilliseconds(boardConfiguration->idleThreadPeriod);
|
||||
|
||||
|
|
|
@ -17,7 +17,12 @@ static msg_t stThread(StepperMotor *motor) {
|
|||
|
||||
palWritePad(motor->directionPort, motor->directionPin, false);
|
||||
|
||||
// let's park the motor in a known position to begin with
|
||||
/**
|
||||
* let's park the motor in a known position to begin with
|
||||
*
|
||||
* I believe it's safer to retract the valve for parking - at least on a bench I've seen valves
|
||||
* disassembling themselves while pushing too far out.
|
||||
*/
|
||||
for (int i = 0; i < motor->totalSteps; i++) {
|
||||
motor->pulse();
|
||||
}
|
||||
|
|
|
@ -778,7 +778,9 @@ int16_t etbFreq;;"Hz", 1, 0, 0, 500, 10
|
|||
float fuelClosedLoopAfrLowThreshold;;"ratio", 1, 0, 0, 100, 1
|
||||
float fuelClosedLoopAfrHighThreshold;;"ratio", 1, 0, 0, 100, 1
|
||||
pin_mode_e stepperEnablePinMode;
|
||||
int[70] unused;
|
||||
adc_channel_e cj125ua;lampda input
|
||||
adc_channel_e cj125ur;heater input
|
||||
int[68] unused;
|
||||
|
||||
|
||||
end_struct
|
||||
|
|
|
@ -1871,9 +1871,11 @@ cmd_test_idle_valve = "w\x00\x17\x00\x01"
|
|||
dialog = cj125Function, "CJ125 Settings (wbo decoder)"
|
||||
field = "Enabled", isCJ125Enabled
|
||||
field = "!ECU reboot needed to apply these settings"
|
||||
field = "ChipSelect pin", cj125CsPin
|
||||
field = "ChipSelect mode", cj125CsPinMode
|
||||
field = "ChipSelect pin", cj125CsPin, {isCJ125Enabled == 1}
|
||||
field = "ChipSelect mode", cj125CsPinMode, {isCJ125Enabled == 1}
|
||||
field = "SPI device", cj125SpiDevice
|
||||
field = "UA input", cj125ua, {isCJ125Enabled == 1}
|
||||
field = "UR input", cj125ur, {isCJ125Enabled == 1}
|
||||
|
||||
dialog = spiFunction, "SPI settings"
|
||||
field = "!ECU reboot needed to apply these settings"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
package com.rusefi.config;
|
||||
|
||||
// this file was generated automatically by ConfigDefinition.jar based on rusefi_config.txt Thu Feb 09 21:42:21 EST 2017
|
||||
// this file was generated automatically by ConfigDefinition.jar based on rusefi_config.txt Sun Feb 12 01:30:52 EST 2017
|
||||
public class Fields {
|
||||
public static final int LE_COMMAND_LENGTH = 200;
|
||||
public static final int FSIO_ADC_COUNT = 4;
|
||||
|
@ -934,7 +934,9 @@ public class Fields {
|
|||
public static final int fuelClosedLoopAfrLowThreshold_offset = 2756;
|
||||
public static final int fuelClosedLoopAfrHighThreshold_offset = 2760;
|
||||
public static final int stepperEnablePinMode_offset = 2764;
|
||||
public static final int unused_offset = 2768;
|
||||
public static final int cj125ua_offset = 2768;
|
||||
public static final int cj125ur_offset = 2772;
|
||||
public static final int unused_offset = 2776;
|
||||
public static final int le_formulas1_offset = 3048;
|
||||
public static final int le_formulas2_offset = 3248;
|
||||
public static final int le_formulas3_offset = 3448;
|
||||
|
@ -1606,6 +1608,8 @@ public class Fields {
|
|||
public static final Field FUELCLOSEDLOOPAFRLOWTHRESHOLD = Field.create("FUELCLOSEDLOOPAFRLOWTHRESHOLD", 2756, FieldType.FLOAT);
|
||||
public static final Field FUELCLOSEDLOOPAFRHIGHTHRESHOLD = Field.create("FUELCLOSEDLOOPAFRHIGHTHRESHOLD", 2760, FieldType.FLOAT);
|
||||
public static final Field STEPPERENABLEPINMODE = Field.create("STEPPERENABLEPINMODE", 2764, FieldType.INT, pin_mode_e);
|
||||
public static final Field CJ125UA = Field.create("CJ125UA", 2768, FieldType.INT, adc_channel_e);
|
||||
public static final Field CJ125UR = Field.create("CJ125UR", 2772, FieldType.INT, adc_channel_e);
|
||||
public static final Field LE_FORMULAS1 = Field.create("LE_FORMULAS1", 3048, FieldType.INT);
|
||||
public static final Field LE_FORMULAS2 = Field.create("LE_FORMULAS2", 3248, FieldType.INT);
|
||||
public static final Field LE_FORMULAS3 = Field.create("LE_FORMULAS3", 3448, FieldType.INT);
|
||||
|
|
Loading…
Reference in New Issue