Remove CLUSTER trip counter

This commit is contained in:
Carsten Schmiemann 2022-05-07 00:50:07 +02:00
parent 4d79bbdf7b
commit 910f480a9b
2 changed files with 4 additions and 2 deletions

View file

@ -23,6 +23,7 @@
; THE SOFTWARE.
*/
/*
#include "vehicle_renaultzoe_ph2.h"
void OvmsVehicleRenaultZoePh2::IncomingCLUSTER(uint16_t type, uint16_t pid, const char* data, uint16_t len) {
@ -47,4 +48,5 @@ void OvmsVehicleRenaultZoePh2::IncomingCLUSTER(uint16_t type, uint16_t pid, cons
break;
}
}
}
}
*/

View file

@ -221,6 +221,6 @@ static const OvmsVehicle::poll_pid_t renault_zoe_polls[] = {
//TDB
//{ 0x743, 0x763, VEHICLE_POLL_TYPE_OBDIISESSION, SESSION_AfterSales, { 0, 60, 60, 60 }, 0, ISOTP_STD }, // OBD Extended Diagnostic Session
{ 0x743, 0x763, VEHICLE_POLL_TYPE_OBDIIEXTENDED, 0x2101, { 0, 30, 10, 300 }, 0, ISOTP_STD }, // Cluster - trip counter
//{ 0x743, 0x763, VEHICLE_POLL_TYPE_OBDIIEXTENDED, 0x2101, { 0, 30, 10, 300 }, 0, ISOTP_STD }, // Cluster - trip counter, not working reliable enough
POLL_LIST_END
};