11 lines
480 B
Plaintext
11 lines
480 B
Plaintext
# Wide 형식 (Excel용, 권장)
|
|
python can_bin_to_csv.py -d CAN_DB_BluePlug_231207a.dbc -i *.bin -o ./ -f wide
|
|
|
|
# Long 형식 (데이터베이스용)
|
|
python can_bin_to_csv.py -d CAN_DB_BluePlug_231207a.dbc -i *.bin -o ./ -f long
|
|
|
|
# Message 형식 (메시지별 파일)
|
|
python can_bin_to_csv.py -d CAN_DB_BluePlug_231207a.dbc -i *.bin -o csv_files/ -f message
|
|
|
|
# Raw 형식 (디코딩 없음)
|
|
python can_bin_to_csv.py -d CAN_DB_BluePlug_231207a.dbc -i *.bin -o ./ -f raw |