f9fcc7adab
date: 2026-06-28T09:48:35 master commit: da6313dbe95b3f24bb5d8018b0e5f950f5823ca7
32 lines
934 B
Python
Executable File
32 lines
934 B
Python
Executable File
#!/usr/bin/env python3
|
|
"""
|
|
Copyright (c) 2021-, Haibin Wen, sunnypilot, and a number of other contributors.
|
|
|
|
This file is part of sunnypilot and is licensed under the MIT License.
|
|
See the LICENSE.md file in the root directory for more details.
|
|
"""
|
|
import json
|
|
import os
|
|
|
|
from openpilot.common.basedir import BASEDIR
|
|
from openpilot.common.params import Params
|
|
from openpilot.common.swaglog import cloudlog
|
|
|
|
CAR_LIST_JSON_OUT = os.path.join(BASEDIR, "sunnypilot", "selfdrive", "car", "car_list.json")
|
|
|
|
|
|
def update_car_list_param():
|
|
with open(CAR_LIST_JSON_OUT) as f:
|
|
current_car_list = json.load(f)
|
|
|
|
params = Params()
|
|
if params.get("CarList") != current_car_list:
|
|
params.put("CarList", current_car_list, block=True)
|
|
cloudlog.warning("Updated CarList param with latest platform list")
|
|
else:
|
|
cloudlog.warning("CarList param is up to date, no need to update")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
update_car_list_param()
|