mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-07-16 14:52:15 +08:00
71994f4e64
old-commit-hash: df1756dffa287823baa11fe294dbb2d214ec383f
12 lines
333 B
Python
Executable File
12 lines
333 B
Python
Executable File
#!/usr/bin/env python3
|
|
import sys
|
|
|
|
from common.params import Params
|
|
from tools.lib.route import Route
|
|
from tools.lib.logreader import LogReader
|
|
|
|
if __name__ == "__main__":
|
|
r = Route(sys.argv[1])
|
|
cp = [m for m in LogReader(r.qlog_paths()[0]) if m.which() == 'carParams']
|
|
Params().put("CarParams", cp[0].as_builder().to_bytes())
|