From ac6471ad99b84be685a47d59258ce58ad57d3747 Mon Sep 17 00:00:00 2001 From: Carsten Schmiemann Date: Sun, 8 May 2022 21:52:52 +0200 Subject: [PATCH] FIx VIN readout crash --- OVMS.V3/components/vehicle_renaultzoe_ph2/src/BCM_pids.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OVMS.V3/components/vehicle_renaultzoe_ph2/src/BCM_pids.cpp b/OVMS.V3/components/vehicle_renaultzoe_ph2/src/BCM_pids.cpp index 74ce9d5..8636700 100644 --- a/OVMS.V3/components/vehicle_renaultzoe_ph2/src/BCM_pids.cpp +++ b/OVMS.V3/components/vehicle_renaultzoe_ph2/src/BCM_pids.cpp @@ -216,7 +216,7 @@ void OvmsVehicleRenaultZoePh2::IncomingBCM(uint16_t type, uint16_t pid, const ch } case 0x4060: { //Vehicle identificaftion number for(int i=0; i<17; i++) { - ESP_LOGD(TAG, "4060 Vehicle identificaftion number: %s", ((char*)CAN_BYTE(i))); + ESP_LOGD(TAG, "4060 Vehicle identificaftion number: %s", ((char*)CAN_NIB(i))); } break; }