mirror of
https://github.com/firestar5683/StarPilot.git
synced 2026-07-19 00:02:08 +08:00
FW versions: import common variable (#27905)
* just import from fw_versions * fix * more fix old-commit-hash: 1520716d429a7d4278c97d4689a6f77eae71bd40
This commit is contained in:
@@ -5,15 +5,14 @@ from collections import defaultdict
|
||||
from parameterized import parameterized
|
||||
|
||||
from cereal import car
|
||||
from selfdrive.car.car_helpers import get_interface_attr, interfaces
|
||||
from selfdrive.car.car_helpers import interfaces
|
||||
from selfdrive.car.fingerprints import FW_VERSIONS
|
||||
from selfdrive.car.fw_versions import FW_QUERY_CONFIGS, match_fw_to_car
|
||||
from selfdrive.car.fw_versions import FW_QUERY_CONFIGS, VERSIONS, match_fw_to_car
|
||||
|
||||
CarFw = car.CarParams.CarFw
|
||||
Ecu = car.CarParams.Ecu
|
||||
|
||||
ECU_NAME = {v: k for k, v in Ecu.schema.enumerants.items()}
|
||||
VERSIONS = get_interface_attr("FW_VERSIONS", ignore_none=True)
|
||||
|
||||
|
||||
class TestFwFingerprint(unittest.TestCase):
|
||||
|
||||
@@ -8,13 +8,11 @@ import traceback
|
||||
from tqdm import tqdm
|
||||
from tools.lib.logreader import LogReader
|
||||
from tools.lib.route import Route
|
||||
from selfdrive.car.interfaces import get_interface_attr
|
||||
from selfdrive.car.car_helpers import interface_names
|
||||
from selfdrive.car.fw_versions import match_fw_to_car
|
||||
from selfdrive.car.fw_versions import VERSIONS, match_fw_to_car
|
||||
|
||||
|
||||
NO_API = "NO_API" in os.environ
|
||||
VERSIONS = get_interface_attr('FW_VERSIONS', ignore_none=True)
|
||||
SUPPORTED_BRANDS = VERSIONS.keys()
|
||||
SUPPORTED_CARS = [brand for brand in SUPPORTED_BRANDS for brand in interface_names[brand]]
|
||||
UNKNOWN_BRAND = "unknown"
|
||||
|
||||
Reference in New Issue
Block a user