microRusEFI used as Body Control Module BCM BCU

This commit is contained in:
rusefi 2020-09-07 20:06:13 -04:00
parent 67f305f48a
commit 02bc0a9608
1 changed files with 1 additions and 1 deletions

View File

@ -84,7 +84,7 @@ template <int Size, int Offset>
class ObdCanSensor: public CanSensorBase {
public:
ObdCanSensor(int PID, float Scale, SensorType type) :
CanSensorBase(OBD_TEST_RESPONSE, type, CAN_TIMEOUT) {
CanSensorBase(OBD_TEST_RESPONSE, type, /* timeout, never expire */ 0) {
this->PID = PID;
this->Scale = Scale;
}