ecu_diagnostics 0.101.0

A rust crate for ECU diagnostic servers and communication APIs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
import os
import sys

b = open(sys.argv[1], "rb").read()

l_c = 0;
for byte in b:
    print("{:08b}".format(byte), end="")
    l_c += 1
    if l_c == 24:
        print("")
        l_c = 0