변환 tools

This commit is contained in:
2025-11-02 19:21:00 +00:00
parent 23bed9688b
commit fd3065e8c9
5 changed files with 1241 additions and 0 deletions

11
csv변환법.txt Normal file
View File

@@ -0,0 +1,11 @@
# 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