auto-sync
This commit is contained in:
parent
c36f9bb8ee
commit
89611c39f3
|
@ -526,9 +526,9 @@ static THD_WORKING_AREA(lcdThreadStack, UTILITY_THREAD_STACK_SIZE);
|
||||||
static THD_WORKING_AREA(blinkingStack, 128);
|
static THD_WORKING_AREA(blinkingStack, 128);
|
||||||
|
|
||||||
// move this into EnginePins?
|
// move this into EnginePins?
|
||||||
OutputPin communicationPin;
|
OutputPin communicationPin; // blue LED on brain board by default
|
||||||
OutputPin warningPin;
|
OutputPin warningPin;
|
||||||
OutputPin runningPin;
|
OutputPin runningPin; // green LED on brain board by default
|
||||||
|
|
||||||
static OutputPin *leds[] = { &warningPin, &runningPin, &enginePins.checkEnginePin,
|
static OutputPin *leds[] = { &warningPin, &runningPin, &enginePins.checkEnginePin,
|
||||||
&enginePins.errorLedPin, &communicationPin, &enginePins.checkEnginePin };
|
&enginePins.errorLedPin, &communicationPin, &enginePins.checkEnginePin };
|
||||||
|
|
|
@ -83,9 +83,15 @@ public:
|
||||||
OutputPin fuelPumpRelay;
|
OutputPin fuelPumpRelay;
|
||||||
OutputPin o2heater;
|
OutputPin o2heater;
|
||||||
// OutputPin alternatorField;
|
// OutputPin alternatorField;
|
||||||
OutputPin errorLedPin;
|
/**
|
||||||
|
* brain board RED LED by default
|
||||||
|
*/
|
||||||
|
OutputPin errorLedPin; //
|
||||||
OutputPin idleSolenoidPin;
|
OutputPin idleSolenoidPin;
|
||||||
OutputPin alternatorPin;
|
OutputPin alternatorPin;
|
||||||
|
/**
|
||||||
|
* this one is usually on the gauge cluster, not on the ECU
|
||||||
|
*/
|
||||||
OutputPin checkEnginePin;
|
OutputPin checkEnginePin;
|
||||||
NamedOutputPin tachOut;
|
NamedOutputPin tachOut;
|
||||||
OutputPin etbOutput1;
|
OutputPin etbOutput1;
|
||||||
|
|
|
@ -240,7 +240,7 @@ ThermistorConf iat;
|
||||||
|
|
||||||
int step1rpm;A secondary Rev limit engaged by the driver to help launch the vehicle faster;"rpm", 1, 0, 0, 20000.0, 2
|
int step1rpm;A secondary Rev limit engaged by the driver to help launch the vehicle faster;"rpm", 1, 0, 0, 20000.0, 2
|
||||||
int step1timing;;"deg", 1, 0, -180, 180, 2
|
int step1timing;;"deg", 1, 0, -180, 180, 2
|
||||||
int hip9011PrescalerAndSDO;;"integer", 1, 0.0, 0.0, 32, 0
|
int hip9011PrescalerAndSDO;6=8MHz todo solit two bit fields;"integer", 1, 0.0, 0.0, 32, 0
|
||||||
float knockBandCustom;+kHz knock band override;"kHz", 1, 0.0, 0.0, 10.0, 2
|
float knockBandCustom;+kHz knock band override;"kHz", 1, 0.0, 0.0, 10.0, 2
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue