Line | Branch | Decision | Exec | Source |
---|---|---|---|---|
1 | // | |||
2 | // Created by kifir on 12/20/24. | |||
3 | // | |||
4 | ||||
5 | #include "pch.h" | |||
6 | ||||
7 | #include "fuel_level_sensor.h" | |||
8 | ||||
9 | 1 | FuelLevelSensor::FuelLevelSensor(const SensorType type, const efidur_t timeoutPeriod) | ||
10 | 1 | : FunctionalSensorImpl(type, timeoutPeriod) { | ||
11 | 1 | setFunction(m_FuelLevelFunc); | ||
12 | 1 | } | ||
13 |