84 lines
No EOL
3.2 KiB
C++
84 lines
No EOL
3.2 KiB
C++
/*
|
|
; Project: Open Vehicle Monitor System
|
|
; Date: 15th Apr 2022
|
|
;
|
|
; (C) 2022 Carsten Schmiemann
|
|
;
|
|
; Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
; of this software and associated documentation files (the "Software"), to deal
|
|
; in the Software without restriction, including without limitation the rights
|
|
; to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
; copies of the Software, and to permit persons to whom the Software is
|
|
; furnished to do so, subject to the following conditions:
|
|
;
|
|
; The above copyright notice and this permission notice shall be included in
|
|
; all copies or substantial portions of the Software.
|
|
;
|
|
; THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
; IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
; FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
; AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
; LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
; OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
; THE SOFTWARE.
|
|
*/
|
|
|
|
#include "vehicle_renaultzoe_ph2.h"
|
|
|
|
void OvmsVehicleRenaultZoePh2::IncomingBCM(uint16_t type, uint16_t pid, const char* data, uint16_t len) {
|
|
switch (pid) {
|
|
case 0x4204: {
|
|
StandardMetrics.ms_v_tpms_pressure->SetElemValue(MS_V_TPMS_IDX_FL, (float)CAN_UINT(0));
|
|
ESP_LOGD(TAG, "4204 BCM tpms pressure FL: %f", float(CAN_UINT(0)));
|
|
break;
|
|
}
|
|
case 0x4205: {
|
|
StandardMetrics.ms_v_tpms_pressure->SetElemValue(MS_V_TPMS_IDX_FR, (float)CAN_UINT(0));
|
|
ESP_LOGD(TAG, "4205 BCM tpms pressure FR: %f", float(CAN_UINT(0)));
|
|
break;
|
|
}
|
|
case 0x4206: {
|
|
StandardMetrics.ms_v_tpms_pressure->SetElemValue(MS_V_TPMS_IDX_RL, (float)CAN_UINT(0));
|
|
ESP_LOGD(TAG, "4206 BCM tpms pressure RL: %f", float(CAN_UINT(0)));
|
|
break;
|
|
}
|
|
case 0x4207: {
|
|
StandardMetrics.ms_v_tpms_pressure->SetElemValue(MS_V_TPMS_IDX_RR, (float)CAN_UINT(0));
|
|
ESP_LOGD(TAG, "4207 BCM tpms pressure RR: %f", float(CAN_UINT(0)));
|
|
break;
|
|
}
|
|
case 0x420C: {
|
|
StandardMetrics.ms_v_tpms_temp->SetElemValue(MS_V_TPMS_IDX_FL, (float)CAN_UINT(0));
|
|
ESP_LOGD(TAG, "420C BCM tpms temp FL: %f", float(CAN_UINT(0)));
|
|
break;
|
|
}
|
|
case 0x420D: {
|
|
StandardMetrics.ms_v_tpms_temp->SetElemValue(MS_V_TPMS_IDX_FR, (float)CAN_UINT(0));
|
|
ESP_LOGD(TAG, "420D BCM tpms temp FR: %f", float(CAN_UINT(0)));
|
|
break;
|
|
}
|
|
case 0x420E: {
|
|
StandardMetrics.ms_v_tpms_temp->SetElemValue(MS_V_TPMS_IDX_RL, (float)CAN_UINT(0));
|
|
ESP_LOGD(TAG, "420E BCM tpms temp RL: %f", float(CAN_UINT(0)));
|
|
break;
|
|
}
|
|
case 0x420F: {
|
|
StandardMetrics.ms_v_tpms_temp->SetElemValue(MS_V_TPMS_IDX_RR, (float)CAN_UINT(0));
|
|
ESP_LOGD(TAG, "420F BCM tpms temp RR: %f", float(CAN_UINT(0)));
|
|
break;
|
|
}
|
|
|
|
default: {
|
|
char *buf = NULL;
|
|
size_t rlen = len, offset = 0;
|
|
do {
|
|
rlen = FormatHexDump(&buf, data + offset, rlen, 16);
|
|
offset += 16;
|
|
ESP_LOGW(TAG, "OBD2: unhandled reply from BCM [%02x %02x]: %s", type, pid, buf ? buf : "-");
|
|
} while (rlen);
|
|
if (buf)
|
|
free(buf);
|
|
break;
|
|
}
|
|
}
|
|
} |