Files
sunnypilot/tools/scripts/set_car_params.py
T
github-actions[bot] 47c38d9e8f sunnypilot v2026.07.20-4580
version: sunnypilot v2026.002.000 (dev)
date: 2026-07-20T19:24:47
master commit: 2c334ede44
2026-07-20 19:24:47 +00:00

23 lines
687 B
Python
Executable File

#!/usr/bin/env python3
import sys
from opendbc.car.structs import car
from openpilot.common.params import Params
from openpilot.tools.lib.route import Route
from openpilot.tools.lib.logreader import LogReader
if __name__ == "__main__":
CP = None
if len(sys.argv) > 1:
r = Route(sys.argv[1])
cps = [m for m in LogReader(r.qlog_paths()[0]) if m.which() == 'carParams']
CP = cps[0].carParams.as_builder()
else:
CP = car.CarParams.new_message()
CP.openpilotLongitudinalControl = True
CP.alphaLongitudinalAvailable = False
cp_bytes = CP.to_bytes()
for p in ("CarParams", "CarParamsCache", "CarParamsPersistent"):
Params().put(p, cp_bytes, block=True)