├── .github └── workflows │ ├── repo.yml │ └── tests.yml ├── .gitignore ├── .pre-commit-config.yaml ├── Dockerfile ├── LICENSE ├── README.md ├── SConstruct ├── opendbc ├── __init__.py ├── can │ ├── SConscript │ ├── __init__.py │ ├── can_define.py │ ├── common.cc │ ├── common.h │ ├── common.pxd │ ├── common_dbc.h │ ├── dbc.cc │ ├── logger.h │ ├── packer.cc │ ├── packer.py │ ├── packer_pyx.pyx │ ├── parser.cc │ ├── parser.py │ ├── parser_pyx.pyx │ └── tests │ │ ├── .gitignore │ │ ├── __init__.py │ │ ├── test.dbc │ │ ├── test_checksums.py │ │ ├── test_dbc_exceptions.py │ │ ├── test_dbc_parser.py │ │ ├── test_define.py │ │ ├── test_packer_parser.py │ │ └── test_parser_performance.py └── dbc │ ├── ESR.dbc │ ├── FORD_CADS.dbc │ ├── __init__.py │ ├── acura_ilx_2016_can_generated.dbc │ ├── acura_ilx_2016_nidec.dbc │ ├── acura_rdx_2018_can_generated.dbc │ ├── acura_rdx_2020_can_generated.dbc │ ├── bmw_e9x_e8x.dbc │ ├── cadillac_ct6_chassis.dbc │ ├── cadillac_ct6_object.dbc │ ├── cadillac_ct6_powertrain.dbc │ ├── chrysler_cusw.dbc │ ├── chrysler_pacifica_2017_hybrid_generated.dbc │ ├── chrysler_pacifica_2017_hybrid_private_fusion.dbc │ ├── chrysler_ram_dt_generated.dbc │ ├── chrysler_ram_hd_generated.dbc │ ├── comma_body.dbc │ ├── ford_cgea1_2_bodycan_2011.dbc │ ├── ford_cgea1_2_ptcan_2011.dbc │ ├── ford_fusion_2018_adas.dbc │ ├── ford_fusion_2018_pt.dbc │ ├── ford_lincoln_base_pt.dbc │ ├── generator │ ├── chrysler │ │ ├── .gitignore │ │ ├── _stellantis_common.dbc │ │ ├── _stellantis_common_ram.py │ │ ├── chrysler_pacifica_2017_hybrid.dbc │ │ ├── chrysler_ram_dt.dbc │ │ └── chrysler_ram_hd.dbc │ ├── generator.py │ ├── gm │ │ ├── _community.dbc │ │ └── gm_global_a_powertrain.dbc │ ├── honda │ │ ├── _bosch_2018.dbc │ │ ├── _bosch_adas_2018.dbc │ │ ├── _community.dbc │ │ ├── _honda_common.dbc │ │ ├── _nidec_common.dbc │ │ ├── _steering_sensors_a.dbc │ │ ├── _steering_sensors_b.dbc │ │ ├── acura_ilx_2016_can.dbc │ │ ├── acura_rdx_2018_can.dbc │ │ ├── acura_rdx_2020_can.dbc │ │ ├── honda_accord_2018_can.dbc │ │ ├── honda_civic_ex_2022_can.dbc │ │ ├── honda_civic_hatchback_ex_2017_can.dbc │ │ ├── honda_civic_touring_2016_can.dbc │ │ ├── honda_clarity_hybrid_2018_can.dbc │ │ ├── honda_crv_ex_2017_body.dbc │ │ ├── honda_crv_ex_2017_can.dbc │ │ ├── honda_crv_executive_2016_can.dbc │ │ ├── honda_crv_touring_2016_can.dbc │ │ ├── honda_fit_ex_2018_can.dbc │ │ ├── honda_fit_hybrid_2018_can.dbc │ │ ├── honda_insight_ex_2019_can.dbc │ │ ├── honda_odyssey_exl_2018.dbc │ │ ├── honda_odyssey_extreme_edition_2018_china_can.dbc │ │ └── honda_pilot_2023_can.dbc │ ├── hyundai │ │ ├── .gitignore │ │ ├── hyundai_kia_mando_corner_radar.py │ │ └── hyundai_kia_mando_front_radar.py │ ├── nissan │ │ ├── _nissan_common.dbc │ │ ├── nissan_leaf_2018.dbc │ │ └── nissan_x_trail_2017.dbc │ ├── subaru │ │ ├── _subaru_global.dbc │ │ ├── _subaru_preglobal_2015.dbc │ │ ├── subaru_forester_2017.dbc │ │ ├── subaru_global_2017.dbc │ │ ├── subaru_global_2020_hybrid.dbc │ │ ├── subaru_outback_2015.dbc │ │ └── subaru_outback_2019.dbc │ ├── tesla │ │ ├── .gitignore │ │ ├── radar_common.py │ │ ├── tesla_radar_bosch.py │ │ └── tesla_radar_continental.py │ ├── test_generator.py │ └── toyota │ │ ├── _community.dbc │ │ ├── _toyota_2017.dbc │ │ ├── toyota_new_mc_pt.dbc │ │ ├── toyota_nodsu_pt.dbc │ │ └── toyota_tnga_k_pt.dbc │ ├── gm_global_a_chassis.dbc │ ├── gm_global_a_high_voltage_management.dbc │ ├── gm_global_a_lowspeed.dbc │ ├── gm_global_a_lowspeed_1818125.dbc │ ├── gm_global_a_object.dbc │ ├── gm_global_a_powertrain_expansion.dbc │ ├── gm_global_a_powertrain_generated.dbc │ ├── honda_accord_2018_can_generated.dbc │ ├── honda_civic_ex_2022_can_generated.dbc │ ├── honda_civic_hatchback_ex_2017_can_generated.dbc │ ├── honda_civic_touring_2016_can_generated.dbc │ ├── honda_clarity_hybrid_2018_can_generated.dbc │ ├── honda_crv_ex_2017_body_generated.dbc │ ├── honda_crv_ex_2017_can_generated.dbc │ ├── honda_crv_executive_2016_can_generated.dbc │ ├── honda_crv_touring_2016_can_generated.dbc │ ├── honda_fit_ex_2018_can_generated.dbc │ ├── honda_fit_hybrid_2018_can_generated.dbc │ ├── honda_insight_ex_2019_can_generated.dbc │ ├── honda_odyssey_exl_2018_generated.dbc │ ├── honda_odyssey_extreme_edition_2018_china_can_generated.dbc │ ├── honda_pilot_2023_can_generated.dbc │ ├── hyundai_2015_ccan.dbc │ ├── hyundai_2015_mcan.dbc │ ├── hyundai_canfd.dbc │ ├── hyundai_i30_2014.dbc │ ├── hyundai_kia_generic.dbc │ ├── hyundai_kia_mando_corner_radar_generated.dbc │ ├── hyundai_kia_mando_front_radar_generated.dbc │ ├── hyundai_santafe_2007.dbc │ ├── luxgen_s5_2015.dbc │ ├── mazda_2017.dbc │ ├── mazda_3_2019.dbc │ ├── mazda_radar.dbc │ ├── mazda_rx8.dbc │ ├── mercedes_benz_e350_2010.dbc │ ├── nissan_leaf_2018_generated.dbc │ ├── nissan_x_trail_2017_generated.dbc │ ├── nissan_xterra_2011.dbc │ ├── ocelot_controls.dbc │ ├── opel_omega_2001.dbc │ ├── subaru_forester_2017_generated.dbc │ ├── subaru_global_2017_generated.dbc │ ├── subaru_global_2020_hybrid_generated.dbc │ ├── subaru_outback_2015_generated.dbc │ ├── subaru_outback_2019_generated.dbc │ ├── tesla_can.dbc │ ├── tesla_model3_party.dbc │ ├── tesla_model3_vehicle.dbc │ ├── tesla_powertrain.dbc │ ├── tesla_radar_bosch_generated.dbc │ ├── tesla_radar_continental_generated.dbc │ ├── toyota_2017_ref_pt.dbc │ ├── toyota_adas.dbc │ ├── toyota_iQ_2009_can.dbc │ ├── toyota_new_mc_pt_generated.dbc │ ├── toyota_nodsu_pt_generated.dbc │ ├── toyota_prius_2010_pt.dbc │ ├── toyota_radar_dsu_tssp.dbc │ ├── toyota_tnga_k_pt_generated.dbc │ ├── toyota_tss2_adas.dbc │ ├── volvo_v40_2017_pt.dbc │ ├── volvo_v60_2015_pt.dbc │ ├── vw_golf_mk4.dbc │ └── vw_mqb_2010.dbc ├── pyproject.toml ├── requirements.txt └── site_scons └── site_tools └── cython.py /.github/workflows/repo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/.github/workflows/repo.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/README.md -------------------------------------------------------------------------------- /SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/SConstruct -------------------------------------------------------------------------------- /opendbc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/__init__.py -------------------------------------------------------------------------------- /opendbc/can/SConscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/can/SConscript -------------------------------------------------------------------------------- /opendbc/can/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /opendbc/can/can_define.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/can/can_define.py -------------------------------------------------------------------------------- /opendbc/can/common.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/can/common.cc -------------------------------------------------------------------------------- /opendbc/can/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/can/common.h -------------------------------------------------------------------------------- /opendbc/can/common.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/can/common.pxd -------------------------------------------------------------------------------- /opendbc/can/common_dbc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/can/common_dbc.h -------------------------------------------------------------------------------- /opendbc/can/dbc.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/can/dbc.cc -------------------------------------------------------------------------------- /opendbc/can/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/can/logger.h -------------------------------------------------------------------------------- /opendbc/can/packer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/can/packer.cc -------------------------------------------------------------------------------- /opendbc/can/packer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/can/packer.py -------------------------------------------------------------------------------- /opendbc/can/packer_pyx.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/can/packer_pyx.pyx -------------------------------------------------------------------------------- /opendbc/can/parser.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/can/parser.cc -------------------------------------------------------------------------------- /opendbc/can/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/can/parser.py -------------------------------------------------------------------------------- /opendbc/can/parser_pyx.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/can/parser_pyx.pyx -------------------------------------------------------------------------------- /opendbc/can/tests/.gitignore: -------------------------------------------------------------------------------- 1 | *.bz2 2 | -------------------------------------------------------------------------------- /opendbc/can/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/can/tests/__init__.py -------------------------------------------------------------------------------- /opendbc/can/tests/test.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/can/tests/test.dbc -------------------------------------------------------------------------------- /opendbc/can/tests/test_checksums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/can/tests/test_checksums.py -------------------------------------------------------------------------------- /opendbc/can/tests/test_dbc_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/can/tests/test_dbc_exceptions.py -------------------------------------------------------------------------------- /opendbc/can/tests/test_dbc_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/can/tests/test_dbc_parser.py -------------------------------------------------------------------------------- /opendbc/can/tests/test_define.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/can/tests/test_define.py -------------------------------------------------------------------------------- /opendbc/can/tests/test_packer_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/can/tests/test_packer_parser.py -------------------------------------------------------------------------------- /opendbc/can/tests/test_parser_performance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/can/tests/test_parser_performance.py -------------------------------------------------------------------------------- /opendbc/dbc/ESR.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/ESR.dbc -------------------------------------------------------------------------------- /opendbc/dbc/FORD_CADS.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/FORD_CADS.dbc -------------------------------------------------------------------------------- /opendbc/dbc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /opendbc/dbc/acura_ilx_2016_can_generated.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/acura_ilx_2016_can_generated.dbc -------------------------------------------------------------------------------- /opendbc/dbc/acura_ilx_2016_nidec.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/acura_ilx_2016_nidec.dbc -------------------------------------------------------------------------------- /opendbc/dbc/acura_rdx_2018_can_generated.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/acura_rdx_2018_can_generated.dbc -------------------------------------------------------------------------------- /opendbc/dbc/acura_rdx_2020_can_generated.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/acura_rdx_2020_can_generated.dbc -------------------------------------------------------------------------------- /opendbc/dbc/bmw_e9x_e8x.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/bmw_e9x_e8x.dbc -------------------------------------------------------------------------------- /opendbc/dbc/cadillac_ct6_chassis.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/cadillac_ct6_chassis.dbc -------------------------------------------------------------------------------- /opendbc/dbc/cadillac_ct6_object.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/cadillac_ct6_object.dbc -------------------------------------------------------------------------------- /opendbc/dbc/cadillac_ct6_powertrain.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/cadillac_ct6_powertrain.dbc -------------------------------------------------------------------------------- /opendbc/dbc/chrysler_cusw.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/chrysler_cusw.dbc -------------------------------------------------------------------------------- /opendbc/dbc/chrysler_pacifica_2017_hybrid_generated.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/chrysler_pacifica_2017_hybrid_generated.dbc -------------------------------------------------------------------------------- /opendbc/dbc/chrysler_pacifica_2017_hybrid_private_fusion.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/chrysler_pacifica_2017_hybrid_private_fusion.dbc -------------------------------------------------------------------------------- /opendbc/dbc/chrysler_ram_dt_generated.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/chrysler_ram_dt_generated.dbc -------------------------------------------------------------------------------- /opendbc/dbc/chrysler_ram_hd_generated.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/chrysler_ram_hd_generated.dbc -------------------------------------------------------------------------------- /opendbc/dbc/comma_body.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/comma_body.dbc -------------------------------------------------------------------------------- /opendbc/dbc/ford_cgea1_2_bodycan_2011.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/ford_cgea1_2_bodycan_2011.dbc -------------------------------------------------------------------------------- /opendbc/dbc/ford_cgea1_2_ptcan_2011.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/ford_cgea1_2_ptcan_2011.dbc -------------------------------------------------------------------------------- /opendbc/dbc/ford_fusion_2018_adas.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/ford_fusion_2018_adas.dbc -------------------------------------------------------------------------------- /opendbc/dbc/ford_fusion_2018_pt.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/ford_fusion_2018_pt.dbc -------------------------------------------------------------------------------- /opendbc/dbc/ford_lincoln_base_pt.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/ford_lincoln_base_pt.dbc -------------------------------------------------------------------------------- /opendbc/dbc/generator/chrysler/.gitignore: -------------------------------------------------------------------------------- 1 | _*generated.dbc 2 | -------------------------------------------------------------------------------- /opendbc/dbc/generator/chrysler/_stellantis_common.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/generator/chrysler/_stellantis_common.dbc -------------------------------------------------------------------------------- /opendbc/dbc/generator/chrysler/_stellantis_common_ram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/generator/chrysler/_stellantis_common_ram.py -------------------------------------------------------------------------------- /opendbc/dbc/generator/chrysler/chrysler_pacifica_2017_hybrid.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/generator/chrysler/chrysler_pacifica_2017_hybrid.dbc -------------------------------------------------------------------------------- /opendbc/dbc/generator/chrysler/chrysler_ram_dt.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/generator/chrysler/chrysler_ram_dt.dbc -------------------------------------------------------------------------------- /opendbc/dbc/generator/chrysler/chrysler_ram_hd.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/generator/chrysler/chrysler_ram_hd.dbc -------------------------------------------------------------------------------- /opendbc/dbc/generator/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/generator/generator.py -------------------------------------------------------------------------------- /opendbc/dbc/generator/gm/_community.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/generator/gm/_community.dbc -------------------------------------------------------------------------------- /opendbc/dbc/generator/gm/gm_global_a_powertrain.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/generator/gm/gm_global_a_powertrain.dbc -------------------------------------------------------------------------------- /opendbc/dbc/generator/honda/_bosch_2018.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/generator/honda/_bosch_2018.dbc -------------------------------------------------------------------------------- /opendbc/dbc/generator/honda/_bosch_adas_2018.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/generator/honda/_bosch_adas_2018.dbc -------------------------------------------------------------------------------- /opendbc/dbc/generator/honda/_community.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/generator/honda/_community.dbc -------------------------------------------------------------------------------- /opendbc/dbc/generator/honda/_honda_common.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/generator/honda/_honda_common.dbc -------------------------------------------------------------------------------- /opendbc/dbc/generator/honda/_nidec_common.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/generator/honda/_nidec_common.dbc -------------------------------------------------------------------------------- /opendbc/dbc/generator/honda/_steering_sensors_a.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/generator/honda/_steering_sensors_a.dbc -------------------------------------------------------------------------------- /opendbc/dbc/generator/honda/_steering_sensors_b.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/generator/honda/_steering_sensors_b.dbc -------------------------------------------------------------------------------- /opendbc/dbc/generator/honda/acura_ilx_2016_can.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/generator/honda/acura_ilx_2016_can.dbc -------------------------------------------------------------------------------- /opendbc/dbc/generator/honda/acura_rdx_2018_can.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/generator/honda/acura_rdx_2018_can.dbc -------------------------------------------------------------------------------- /opendbc/dbc/generator/honda/acura_rdx_2020_can.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/generator/honda/acura_rdx_2020_can.dbc -------------------------------------------------------------------------------- /opendbc/dbc/generator/honda/honda_accord_2018_can.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/generator/honda/honda_accord_2018_can.dbc -------------------------------------------------------------------------------- /opendbc/dbc/generator/honda/honda_civic_ex_2022_can.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/generator/honda/honda_civic_ex_2022_can.dbc -------------------------------------------------------------------------------- /opendbc/dbc/generator/honda/honda_civic_hatchback_ex_2017_can.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/generator/honda/honda_civic_hatchback_ex_2017_can.dbc -------------------------------------------------------------------------------- /opendbc/dbc/generator/honda/honda_civic_touring_2016_can.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/generator/honda/honda_civic_touring_2016_can.dbc -------------------------------------------------------------------------------- /opendbc/dbc/generator/honda/honda_clarity_hybrid_2018_can.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/generator/honda/honda_clarity_hybrid_2018_can.dbc -------------------------------------------------------------------------------- /opendbc/dbc/generator/honda/honda_crv_ex_2017_body.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/generator/honda/honda_crv_ex_2017_body.dbc -------------------------------------------------------------------------------- /opendbc/dbc/generator/honda/honda_crv_ex_2017_can.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/generator/honda/honda_crv_ex_2017_can.dbc -------------------------------------------------------------------------------- /opendbc/dbc/generator/honda/honda_crv_executive_2016_can.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/generator/honda/honda_crv_executive_2016_can.dbc -------------------------------------------------------------------------------- /opendbc/dbc/generator/honda/honda_crv_touring_2016_can.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/generator/honda/honda_crv_touring_2016_can.dbc -------------------------------------------------------------------------------- /opendbc/dbc/generator/honda/honda_fit_ex_2018_can.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/generator/honda/honda_fit_ex_2018_can.dbc -------------------------------------------------------------------------------- /opendbc/dbc/generator/honda/honda_fit_hybrid_2018_can.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/generator/honda/honda_fit_hybrid_2018_can.dbc -------------------------------------------------------------------------------- /opendbc/dbc/generator/honda/honda_insight_ex_2019_can.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/generator/honda/honda_insight_ex_2019_can.dbc -------------------------------------------------------------------------------- /opendbc/dbc/generator/honda/honda_odyssey_exl_2018.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/generator/honda/honda_odyssey_exl_2018.dbc -------------------------------------------------------------------------------- /opendbc/dbc/generator/honda/honda_odyssey_extreme_edition_2018_china_can.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/generator/honda/honda_odyssey_extreme_edition_2018_china_can.dbc -------------------------------------------------------------------------------- /opendbc/dbc/generator/honda/honda_pilot_2023_can.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/generator/honda/honda_pilot_2023_can.dbc -------------------------------------------------------------------------------- /opendbc/dbc/generator/hyundai/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/generator/hyundai/.gitignore -------------------------------------------------------------------------------- /opendbc/dbc/generator/hyundai/hyundai_kia_mando_corner_radar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/generator/hyundai/hyundai_kia_mando_corner_radar.py -------------------------------------------------------------------------------- /opendbc/dbc/generator/hyundai/hyundai_kia_mando_front_radar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/generator/hyundai/hyundai_kia_mando_front_radar.py -------------------------------------------------------------------------------- /opendbc/dbc/generator/nissan/_nissan_common.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/generator/nissan/_nissan_common.dbc -------------------------------------------------------------------------------- /opendbc/dbc/generator/nissan/nissan_leaf_2018.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/generator/nissan/nissan_leaf_2018.dbc -------------------------------------------------------------------------------- /opendbc/dbc/generator/nissan/nissan_x_trail_2017.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/generator/nissan/nissan_x_trail_2017.dbc -------------------------------------------------------------------------------- /opendbc/dbc/generator/subaru/_subaru_global.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/generator/subaru/_subaru_global.dbc -------------------------------------------------------------------------------- /opendbc/dbc/generator/subaru/_subaru_preglobal_2015.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/generator/subaru/_subaru_preglobal_2015.dbc -------------------------------------------------------------------------------- /opendbc/dbc/generator/subaru/subaru_forester_2017.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/generator/subaru/subaru_forester_2017.dbc -------------------------------------------------------------------------------- /opendbc/dbc/generator/subaru/subaru_global_2017.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/generator/subaru/subaru_global_2017.dbc -------------------------------------------------------------------------------- /opendbc/dbc/generator/subaru/subaru_global_2020_hybrid.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/generator/subaru/subaru_global_2020_hybrid.dbc -------------------------------------------------------------------------------- /opendbc/dbc/generator/subaru/subaru_outback_2015.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/generator/subaru/subaru_outback_2015.dbc -------------------------------------------------------------------------------- /opendbc/dbc/generator/subaru/subaru_outback_2019.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/generator/subaru/subaru_outback_2019.dbc -------------------------------------------------------------------------------- /opendbc/dbc/generator/tesla/.gitignore: -------------------------------------------------------------------------------- 1 | *.dbc -------------------------------------------------------------------------------- /opendbc/dbc/generator/tesla/radar_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/generator/tesla/radar_common.py -------------------------------------------------------------------------------- /opendbc/dbc/generator/tesla/tesla_radar_bosch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/generator/tesla/tesla_radar_bosch.py -------------------------------------------------------------------------------- /opendbc/dbc/generator/tesla/tesla_radar_continental.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/generator/tesla/tesla_radar_continental.py -------------------------------------------------------------------------------- /opendbc/dbc/generator/test_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/generator/test_generator.py -------------------------------------------------------------------------------- /opendbc/dbc/generator/toyota/_community.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/generator/toyota/_community.dbc -------------------------------------------------------------------------------- /opendbc/dbc/generator/toyota/_toyota_2017.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/generator/toyota/_toyota_2017.dbc -------------------------------------------------------------------------------- /opendbc/dbc/generator/toyota/toyota_new_mc_pt.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/generator/toyota/toyota_new_mc_pt.dbc -------------------------------------------------------------------------------- /opendbc/dbc/generator/toyota/toyota_nodsu_pt.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/generator/toyota/toyota_nodsu_pt.dbc -------------------------------------------------------------------------------- /opendbc/dbc/generator/toyota/toyota_tnga_k_pt.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/generator/toyota/toyota_tnga_k_pt.dbc -------------------------------------------------------------------------------- /opendbc/dbc/gm_global_a_chassis.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/gm_global_a_chassis.dbc -------------------------------------------------------------------------------- /opendbc/dbc/gm_global_a_high_voltage_management.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/gm_global_a_high_voltage_management.dbc -------------------------------------------------------------------------------- /opendbc/dbc/gm_global_a_lowspeed.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/gm_global_a_lowspeed.dbc -------------------------------------------------------------------------------- /opendbc/dbc/gm_global_a_lowspeed_1818125.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/gm_global_a_lowspeed_1818125.dbc -------------------------------------------------------------------------------- /opendbc/dbc/gm_global_a_object.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/gm_global_a_object.dbc -------------------------------------------------------------------------------- /opendbc/dbc/gm_global_a_powertrain_expansion.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/gm_global_a_powertrain_expansion.dbc -------------------------------------------------------------------------------- /opendbc/dbc/gm_global_a_powertrain_generated.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/gm_global_a_powertrain_generated.dbc -------------------------------------------------------------------------------- /opendbc/dbc/honda_accord_2018_can_generated.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/honda_accord_2018_can_generated.dbc -------------------------------------------------------------------------------- /opendbc/dbc/honda_civic_ex_2022_can_generated.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/honda_civic_ex_2022_can_generated.dbc -------------------------------------------------------------------------------- /opendbc/dbc/honda_civic_hatchback_ex_2017_can_generated.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/honda_civic_hatchback_ex_2017_can_generated.dbc -------------------------------------------------------------------------------- /opendbc/dbc/honda_civic_touring_2016_can_generated.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/honda_civic_touring_2016_can_generated.dbc -------------------------------------------------------------------------------- /opendbc/dbc/honda_clarity_hybrid_2018_can_generated.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/honda_clarity_hybrid_2018_can_generated.dbc -------------------------------------------------------------------------------- /opendbc/dbc/honda_crv_ex_2017_body_generated.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/honda_crv_ex_2017_body_generated.dbc -------------------------------------------------------------------------------- /opendbc/dbc/honda_crv_ex_2017_can_generated.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/honda_crv_ex_2017_can_generated.dbc -------------------------------------------------------------------------------- /opendbc/dbc/honda_crv_executive_2016_can_generated.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/honda_crv_executive_2016_can_generated.dbc -------------------------------------------------------------------------------- /opendbc/dbc/honda_crv_touring_2016_can_generated.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/honda_crv_touring_2016_can_generated.dbc -------------------------------------------------------------------------------- /opendbc/dbc/honda_fit_ex_2018_can_generated.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/honda_fit_ex_2018_can_generated.dbc -------------------------------------------------------------------------------- /opendbc/dbc/honda_fit_hybrid_2018_can_generated.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/honda_fit_hybrid_2018_can_generated.dbc -------------------------------------------------------------------------------- /opendbc/dbc/honda_insight_ex_2019_can_generated.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/honda_insight_ex_2019_can_generated.dbc -------------------------------------------------------------------------------- /opendbc/dbc/honda_odyssey_exl_2018_generated.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/honda_odyssey_exl_2018_generated.dbc -------------------------------------------------------------------------------- /opendbc/dbc/honda_odyssey_extreme_edition_2018_china_can_generated.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/honda_odyssey_extreme_edition_2018_china_can_generated.dbc -------------------------------------------------------------------------------- /opendbc/dbc/honda_pilot_2023_can_generated.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/honda_pilot_2023_can_generated.dbc -------------------------------------------------------------------------------- /opendbc/dbc/hyundai_2015_ccan.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/hyundai_2015_ccan.dbc -------------------------------------------------------------------------------- /opendbc/dbc/hyundai_2015_mcan.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/hyundai_2015_mcan.dbc -------------------------------------------------------------------------------- /opendbc/dbc/hyundai_canfd.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/hyundai_canfd.dbc -------------------------------------------------------------------------------- /opendbc/dbc/hyundai_i30_2014.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/hyundai_i30_2014.dbc -------------------------------------------------------------------------------- /opendbc/dbc/hyundai_kia_generic.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/hyundai_kia_generic.dbc -------------------------------------------------------------------------------- /opendbc/dbc/hyundai_kia_mando_corner_radar_generated.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/hyundai_kia_mando_corner_radar_generated.dbc -------------------------------------------------------------------------------- /opendbc/dbc/hyundai_kia_mando_front_radar_generated.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/hyundai_kia_mando_front_radar_generated.dbc -------------------------------------------------------------------------------- /opendbc/dbc/hyundai_santafe_2007.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/hyundai_santafe_2007.dbc -------------------------------------------------------------------------------- /opendbc/dbc/luxgen_s5_2015.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/luxgen_s5_2015.dbc -------------------------------------------------------------------------------- /opendbc/dbc/mazda_2017.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/mazda_2017.dbc -------------------------------------------------------------------------------- /opendbc/dbc/mazda_3_2019.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/mazda_3_2019.dbc -------------------------------------------------------------------------------- /opendbc/dbc/mazda_radar.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/mazda_radar.dbc -------------------------------------------------------------------------------- /opendbc/dbc/mazda_rx8.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/mazda_rx8.dbc -------------------------------------------------------------------------------- /opendbc/dbc/mercedes_benz_e350_2010.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/mercedes_benz_e350_2010.dbc -------------------------------------------------------------------------------- /opendbc/dbc/nissan_leaf_2018_generated.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/nissan_leaf_2018_generated.dbc -------------------------------------------------------------------------------- /opendbc/dbc/nissan_x_trail_2017_generated.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/nissan_x_trail_2017_generated.dbc -------------------------------------------------------------------------------- /opendbc/dbc/nissan_xterra_2011.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/nissan_xterra_2011.dbc -------------------------------------------------------------------------------- /opendbc/dbc/ocelot_controls.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/ocelot_controls.dbc -------------------------------------------------------------------------------- /opendbc/dbc/opel_omega_2001.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/opel_omega_2001.dbc -------------------------------------------------------------------------------- /opendbc/dbc/subaru_forester_2017_generated.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/subaru_forester_2017_generated.dbc -------------------------------------------------------------------------------- /opendbc/dbc/subaru_global_2017_generated.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/subaru_global_2017_generated.dbc -------------------------------------------------------------------------------- /opendbc/dbc/subaru_global_2020_hybrid_generated.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/subaru_global_2020_hybrid_generated.dbc -------------------------------------------------------------------------------- /opendbc/dbc/subaru_outback_2015_generated.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/subaru_outback_2015_generated.dbc -------------------------------------------------------------------------------- /opendbc/dbc/subaru_outback_2019_generated.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/subaru_outback_2019_generated.dbc -------------------------------------------------------------------------------- /opendbc/dbc/tesla_can.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/tesla_can.dbc -------------------------------------------------------------------------------- /opendbc/dbc/tesla_model3_party.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/tesla_model3_party.dbc -------------------------------------------------------------------------------- /opendbc/dbc/tesla_model3_vehicle.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/tesla_model3_vehicle.dbc -------------------------------------------------------------------------------- /opendbc/dbc/tesla_powertrain.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/tesla_powertrain.dbc -------------------------------------------------------------------------------- /opendbc/dbc/tesla_radar_bosch_generated.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/tesla_radar_bosch_generated.dbc -------------------------------------------------------------------------------- /opendbc/dbc/tesla_radar_continental_generated.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/tesla_radar_continental_generated.dbc -------------------------------------------------------------------------------- /opendbc/dbc/toyota_2017_ref_pt.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/toyota_2017_ref_pt.dbc -------------------------------------------------------------------------------- /opendbc/dbc/toyota_adas.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/toyota_adas.dbc -------------------------------------------------------------------------------- /opendbc/dbc/toyota_iQ_2009_can.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/toyota_iQ_2009_can.dbc -------------------------------------------------------------------------------- /opendbc/dbc/toyota_new_mc_pt_generated.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/toyota_new_mc_pt_generated.dbc -------------------------------------------------------------------------------- /opendbc/dbc/toyota_nodsu_pt_generated.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/toyota_nodsu_pt_generated.dbc -------------------------------------------------------------------------------- /opendbc/dbc/toyota_prius_2010_pt.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/toyota_prius_2010_pt.dbc -------------------------------------------------------------------------------- /opendbc/dbc/toyota_radar_dsu_tssp.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/toyota_radar_dsu_tssp.dbc -------------------------------------------------------------------------------- /opendbc/dbc/toyota_tnga_k_pt_generated.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/toyota_tnga_k_pt_generated.dbc -------------------------------------------------------------------------------- /opendbc/dbc/toyota_tss2_adas.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/toyota_tss2_adas.dbc -------------------------------------------------------------------------------- /opendbc/dbc/volvo_v40_2017_pt.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/volvo_v40_2017_pt.dbc -------------------------------------------------------------------------------- /opendbc/dbc/volvo_v60_2015_pt.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/volvo_v60_2015_pt.dbc -------------------------------------------------------------------------------- /opendbc/dbc/vw_golf_mk4.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/vw_golf_mk4.dbc -------------------------------------------------------------------------------- /opendbc/dbc/vw_mqb_2010.dbc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/opendbc/dbc/vw_mqb_2010.dbc -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/requirements.txt -------------------------------------------------------------------------------- /site_scons/site_tools/cython.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BMW-E8x-E9x/opendbc/HEAD/site_scons/site_tools/cython.py --------------------------------------------------------------------------------