I have problem with my log file and want to compare to other roadster 2.5's log file. Hope I can get some examples from you guys. Appreciated and thanks in advance! If you willing to help, please send email to [email protected].
Nicky, you might be able to use my macOS application to examine your log files. There are also other Roadster log file applications available from members of this forum. I just noticed that the Roadster logs may have a "Y2K" sort of problem that started as early as October 2020, maybe as late as January 2021. Has anyone else noticed an issue with the file names and dates? Then again, maybe it's just that my Roadster computer got reset during a service visit to Tesla, and I didn't notice until I pulled the logs.
If the issue is the date (2001), then check the GPS rollover bug discussions: Caution - Annual Service - Car power-down - GPS issue
You can work around this GPS timestamp error if you add some code similar to the following to your parser. Code: // This next fixes incorrect timestamps due to the GPS week number rollover. const time_t week1024 = 1024 * 7 * 24 * 60 * 60; if (ts > 1554508800-week1024 && ts < 1150765200) { ts += week1024; }