This commit is contained in:
rusefi 2017-08-03 22:30:47 -04:00
parent c8db79678b
commit 37d5f51a3a
3 changed files with 20 additions and 0 deletions

View File

@ -148,6 +148,10 @@ FuelConsumptionState::FuelConsumptionState() {
accumulatedSecond = accumulatedMinute = -1;
}
TransmissionState::TransmissionState() {
}
EngineState::EngineState() {
dwellAngle = 0;
engineNoiseHipLevel = 0;

View File

@ -103,6 +103,12 @@ public:
int accumulatedMinute;
};
class TransmissionState {
public:
TransmissionState();
gear_e gearSelectorPosition;
};
class EngineState {
public:

View File

@ -747,6 +747,16 @@ typedef enum {
Internal_ForceMyEnumIntSize_sensor_chart = ENUM_32_BITS,
} sensor_chart_e;
typedef enum {
REVERSE = -1,
NEUTRAL = 0,
GEAR_1 = 1,
GEAR_2 = 2,
GEAR_3 = 3,
GEAR_4 = 4,
} gear_e;
typedef enum {
CUSTOM = 0,
Bosch0280218037 = 1,