can-log-tools/README.md

31 lines
969 B
Markdown
Raw Normal View History

2024-01-14 05:47:51 -08:00
# CAN decoding
2022-02-02 16:17:07 -08:00
CAN log file utilities to help me work with https://github.com/brent-stone/CAN_Reverse_Engineering and https://github.com/HeinrichG-V12/E65_ReverseEngineering
2023-07-30 16:29:14 -07:00
* turning ignition on (wake up)
2023-07-30 20:06:57 -07:00
* OEM ECU remove, turning ignition on (wake up)
2023-07-30 16:29:14 -07:00
* turning ignition off (shutdown)
* from ignition ON cranking and idling
* just idling
* ignition on, engine not running, press clutch four times
* ignition on, engine not running, brake pedal three times
* ignition on, engine not running, throttle pedal from 0% to 50%, to 0%, to 100%, to 0%
* engine running, rev from 1500 rpm to 3000 rpm
2024-01-14 05:47:51 -08:00
2024-02-09 17:40:10 -08:00
# CAN file processing
2024-02-09 17:41:42 -08:00
```
2024-02-09 18:24:16 -08:00
gradlew :reader:shadowJar
java -jar reader/build/libs/reader-all.jar "C:\stuff\rusefi_documentation\OEM-Docs\VAG\2006-Passat-B6" -filter passat-back-and-forth-60-seconds -dbc opendbc/vw_golf_mk4.dbc
2024-02-09 17:41:42 -08:00
```
2024-01-14 05:47:51 -08:00
# CAN playback
2024-02-09 17:39:54 -08:00
```
2024-01-14 05:47:51 -08:00
gradlew :playback:shadowJar
java -jar playback/build/libs/playback-all.jar playback/src/main/resources/atlas.trc
2024-02-09 17:39:54 -08:00
```