TCU
This commit is contained in:
parent
c8db79678b
commit
37d5f51a3a
|
@ -148,6 +148,10 @@ FuelConsumptionState::FuelConsumptionState() {
|
|||
accumulatedSecond = accumulatedMinute = -1;
|
||||
}
|
||||
|
||||
TransmissionState::TransmissionState() {
|
||||
|
||||
}
|
||||
|
||||
EngineState::EngineState() {
|
||||
dwellAngle = 0;
|
||||
engineNoiseHipLevel = 0;
|
||||
|
|
|
@ -103,6 +103,12 @@ public:
|
|||
int accumulatedMinute;
|
||||
};
|
||||
|
||||
class TransmissionState {
|
||||
public:
|
||||
TransmissionState();
|
||||
gear_e gearSelectorPosition;
|
||||
};
|
||||
|
||||
|
||||
class EngineState {
|
||||
public:
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue