repo
stringlengths
7
90
file_url
stringlengths
81
315
file_path
stringlengths
4
228
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
7 values
commit_sha
stringlengths
40
40
retrieved_at
stringdate
2026-01-04 14:38:15
2026-01-05 02:33:18
truncated
bool
2 classes
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/car/common/__init__.py
opendbc_repo/opendbc/car/common/__init__.py
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/car/common/conversions.py
opendbc_repo/opendbc/car/common/conversions.py
import numpy as np class Conversions: # Speed MPH_TO_KPH = 1.609344 KPH_TO_MPH = 1. / MPH_TO_KPH MS_TO_KPH = 3.6 KPH_TO_MS = 1. / MS_TO_KPH MS_TO_MPH = MS_TO_KPH * KPH_TO_MPH MPH_TO_MS = MPH_TO_KPH * KPH_TO_MS MS_TO_KNOTS = 1.9438 KNOTS_TO_MS = 1. / MS_TO_KNOTS # Angle DEG_TO_RAD = np.pi / 180. ...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/car/common/filter_simple.py
opendbc_repo/opendbc/car/common/filter_simple.py
class FirstOrderFilter: # first order filter def __init__(self, x0, rc, dt, initialized=True): self.x = x0 self.dt = dt self.update_alpha(rc) self.initialized = initialized def update_alpha(self, rc): self.alpha = self.dt / (rc + self.dt) def update(self, x): if self.initialized: ...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/car/nissan/fingerprints.py
opendbc_repo/opendbc/car/nissan/fingerprints.py
# ruff: noqa: E501 from opendbc.car.structs import CarParams from opendbc.car.nissan.values import CAR Ecu = CarParams.Ecu FINGERPRINTS = { CAR.NISSAN_XTRAIL: [{ 2: 5, 42: 6, 346: 6, 347: 5, 348: 8, 349: 7, 361: 8, 386: 8, 389: 8, 397: 8, 398: 8, 403: 8, 520: 2, 523: 6, 548: 8, 645: 8, 658: 8, 665: 8, 666: 8, 6...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/car/nissan/interface.py
opendbc_repo/opendbc/car/nissan/interface.py
from opendbc.car import get_safety_config, structs from opendbc.car.interfaces import CarInterfaceBase from opendbc.car.nissan.carcontroller import CarController from opendbc.car.nissan.carstate import CarState from opendbc.car.nissan.values import CAR, NissanSafetyFlags class CarInterface(CarInterfaceBase): CarSta...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/car/nissan/__init__.py
opendbc_repo/opendbc/car/nissan/__init__.py
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/car/nissan/carstate.py
opendbc_repo/opendbc/car/nissan/carstate.py
import copy from collections import deque from opendbc.can import CANDefine, CANParser from opendbc.car import Bus, create_button_events, structs from opendbc.car.common.conversions import Conversions as CV from opendbc.car.interfaces import CarStateBase from opendbc.car.nissan.values import CAR, DBC, CarControllerPara...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/car/nissan/nissancan.py
opendbc_repo/opendbc/car/nissan/nissancan.py
import crcmod from opendbc.car.nissan.values import CAR # TODO: add this checksum to the CANPacker nissan_checksum = crcmod.mkCrcFun(0x11d, initCrc=0x00, rev=False, xorOut=0xff) def create_steering_control(packer, apply_torque, frame, steer_on, lkas_max_torque): values = { "COUNTER": frame % 0x10, "DESIRED...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/car/nissan/carcontroller.py
opendbc_repo/opendbc/car/nissan/carcontroller.py
from opendbc.can import CANPacker from opendbc.car import Bus, apply_std_steer_angle_limits, structs from opendbc.car.interfaces import CarControllerBase from opendbc.car.nissan import nissancan from opendbc.car.nissan.values import CAR, CarControllerParams VisualAlert = structs.CarControl.HUDControl.VisualAlert cla...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/car/nissan/values.py
opendbc_repo/opendbc/car/nissan/values.py
from dataclasses import dataclass, field from enum import Enum, IntFlag from opendbc.car import AngleSteeringLimits, Bus, CarSpecs, DbcDict, PlatformConfig, Platforms, uds from opendbc.car.structs import CarParams from opendbc.car.docs_definitions import CarDocs, CarFootnote, CarHarness, CarParts, Column from opendbc....
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/car/body/fingerprints.py
opendbc_repo/opendbc/car/body/fingerprints.py
""" AUTO-FORMATTED USING opendbc/car/debug/format_fingerprints.py, EDIT STRUCTURE THERE.""" from opendbc.car.structs import CarParams from opendbc.car.body.values import CAR Ecu = CarParams.Ecu # debug ecu fw version is the git hash of the firmware FINGERPRINTS = { CAR.COMMA_BODY: [{ 513: 8, 516: 8, 514: 3, 5...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/car/body/interface.py
opendbc_repo/opendbc/car/body/interface.py
import math from opendbc.car import get_safety_config, structs from opendbc.car.body.carcontroller import CarController from opendbc.car.body.carstate import CarState from opendbc.car.body.values import SPEED_FROM_RPM from opendbc.car.interfaces import CarInterfaceBase class CarInterface(CarInterfaceBase): CarState...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/car/body/bodycan.py
opendbc_repo/opendbc/car/body/bodycan.py
def create_control(packer, torque_l, torque_r): values = { "TORQUE_L": torque_l, "TORQUE_R": torque_r, } return packer.make_can_msg("TORQUE_CMD", 0, values) def body_checksum(address: int, sig, d: bytearray) -> int: crc = 0xFF poly = 0xD5 for i in range(len(d) - 2, -1, -1): crc ^= d[i] fo...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/car/body/__init__.py
opendbc_repo/opendbc/car/body/__init__.py
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/car/body/carstate.py
opendbc_repo/opendbc/car/body/carstate.py
from opendbc.can import CANParser from opendbc.car import Bus, structs from opendbc.car.interfaces import CarStateBase from opendbc.car.body.values import DBC class CarState(CarStateBase): def update(self, can_parsers) -> structs.CarState: cp = can_parsers[Bus.main] ret = structs.CarState() ret.wheelSp...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/car/body/carcontroller.py
opendbc_repo/opendbc/car/body/carcontroller.py
import numpy as np from opendbc.can import CANPacker from opendbc.car import Bus, DT_CTRL from opendbc.car.common.pid import PIDController from opendbc.car.body import bodycan from opendbc.car.body.values import SPEED_FROM_RPM from opendbc.car.interfaces import CarControllerBase MAX_TORQUE = 500 MAX_TORQUE_RATE = 50 ...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/car/body/values.py
opendbc_repo/opendbc/car/body/values.py
from opendbc.car import Bus, CarSpecs, PlatformConfig, Platforms from opendbc.car.structs import CarParams from opendbc.car.docs_definitions import CarDocs from opendbc.car.fw_query_definitions import FwQueryConfig, Request, StdQueries Ecu = CarParams.Ecu SPEED_FROM_RPM = 0.008587 class CarControllerParams: ANGLE...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/car/ford/fingerprints.py
opendbc_repo/opendbc/car/ford/fingerprints.py
""" AUTO-FORMATTED USING opendbc/car/debug/format_fingerprints.py, EDIT STRUCTURE THERE.""" from opendbc.car.structs import CarParams from opendbc.car.ford.values import CAR Ecu = CarParams.Ecu FW_VERSIONS = { CAR.FORD_BRONCO_SPORT_MK1: { (Ecu.eps, 0x730, None): [ b'LX6C-14D003-AH\x00\x00\x00\x00\x00\x00\...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/car/ford/interface.py
opendbc_repo/opendbc/car/ford/interface.py
import numpy as np from opendbc.car import Bus, get_safety_config, structs from opendbc.car.carlog import carlog from opendbc.car.common.conversions import Conversions as CV from opendbc.car.ford.carcontroller import CarController from opendbc.car.ford.carstate import CarState from opendbc.car.ford.fordcan import CanBu...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/car/ford/__init__.py
opendbc_repo/opendbc/car/ford/__init__.py
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/car/ford/carstate.py
opendbc_repo/opendbc/car/ford/carstate.py
from opendbc.can import CANDefine, CANParser from opendbc.car import Bus, create_button_events, structs from opendbc.car.common.conversions import Conversions as CV from opendbc.car.ford.fordcan import CanBus from opendbc.car.ford.values import DBC, CarControllerParams, FordFlags from opendbc.car.interfaces import CarS...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/car/ford/carcontroller.py
opendbc_repo/opendbc/car/ford/carcontroller.py
import math import numpy as np from opendbc.can.packer import CANPacker from opendbc.car import ACCELERATION_DUE_TO_GRAVITY, Bus, DT_CTRL, apply_std_steer_angle_limits, structs from opendbc.car.ford import fordcan from opendbc.car.ford.values import CarControllerParams, FordFlags from opendbc.car.interfaces import CarC...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/car/ford/values.py
opendbc_repo/opendbc/car/ford/values.py
import copy import re from dataclasses import dataclass, field, replace from enum import Enum, IntFlag from opendbc.car import AngleSteeringLimits, Bus, CarSpecs, DbcDict, PlatformConfig, Platforms, uds from opendbc.car.structs import CarParams from opendbc.car.docs_definitions import CarFootnote, CarHarness, CarDocs,...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/car/ford/fordcan.py
opendbc_repo/opendbc/car/ford/fordcan.py
from opendbc.car import CanBusBase, structs HUDControl = structs.CarControl.HUDControl class CanBus(CanBusBase): def __init__(self, CP=None, fingerprint=None) -> None: super().__init__(CP, fingerprint) @property def main(self) -> int: return self.offset @property def radar(self) -> int: retur...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/car/ford/radar_interface.py
opendbc_repo/opendbc/car/ford/radar_interface.py
import numpy as np from typing import cast from collections import defaultdict from math import cos, sin from dataclasses import dataclass from opendbc.can import CANParser from opendbc.car import Bus, structs from opendbc.car.common.conversions import Conversions as CV from opendbc.car.ford.fordcan import CanBus from ...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/car/ford/tests/__init__.py
opendbc_repo/opendbc/car/ford/tests/__init__.py
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/car/ford/tests/print_platform_codes.py
opendbc_repo/opendbc/car/ford/tests/print_platform_codes.py
#!/usr/bin/env python3 from collections import defaultdict from opendbc.car.structs import CarParams from opendbc.car.ford.values import get_platform_codes from opendbc.car.ford.fingerprints import FW_VERSIONS Ecu = CarParams.Ecu if __name__ == "__main__": cars_for_code: defaultdict = defaultdict(lambda: defaultdi...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/car/ford/tests/test_ford.py
opendbc_repo/opendbc/car/ford/tests/test_ford.py
import random from collections.abc import Iterable from hypothesis import settings, given, strategies as st from parameterized import parameterized from opendbc.car.structs import CarParams from opendbc.car.fw_versions import build_fw_dict from opendbc.car.ford.values import CAR, FW_QUERY_CONFIG, FW_PATTERN, get_plat...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/car/mazda/fingerprints.py
opendbc_repo/opendbc/car/mazda/fingerprints.py
from opendbc.car.structs import CarParams from opendbc.car.mazda.values import CAR Ecu = CarParams.Ecu FW_VERSIONS = { CAR.MAZDA_CX5_2022: { (Ecu.eps, 0x730, None): [ b'KSD5-3210X-C-00\x00\x00\x00\x00\x00\x00\x00\x00\x00', ], (Ecu.engine, 0x7e0, None): [ b'PEW5-188K2-A\x00\x00\x00\x00\x00\x0...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/car/mazda/interface.py
opendbc_repo/opendbc/car/mazda/interface.py
#!/usr/bin/env python3 from opendbc.car import get_safety_config, structs from opendbc.car.common.conversions import Conversions as CV from opendbc.car.mazda.values import CAR, LKAS_LIMITS from opendbc.car.interfaces import CarInterfaceBase from opendbc.car.mazda.carcontroller import CarController from opendbc.car.mazd...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/car/mazda/__init__.py
opendbc_repo/opendbc/car/mazda/__init__.py
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/car/mazda/carstate.py
opendbc_repo/opendbc/car/mazda/carstate.py
from opendbc.can import CANDefine, CANParser from opendbc.car import Bus, create_button_events, structs from opendbc.car.common.conversions import Conversions as CV from opendbc.car.interfaces import CarStateBase from opendbc.car.mazda.values import DBC, LKAS_LIMITS, MazdaFlags, Buttons ButtonType = structs.CarState.B...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/car/mazda/carcontroller.py
opendbc_repo/opendbc/car/mazda/carcontroller.py
from opendbc.can import CANPacker from opendbc.car import Bus, apply_driver_steer_torque_limits, structs from opendbc.car.interfaces import CarControllerBase from opendbc.car.mazda import mazdacan from opendbc.car.mazda.values import CarControllerParams, Buttons from opendbc.car.common.conversions import Conversions as...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/car/mazda/mazdacan.py
opendbc_repo/opendbc/car/mazda/mazdacan.py
from opendbc.car.mazda.values import Buttons, MazdaFlags def create_steering_control(packer, CP, frame, apply_torque, lkas): tmp = apply_torque + 2048 lo = tmp & 0xFF hi = tmp >> 8 # copy values from camera b1 = int(lkas["BIT_1"]) er1 = int(lkas["ERR_BIT_1"]) lnv = 0 ldw = 0 er2 = int(lkas["ERR_B...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/car/mazda/values.py
opendbc_repo/opendbc/car/mazda/values.py
from dataclasses import dataclass, field from enum import IntFlag from opendbc.car import Bus, CarSpecs, DbcDict, PlatformConfig, Platforms from opendbc.car.common.conversions import Conversions as CV from opendbc.car.structs import CarParams from opendbc.car.docs_definitions import CarHarness, CarDocs, CarParts from ...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/car/hyundai/fingerprints.py
opendbc_repo/opendbc/car/hyundai/fingerprints.py
from opendbc.car.structs import CarParams from opendbc.car.hyundai.values import CAR Ecu = CarParams.Ecu # The existence of SCC or RDR in the fwdRadar FW usually determines the radar's function, # i.e. if it sends the SCC messages or if another ECU like the camera or ADAS Driving ECU does FW_VERSIONS = { CAR.HYUN...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
true
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/car/hyundai/hyundaican.py
opendbc_repo/opendbc/car/hyundai/hyundaican.py
import copy import crcmod from opendbc.car.hyundai.values import CAR, HyundaiFlags hyundai_checksum = crcmod.mkCrcFun(0x11D, initCrc=0xFD, rev=False, xorOut=0xdf) def create_lkas11(packer, frame, CP, apply_torque, steer_req, torque_fault, lkas11, sys_warning, sys_state, enabled, le...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/car/hyundai/hyundaicanfd.py
opendbc_repo/opendbc/car/hyundai/hyundaicanfd.py
import copy import numpy as np from opendbc.car import CanBusBase from opendbc.car.crc import CRC16_XMODEM from opendbc.car.hyundai.values import HyundaiFlags, HyundaiExtFlags from openpilot.common.params import Params from opendbc.car.common.conversions import Conversions as CV def hyundai_crc8(data: bytes) -> int: ...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/car/hyundai/interface.py
opendbc_repo/opendbc/car/hyundai/interface.py
from opendbc.car import Bus, get_safety_config, structs from opendbc.car.hyundai.hyundaicanfd import CanBus from opendbc.car.hyundai.values import HyundaiFlags, CAR, DBC, CANFD_RADAR_SCC_CAR, \ CANFD_UNSUPPORTED_LONGITUDINAL_CAR, \ ...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/car/hyundai/__init__.py
opendbc_repo/opendbc/car/hyundai/__init__.py
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/car/hyundai/carstate.py
opendbc_repo/opendbc/car/hyundai/carstate.py
from collections import deque import copy import math import numpy as np import ast from opendbc.can import CANDefine, CANParser from opendbc.car import Bus, create_button_events, structs, DT_CTRL from opendbc.car.common.conversions import Conversions as CV from opendbc.car.hyundai.hyundaicanfd import CanBus from open...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/car/hyundai/carcontroller.py
opendbc_repo/opendbc/car/hyundai/carcontroller.py
import numpy as np from opendbc.can import CANPacker from opendbc.car import Bus, DT_CTRL, apply_driver_steer_torque_limits, common_fault_avoidance, make_tester_present_msg, structs, apply_std_steer_angle_limits from opendbc.car.common.conversions import Conversions as CV from opendbc.car.hyundai import hyundaicanfd, h...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/car/hyundai/values.py
opendbc_repo/opendbc/car/hyundai/values.py
import re from dataclasses import dataclass, field from enum import Enum, IntFlag from opendbc.car import Bus, CarSpecs, DbcDict, PlatformConfig, Platforms, uds, AngleSteeringLimits from opendbc.car.common.conversions import Conversions as CV from opendbc.car.structs import CarParams from opendbc.car.docs_definitions ...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
true
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/car/hyundai/radar_interface.py
opendbc_repo/opendbc/car/hyundai/radar_interface.py
import math from opendbc.can import CANParser from opendbc.car import Bus, structs from opendbc.car.interfaces import RadarInterfaceBase from opendbc.car.hyundai.values import DBC, HyundaiFlags, HyundaiExtFlags from openpilot.common.params import Params from opendbc.car.hyundai.hyundaicanfd import CanBus from openpilo...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/car/hyundai/tests/__init__.py
opendbc_repo/opendbc/car/hyundai/tests/__init__.py
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/car/hyundai/tests/test_hyundai.py
opendbc_repo/opendbc/car/hyundai/tests/test_hyundai.py
from hypothesis import settings, given, strategies as st import pytest from opendbc.car import gen_empty_fingerprint from opendbc.car.structs import CarParams from opendbc.car.fw_versions import build_fw_dict from opendbc.car.hyundai.interface import CarInterface from opendbc.car.hyundai.hyundaicanfd import CanBus fr...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/car/hyundai/tests/print_platform_codes.py
opendbc_repo/opendbc/car/hyundai/tests/print_platform_codes.py
#!/usr/bin/env python3 from opendbc.car.structs import CarParams from opendbc.car.hyundai.values import PLATFORM_CODE_ECUS, get_platform_codes from opendbc.car.hyundai.fingerprints import FW_VERSIONS Ecu = CarParams.Ecu if __name__ == "__main__": for car_model, ecus in FW_VERSIONS.items(): print() print(car...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/car/subaru/fingerprints.py
opendbc_repo/opendbc/car/subaru/fingerprints.py
from opendbc.car.structs import CarParams from opendbc.car.subaru.values import CAR Ecu = CarParams.Ecu FW_VERSIONS = { CAR.SUBARU_ASCENT: { (Ecu.abs, 0x7b0, None): [ b'\xa5 \x19\x02\x00', b'\xa5 !\x02\x00', ], (Ecu.eps, 0x746, None): [ b'\x05\xc0\xd0\x00', b'\x85\xc0\xd0\x00', ...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/car/subaru/interface.py
opendbc_repo/opendbc/car/subaru/interface.py
from opendbc.car import get_safety_config, structs from opendbc.car.disable_ecu import disable_ecu from opendbc.car.interfaces import CarInterfaceBase from opendbc.car.subaru.carcontroller import CarController from opendbc.car.subaru.carstate import CarState from opendbc.car.subaru.values import CAR, GLOBAL_ES_ADDR, Su...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/car/subaru/__init__.py
opendbc_repo/opendbc/car/subaru/__init__.py
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/car/subaru/carstate.py
opendbc_repo/opendbc/car/subaru/carstate.py
import copy from opendbc.can import CANDefine, CANParser from opendbc.car import Bus, structs from opendbc.car.common.conversions import Conversions as CV from opendbc.car.interfaces import CarStateBase from opendbc.car.subaru.values import DBC, CanBus, SubaruFlags from opendbc.car import CanSignalRateCalculator clas...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/car/subaru/subarucan.py
opendbc_repo/opendbc/car/subaru/subarucan.py
from opendbc.car import structs from opendbc.car.subaru.values import CanBus VisualAlert = structs.CarControl.HUDControl.VisualAlert def create_steering_control(packer, apply_torque, steer_req): values = { "LKAS_Output": apply_torque, "LKAS_Request": steer_req, "SET_1": 1 } return packer.make_can_m...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/car/subaru/carcontroller.py
opendbc_repo/opendbc/car/subaru/carcontroller.py
import numpy as np from opendbc.can import CANPacker from opendbc.car import Bus, apply_driver_steer_torque_limits, common_fault_avoidance, make_tester_present_msg from opendbc.car.interfaces import CarControllerBase from opendbc.car.subaru import subarucan from opendbc.car.subaru.values import DBC, GLOBAL_ES_ADDR, Can...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/car/subaru/values.py
opendbc_repo/opendbc/car/subaru/values.py
from dataclasses import dataclass, field from enum import Enum, IntFlag from opendbc.car import Bus, CarSpecs, DbcDict, PlatformConfig, Platforms, uds from opendbc.car.structs import CarParams from opendbc.car.docs_definitions import CarFootnote, CarHarness, CarDocs, CarParts, Tool, Column from opendbc.car.fw_query_de...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/car/subaru/tests/test_subaru.py
opendbc_repo/opendbc/car/subaru/tests/test_subaru.py
from opendbc.car.subaru.fingerprints import FW_VERSIONS class TestSubaruFingerprint: def test_fw_version_format(self): for platform, fws_per_ecu in FW_VERSIONS.items(): for (ecu, _, _), fws in fws_per_ecu.items(): fw_size = len(fws[0]) for fw in fws: assert len(fw) == fw_size, f"...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/car/subaru/tests/__init__.py
opendbc_repo/opendbc/car/subaru/tests/__init__.py
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/car/debug/format_fingerprints.py
opendbc_repo/opendbc/car/debug/format_fingerprints.py
#!/usr/bin/env python3 import jinja2 import os from opendbc.car.common.basedir import BASEDIR from opendbc.car.interfaces import get_interface_attr from opendbc.car.structs import CarParams Ecu = CarParams.Ecu CARS = get_interface_attr('CAR') FW_VERSIONS = get_interface_attr('FW_VERSIONS') FINGERPRINTS = get_interfa...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/car/volkswagen/fingerprints.py
opendbc_repo/opendbc/car/volkswagen/fingerprints.py
from opendbc.car.structs import CarParams from opendbc.car.volkswagen.values import CAR Ecu = CarParams.Ecu # TODO: Sharan Mk2 EPS and DQ250 auto trans both require KWP2000 support for fingerprinting FW_VERSIONS = { CAR.VOLKSWAGEN_ARTEON_MK1: { (Ecu.engine, 0x7e0, None): [ b'\xf1\x8704L906026TM\xf1\x896...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
true
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/car/volkswagen/mqbcan.py
opendbc_repo/opendbc/car/volkswagen/mqbcan.py
from opendbc.car.crc import CRC8H2F def create_steering_control(packer, bus, apply_torque, lkas_enabled): values = { "HCA_01_Status_HCA": 5 if lkas_enabled else 3, "HCA_01_LM_Offset": abs(apply_torque), "HCA_01_LM_OffSign": 1 if apply_torque < 0 else 0, "HCA_01_Vib_Freq": 18, "HCA_01_Sendestatus...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/car/volkswagen/pqcan.py
opendbc_repo/opendbc/car/volkswagen/pqcan.py
def create_steering_control(packer, bus, apply_torque, lkas_enabled): values = { "LM_Offset": abs(apply_torque), "LM_OffSign": 1 if apply_torque < 0 else 0, "HCA_Status": 5 if (lkas_enabled and apply_torque != 0) else 3, "Vib_Freq": 16, } return packer.make_can_msg("HCA_1", bus, values) def cre...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/car/volkswagen/interface.py
opendbc_repo/opendbc/car/volkswagen/interface.py
from opendbc.car import get_safety_config, structs from opendbc.car.interfaces import CarInterfaceBase from opendbc.car.volkswagen.carcontroller import CarController from opendbc.car.volkswagen.carstate import CarState from opendbc.car.volkswagen.values import CAR, NetworkLocation, TransmissionType, VolkswagenFlags, Vo...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/car/volkswagen/__init__.py
opendbc_repo/opendbc/car/volkswagen/__init__.py
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/car/volkswagen/carstate.py
opendbc_repo/opendbc/car/volkswagen/carstate.py
from opendbc.can import CANParser from opendbc.car import Bus, structs from opendbc.car.interfaces import CarStateBase from opendbc.car.common.conversions import Conversions as CV from opendbc.car.volkswagen.values import DBC, CANBUS, NetworkLocation, TransmissionType, GearShifter, \ ...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/car/volkswagen/carcontroller.py
opendbc_repo/opendbc/car/volkswagen/carcontroller.py
import numpy as np from opendbc.can import CANPacker from opendbc.car import Bus, DT_CTRL, apply_driver_steer_torque_limits, structs from opendbc.car.common.conversions import Conversions as CV from opendbc.car.interfaces import CarControllerBase from opendbc.car.volkswagen import mqbcan, pqcan from opendbc.car.volkswa...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/car/volkswagen/values.py
opendbc_repo/opendbc/car/volkswagen/values.py
from collections import defaultdict, namedtuple from dataclasses import dataclass, field from enum import Enum, IntFlag, StrEnum from opendbc.car import Bus, CarSpecs, DbcDict, PlatformConfig, Platforms, structs, uds from opendbc.can import CANDefine from opendbc.car.common.conversions import Conversions as CV from op...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/car/volkswagen/tests/test_volkswagen.py
opendbc_repo/opendbc/car/volkswagen/tests/test_volkswagen.py
import random import re from opendbc.car.structs import CarParams from opendbc.car.volkswagen.values import CAR, FW_QUERY_CONFIG, WMI from opendbc.car.volkswagen.fingerprints import FW_VERSIONS Ecu = CarParams.Ecu CHASSIS_CODE_PATTERN = re.compile('[A-Z0-9]{2}') # TODO: determine the unknown groups SPARE_PART_FW_PAT...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/car/volkswagen/tests/__init__.py
opendbc_repo/opendbc/car/volkswagen/tests/__init__.py
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/car/chrysler/fingerprints.py
opendbc_repo/opendbc/car/chrysler/fingerprints.py
""" AUTO-FORMATTED USING opendbc/car/debug/format_fingerprints.py, EDIT STRUCTURE THERE.""" from opendbc.car.structs import CarParams from opendbc.car.chrysler.values import CAR Ecu = CarParams.Ecu FW_VERSIONS = { CAR.CHRYSLER_PACIFICA_2018: { (Ecu.combinationMeter, 0x742, None): [ b'68227902AF', b'...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/car/chrysler/interface.py
opendbc_repo/opendbc/car/chrysler/interface.py
#!/usr/bin/env python3 from opendbc.car import get_safety_config, structs from opendbc.car.chrysler.carcontroller import CarController from opendbc.car.chrysler.carstate import CarState from opendbc.car.chrysler.radar_interface import RadarInterface from opendbc.car.chrysler.values import CAR, RAM_HD, RAM_DT, RAM_CARS,...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/car/chrysler/chryslercan.py
opendbc_repo/opendbc/car/chrysler/chryslercan.py
from opendbc.car import structs from opendbc.car.crc import CRC8J1850 from opendbc.car.chrysler.values import RAM_CARS GearShifter = structs.CarState.GearShifter VisualAlert = structs.CarControl.HUDControl.VisualAlert def create_lkas_hud(packer, CP, lkas_active, hud_alert, hud_count, car_model, auto_high_beam): # L...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/car/chrysler/__init__.py
opendbc_repo/opendbc/car/chrysler/__init__.py
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/car/chrysler/carstate.py
opendbc_repo/opendbc/car/chrysler/carstate.py
from opendbc.can import CANDefine, CANParser from opendbc.car import Bus, create_button_events, structs from opendbc.car.chrysler.values import DBC, STEER_THRESHOLD, RAM_CARS from opendbc.car.common.conversions import Conversions as CV from opendbc.car.interfaces import CarStateBase ButtonType = structs.CarState.Butto...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/car/chrysler/carcontroller.py
opendbc_repo/opendbc/car/chrysler/carcontroller.py
from opendbc.can import CANPacker from opendbc.car import Bus, DT_CTRL, apply_meas_steer_torque_limits from opendbc.car.chrysler import chryslercan from opendbc.car.chrysler.values import RAM_CARS, CarControllerParams, ChryslerFlags from opendbc.car.interfaces import CarControllerBase class CarController(CarControlle...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/car/chrysler/values.py
opendbc_repo/opendbc/car/chrysler/values.py
from enum import IntFlag from dataclasses import dataclass, field from opendbc.car import Bus, CarSpecs, DbcDict, PlatformConfig, Platforms, uds from opendbc.car.structs import CarParams from opendbc.car.docs_definitions import CarHarness, CarDocs, CarParts from opendbc.car.fw_query_definitions import FwQueryConfig, R...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/car/chrysler/radar_interface.py
opendbc_repo/opendbc/car/chrysler/radar_interface.py
#!/usr/bin/env python3 from opendbc.can import CANParser from opendbc.car import Bus, structs from opendbc.car.interfaces import RadarInterfaceBase from opendbc.car.chrysler.values import DBC RADAR_MSGS_C = list(range(0x2c2, 0x2d4+2, 2)) # c_ messages 706,...,724 RADAR_MSGS_D = list(range(0x2a2, 0x2b4+2, 2)) # d_ me...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/can/parser.py
opendbc_repo/opendbc/can/parser.py
import time import math import numbers from collections import defaultdict, deque from dataclasses import dataclass, field from opendbc.can.dbc import DBC, Signal MAX_BAD_COUNTER = 5 CAN_INVALID_CNT = 5 def get_raw_value(dat: bytes | bytearray, sig: Signal) -> int: ret = 0 i = sig.msb // 8 bits = sig.size ...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/can/dbc.py
opendbc_repo/opendbc/can/dbc.py
import re import os from dataclasses import dataclass from collections.abc import Callable from opendbc import DBC_PATH # TODO: these should just be passed in along with the DBC file from opendbc.car.honda.hondacan import honda_checksum from opendbc.car.toyota.toyotacan import toyota_checksum from opendbc.car.subaru....
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/can/__init__.py
opendbc_repo/opendbc/can/__init__.py
from opendbc.can.packer import CANPacker from opendbc.can.parser import CANParser, CANDefine __all__ = [ "CANDefine", "CANParser", "CANPacker", ]
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/can/packer.py
opendbc_repo/opendbc/can/packer.py
import math from opendbc.can.dbc import DBC, Signal, SignalType class CANPacker: def __init__(self, dbc_name: str): self.dbc = DBC(dbc_name) self.counters: dict[int, int] = {} def pack(self, address: int, values: dict[str, float]) -> bytearray: msg = self.dbc.addr_to_msg.get(address) if msg is N...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/can/tests/test_dbc_exceptions.py
opendbc_repo/opendbc/can/tests/test_dbc_exceptions.py
import pytest from opendbc.can import CANDefine, CANPacker, CANParser from opendbc.can.tests import TEST_DBC class TestCanParserPackerExceptions: def test_civic_exceptions(self): dbc_file = "honda_civic_touring_2016_can_generated" dbc_invalid = dbc_file + "abcdef" msgs = [("STEERING_CONTROL", 50)] ...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/can/tests/test_define.py
opendbc_repo/opendbc/can/tests/test_define.py
from opendbc.can import CANDefine from opendbc.can.tests import ALL_DBCS class TestCANDefine: def test_civic(self): dbc_file = "honda_civic_touring_2016_can_generated" defs = CANDefine(dbc_file) assert defs.dv[399] == defs.dv['STEER_STATUS'] assert defs.dv[399] == {'STEER_STATUS': ...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/can/tests/benchmark.py
opendbc_repo/opendbc/can/tests/benchmark.py
#!/usr/bin/env python3 import time from opendbc.can import CANPacker, CANParser def _benchmark(checks, n): parser = CANParser('toyota_new_mc_pt_generated', checks, 0) packer = CANPacker('toyota_new_mc_pt_generated') t1 = time.process_time_ns() can_msgs = [] for i in range(10000): values = {"ACC_CONTROL...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/can/tests/__init__.py
opendbc_repo/opendbc/can/tests/__init__.py
import glob import os from opendbc import DBC_PATH ALL_DBCS = [os.path.basename(dbc).split('.')[0] for dbc in glob.glob(f"{DBC_PATH}/*.dbc")] TEST_DBC = os.path.abspath(os.path.join(os.path.dirname(__file__), "test.dbc"))
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/can/tests/test_checksums.py
opendbc_repo/opendbc/can/tests/test_checksums.py
import copy from opendbc.can import CANPacker, CANParser class TestCanChecksums: def verify_checksum(self, subtests, dbc_file: str, msg_name: str, msg_addr: int, test_messages: list[bytes], checksum_field: str = 'CHECKSUM', counter_field = 'COUNTER'): """ Verify that opendbc calculate...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/can/tests/test_packer_parser.py
opendbc_repo/opendbc/can/tests/test_packer_parser.py
import pytest import random from opendbc.can import CANPacker, CANParser from opendbc.can.tests import TEST_DBC MAX_BAD_COUNTER = 5 class TestCanParserPacker: def test_packer(self): packer = CANPacker(TEST_DBC) for b in range(6): for i in range(256): values = {"COUNTER": i} addr, da...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/can/tests/test_dbc_parser.py
opendbc_repo/opendbc/can/tests/test_dbc_parser.py
from opendbc.can import CANParser from opendbc.can.tests import ALL_DBCS class TestDBCParser: def test_enough_dbcs(self): # sanity check that we're running on the real DBCs assert len(ALL_DBCS) > 20 def test_parse_all_dbcs(self, subtests): """ Dynamic DBC parser checks: - Checksum and c...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/safety/__init__.py
opendbc_repo/opendbc/safety/__init__.py
# constants from panda/python/__init__.py DLC_TO_LEN = [0, 1, 2, 3, 4, 5, 6, 7, 8, 12, 16, 20, 24, 32, 48, 64] LEN_TO_DLC = {length: dlc for (dlc, length) in enumerate(DLC_TO_LEN)} class ALTERNATIVE_EXPERIENCE: DEFAULT = 0 DISABLE_DISENGAGE_ON_GAS = 1 DISABLE_STOCK_AEB = 2 RAISE_LONGITUDINAL_LIMITS_TO_ISO_MAX...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/safety/tests/test_rivian.py
opendbc_repo/opendbc/safety/tests/test_rivian.py
#!/usr/bin/env python3 import unittest from opendbc.car.structs import CarParams from opendbc.safety.tests.libsafety import libsafety_py import opendbc.safety.tests.common as common from opendbc.safety.tests.common import CANPackerPanda from opendbc.car.rivian.values import RivianSafetyFlags class TestRivianSafetyBa...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/safety/tests/test_hyundai_canfd.py
opendbc_repo/opendbc/safety/tests/test_hyundai_canfd.py
#!/usr/bin/env python3 from parameterized import parameterized_class import unittest from opendbc.car.hyundai.values import HyundaiSafetyFlags from opendbc.car.structs import CarParams from opendbc.safety.tests.libsafety import libsafety_py import opendbc.safety.tests.common as common from opendbc.safety.tests.common ...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/safety/tests/test_honda.py
opendbc_repo/opendbc/safety/tests/test_honda.py
#!/usr/bin/env python3 import unittest import numpy as np from opendbc.car.honda.values import HondaSafetyFlags from opendbc.safety.tests.libsafety import libsafety_py import opendbc.safety.tests.common as common from opendbc.car.structs import CarParams from opendbc.safety.tests.common import CANPackerPanda, MAX_WRON...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/safety/tests/test_mazda.py
opendbc_repo/opendbc/safety/tests/test_mazda.py
#!/usr/bin/env python3 import unittest from opendbc.car.structs import CarParams from opendbc.safety.tests.libsafety import libsafety_py import opendbc.safety.tests.common as common from opendbc.safety.tests.common import CANPackerPanda class TestMazdaSafety(common.PandaCarSafetyTest, common.DriverTorqueSteeringSafe...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/safety/tests/common.py
opendbc_repo/opendbc/safety/tests/common.py
import os import abc import unittest import importlib import numpy as np from collections.abc import Callable from opendbc.can.packer import CANPacker # pylint: disable=import-error from opendbc.safety import ALTERNATIVE_EXPERIENCE from opendbc.safety.tests.libsafety import libsafety_py MAX_WRONG_COUNTERS = 5 MAX_SA...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
true
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/safety/tests/test_tesla.py
opendbc_repo/opendbc/safety/tests/test_tesla.py
#!/usr/bin/env python3 import unittest from opendbc.car.tesla.values import TeslaSafetyFlags from opendbc.car.structs import CarParams from opendbc.can.can_define import CANDefine from opendbc.safety.tests.libsafety import libsafety_py import opendbc.safety.tests.common as common from opendbc.safety.tests.common impor...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/safety/tests/test_gm.py
opendbc_repo/opendbc/safety/tests/test_gm.py
#!/usr/bin/env python3 import unittest from opendbc.car.gm.values import GMSafetyFlags from opendbc.car.structs import CarParams from opendbc.safety.tests.libsafety import libsafety_py import opendbc.safety.tests.common as common from opendbc.safety.tests.common import CANPackerPanda class Buttons: UNPRESS = 1 R...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/safety/tests/test_defaults.py
opendbc_repo/opendbc/safety/tests/test_defaults.py
#!/usr/bin/env python3 import unittest import opendbc.safety.tests.common as common from opendbc.car.structs import CarParams from opendbc.safety.tests.libsafety import libsafety_py class TestDefaultRxHookBase(common.PandaSafetyTest): FWD_BUS_LOOKUP = {} def test_rx_hook(self): # default rx hook allows all ...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/safety/tests/test_chrysler.py
opendbc_repo/opendbc/safety/tests/test_chrysler.py
#!/usr/bin/env python3 import unittest from opendbc.car.chrysler.values import ChryslerSafetyFlags from opendbc.car.structs import CarParams from opendbc.safety.tests.libsafety import libsafety_py import opendbc.safety.tests.common as common from opendbc.safety.tests.common import CANPackerPanda class TestChryslerSa...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/safety/tests/test_subaru_preglobal.py
opendbc_repo/opendbc/safety/tests/test_subaru_preglobal.py
#!/usr/bin/env python3 import unittest from opendbc.car.structs import CarParams from opendbc.car.subaru.values import SubaruSafetyFlags from opendbc.safety.tests.libsafety import libsafety_py import opendbc.safety.tests.common as common from opendbc.safety.tests.common import CANPackerPanda class TestSubaruPregloba...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/safety/tests/test_body.py
opendbc_repo/opendbc/safety/tests/test_body.py
#!/usr/bin/env python3 import unittest from opendbc.car.structs import CarParams import opendbc.safety.tests.common as common from opendbc.safety.tests.libsafety import libsafety_py from opendbc.safety.tests.common import CANPackerPanda class TestBody(common.PandaSafetyTest): TX_MSGS = [[0x250, 0], [0x251, 0], [0x...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/safety/tests/test_toyota.py
opendbc_repo/opendbc/safety/tests/test_toyota.py
#!/usr/bin/env python3 import numpy as np import random import unittest import itertools from opendbc.car.toyota.values import ToyotaSafetyFlags from opendbc.car.structs import CarParams from opendbc.safety.tests.libsafety import libsafety_py import opendbc.safety.tests.common as common from opendbc.safety.tests.commo...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false
ajouatom/openpilot
https://github.com/ajouatom/openpilot/blob/b0eab6e8de2d57522b657426fbb794f2d736c75c/opendbc_repo/opendbc/safety/tests/test_subaru.py
opendbc_repo/opendbc/safety/tests/test_subaru.py
#!/usr/bin/env python3 import enum import unittest from opendbc.car.subaru.values import SubaruSafetyFlags from opendbc.car.structs import CarParams from opendbc.safety.tests.libsafety import libsafety_py import opendbc.safety.tests.common as common from opendbc.safety.tests.common import CANPackerPanda from functools...
python
MIT
b0eab6e8de2d57522b657426fbb794f2d736c75c
2026-01-05T07:04:53.428285Z
false