Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
markwj committed Aug 10, 2019
2 parents 611b656 + 5bae402 commit 38d364d
Show file tree
Hide file tree
Showing 9 changed files with 591 additions and 6 deletions.
9 changes: 9 additions & 0 deletions vehicle/OVMS.V3/changes.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
Open Vehicle Monitor System v3 - Change log

????-??-?? ??? ??????? OTA release
- Twizy: OBD2 VIN reading & cluster DTC monitoring
New commands:
xrt dtc [show] Show DTC report
xrt dtc reset Reset statistics
xrt dtc clear Clear DTC stored in OVMS & car
New configs:
xrt [dtc_autoreset] = no Reset statistics on each drive/charge
New history records:
RT-OBD-ClusterDTC (rec_nr = DTC slot nr)
- New vehicle: Smart ED/EQ 4.Generation (453) (adaption by Thomas Heuer <egon@heuer-humfeld.de>)

2019-05-12 MWJ 3.2.002 OTA release
Expand Down
1 change: 1 addition & 0 deletions vehicle/OVMS.V3/components/vehicle/vehicle.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2043,6 +2043,7 @@ void OvmsVehicle::PollerReceive(CAN_frame_t* frame)
if ((frame->data.u8[1] == 0x40+m_poll_type)&&
(frame->data.u8[2] == m_poll_pid))
{
m_poll_ml_frame = 0;
IncomingPollReply(m_poll_bus, m_poll_type, m_poll_pid, &frame->data.u8[3], 5, 0);
return;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -619,6 +619,7 @@ void OvmsVehicleRenaultTwizy::IncomingFrameCan1(CAN_frame_t* p_frame)
break;


#if 0
case 0x69F:
// --------------------------------------------------------------------------
// *** VIN ***
Expand All @@ -637,6 +638,7 @@ void OvmsVehicleRenaultTwizy::IncomingFrameCan1(CAN_frame_t* p_frame)
*StdMetrics.ms_v_vin = (string) twizy_vin;
}
break;
#endif


case 0x700:
Expand Down

0 comments on commit 38d364d

Please sign in to comment.