This program reads LAUNCH diagnostic X431 log file and converts it into a CSV file for easier usage on various other tools. It converts extracted data into a structured CSV format.
- Go installed on your machine.
- An X431 file to parse and convert.
Clone the repository and navigate into the directory:
git clone https://github.com/ucukertz/x431-to-csv.git && cd x431-to-csv
Build the program:
go build -o x431-to-csv
Run the program from your terminal or command prompt with the following format:
./x431-to-csv <input-file-path>
Suppose you want to convert example.x431. Run the following:
./x431-to-csv example.x431
It will generate example.x431.csv in the same directory as your input file.