Commit 347cee4
authored
File tree
8 files changed
+27
-14
lines changed- selfdrive
- car/tests
- controls/lib
- lateral_mpc_lib
- longitudinal_mpc_lib
- pandad
- test/process_replay
8 files changed
+27
-14
lines changedSubmodule opendbc_repo updated 83 files
- .gitignore+1
- SConscript-1
- SConstruct+2-30
- docs/CARS.md+3-2
- lefthook.yml-2
- opendbc/can/SConscript-23
- opendbc/can/__init__.py+8
- opendbc/can/can_define.py-2
- opendbc/can/common.cc-294
- opendbc/can/common.h-123
- opendbc/can/common.pxd-91
- opendbc/can/common_dbc.h-74
- opendbc/can/dbc.cc-255
- opendbc/can/dbc.py+212
- opendbc/can/logger.h-26
- opendbc/can/packer.cc-109
- opendbc/can/packer.py+67-2
- opendbc/can/packer_pyx.pyx-68
- opendbc/can/parser.cc-271
- opendbc/can/parser.py+260-2
- opendbc/can/parser_pyx.pyx-176
- opendbc/can/tests/benchmark.py+45
- opendbc/can/tests/test_checksums.py+4-5
- opendbc/can/tests/test_dbc_exceptions.py+6-7
- opendbc/can/tests/test_dbc_parser.py+1-1
- opendbc/can/tests/test_define.py+1-1
- opendbc/can/tests/test_packer_parser.py+23-24
- opendbc/can/tests/test_parser_performance.py-51
- opendbc/car/body/bodycan.py+13
- opendbc/car/body/carcontroller.py+1-1
- opendbc/car/body/carstate.py+2-7
- opendbc/car/chrysler/carcontroller.py+1-1
- opendbc/car/chrysler/carstate.py+3-46
- opendbc/car/chrysler/chryslercan.py+41
- opendbc/car/chrysler/radar_interface.py+2-2
- opendbc/car/crc.py+30
- opendbc/car/docs_definitions.py+1-1
- opendbc/car/ford/carcontroller.py+1-1
- opendbc/car/ford/carstate.py+3-59
- opendbc/car/ford/radar_interface.py+2-2
- opendbc/car/gm/carcontroller.py+1-1
- opendbc/car/gm/carstate.py+5-42
- opendbc/car/gm/radar_interface.py+2-2
- opendbc/car/honda/carcontroller.py+1-1
- opendbc/car/honda/carstate.py+4-73
- opendbc/car/honda/hondacan.py+18
- opendbc/car/honda/radar_interface.py+2-2
- opendbc/car/hyundai/carcontroller.py+1-1
- opendbc/car/hyundai/carstate.py+8-112
- opendbc/car/hyundai/hyundaican.py+1-1
- opendbc/car/hyundai/hyundaicanfd.py+18
- opendbc/car/hyundai/radar_interface.py+2-2
- opendbc/car/interfaces.py+2-2
- opendbc/car/mazda/carcontroller.py+1-1
- opendbc/car/mazda/carstate.py+4-36
- opendbc/car/nissan/carcontroller.py+1-1
- opendbc/car/nissan/carstate.py+4-61
- opendbc/car/rivian/carcontroller.py+1-1
- opendbc/car/rivian/carstate.py+4-30
- opendbc/car/rivian/radar_interface.py+2-2
- opendbc/car/subaru/carcontroller.py+1-1
- opendbc/car/subaru/carstate.py+4-92
- opendbc/car/subaru/subarucan.py+11
- opendbc/car/tesla/carcontroller.py+1-1
- opendbc/car/tesla/carstate.py+8-25
- opendbc/car/tesla/fingerprints.py+5
- opendbc/car/tesla/interface.py+3-1
- opendbc/car/tesla/teslacan.py+11-1
- opendbc/car/tesla/values.py+4
- opendbc/car/tests/routes.py+1
- opendbc/car/torque_data/override.toml+1
- opendbc/car/toyota/carcontroller.py+1-1
- opendbc/car/toyota/carstate.py+4-67
- opendbc/car/toyota/radar_interface.py+2-2
- opendbc/car/toyota/toyotacan.py+11
- opendbc/car/volkswagen/carcontroller.py+1-1
- opendbc/car/volkswagen/carstate.py+8-104
- opendbc/car/volkswagen/mqbcan.py+89
- opendbc/car/volkswagen/values.py+1-1
- opendbc/safety/tests/common.py+1-1
- opendbc/safety/tests/test_tesla.py+1-1
- pyproject.toml-9
- site_scons/site_tools/cython.py-72
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
190 | 190 | | |
191 | 191 | | |
192 | 192 | | |
193 | | - | |
194 | 193 | | |
195 | 194 | | |
196 | 195 | | |
197 | 196 | | |
198 | 197 | | |
199 | 198 | | |
200 | | - | |
201 | | - | |
202 | | - | |
203 | 199 | | |
204 | | - | |
| 200 | + | |
205 | 201 | | |
206 | 202 | | |
207 | 203 | | |
| |||
320 | 316 | | |
321 | 317 | | |
322 | 318 | | |
323 | | - | |
| 319 | + | |
324 | 320 | | |
325 | 321 | | |
326 | 322 | | |
| |||
339 | 335 | | |
340 | 336 | | |
341 | 337 | | |
| 338 | + | |
| 339 | + | |
342 | 340 | | |
343 | 341 | | |
344 | 342 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | | - | |
| 1 | + | |
2 | 2 | | |
3 | 3 | | |
4 | 4 | | |
| |||
62 | 62 | | |
63 | 63 | | |
64 | 64 | | |
65 | | - | |
| 65 | + | |
66 | 66 | | |
67 | 67 | | |
68 | 68 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | | - | |
| 1 | + | |
2 | 2 | | |
3 | 3 | | |
4 | 4 | | |
| |||
67 | 67 | | |
68 | 68 | | |
69 | 69 | | |
70 | | - | |
| 70 | + | |
71 | 71 | | |
72 | 72 | | |
73 | 73 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | | - | |
| 2 | + | |
3 | 3 | | |
4 | 4 | | |
5 | 5 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
| 1 | + | |
| 2 | + | |
| 3 | + | |
| 4 | + | |
| 5 | + | |
| 6 | + | |
| 7 | + | |
| 8 | + | |
| 9 | + | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
| 13 | + | |
| 14 | + | |
| 15 | + | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
6 | 6 | | |
7 | 7 | | |
8 | 8 | | |
9 | | - | |
| 9 | + | |
10 | 10 | | |
11 | 11 | | |
12 | 12 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | | - | |
| 1 | + | |
0 commit comments