Anthony Foerster
1ca5e1c82b
Fix steering oscillations in 2019 RDX ( #22677 )
...
Steering wheel would oscillate quickly when going straight, oscillation
is gone after this modification.
3 years ago
Adeeb Shihadeh
231f74cd23
GM: Switch to AcceleratorPedal2 ( #23376 )
...
* GM: Switch to AcceleratorPedal2
* bump panda
Co-authored-by: Jason Shuler <jshuler@gmail.com>
3 years ago
Matt Barclay
162460ebd8
Toyota: 2020 Highlander Hybrid Engine fingerprint ( #23373 )
3 years ago
Adeeb Shihadeh
24c741ea3d
Toyota: merge Lexus RX params ( #23374 )
...
* Toyota: merge Lexus RX params
* pick tuning
* add those back
3 years ago
Jason Wen
e1805574a8
HKG: Add and Fix FW for 2022 Kia Niro EV ( #23253 )
...
* Remove non-exist esp FW from Niro_EV
* HKG: Add FW for 2022 Kia Niro EV
* Add 2022 Kia Niro EV to STEER_MAX = 384
* Update CARS.md
* HKG: Add FW for 2022 Kia Niro EV
* Remove duplicate FW version
* Remove duplicate FW versions from 0.8.3 FW dump (#20702 )
* Fix FW versions spacing
* Fix FW versions spacing
* Add additional FW version
Co-authored-by: Willem Melching <willem.melching@gmail.com>
3 years ago
Nelson Chen
ab2111adb0
Add firmware from 2021 prius in australia ( #23271 )
...
Discord user khalid.auslink#0024 / shah#3880
FW from: 49708c324cfe37cb%7C2021-12-20--04-14-26
3 years ago
Jason Wen
30e8383f30
HKG: blacklist cars with lower steering max ( #23255 )
...
* HKG: Add Lower Steering Torque Cars to STEER_MAX = 255 Blacklist
* add comment
Co-authored-by: Adeeb Shihadeh <adeebshihadeh@gmail.com>
3 years ago
Jason Wen
bd399693b6
Hyundai: Car Port for 2022 Santa Fe Plug-in Hybrid ( #23332 )
...
* Add car port: Hyundai Santa Fe Plug-in Hybrid 2022
* Add test route
3 years ago
Jason Young
13bf30fdc3
VW MQB: Add FW for 2019 Volkswagen Jetta ( #23306 )
...
* fingerprint 2019 vw jetta sel
* remove duplicate, fix sorting
Co-authored-by: cyanet01 <richard@connectya.com>
3 years ago
Ewout ter Hoeven
332f568a82
Pyupgrade 3.6: Update syntax with Python 3.6+ features ( #23305 )
...
Updated Python code with Python 3.6+ features:
- utf-8 encoding is now the default (PEP 3120)
- Replace list comprehensions by Generator Expressions (PEP 289)
- Replace yield loop by yield from (PEP 380)
- Remove the (object) subclass when defining a class
- Replace the IOError alias by OSError (PEP 3151)
- Define sets with curly braces {} instead of set()
- Remove "r" parameter from open function, which is default
Co-Authored-By: Adeeb Shihadeh <8762862+adeebshihadeh@users.noreply.github.com>
Co-Authored-By: GregorKikelj <96022003+GregorKikelj@users.noreply.github.com>
Co-authored-by: Adeeb Shihadeh <8762862+adeebshihadeh@users.noreply.github.com>
Co-authored-by: GregorKikelj <96022003+GregorKikelj@users.noreply.github.com>
3 years ago
Jason Young
6fd3d50d79
VW MQB: Add FW for 2018 Volkswagen Arteon ( #23303 )
3 years ago
Erich Moraga
b1dfdca982
Add missing HIGHLANDER_TSS2 engine f/w ( #23301 )
...
`@JohnLips#7600` 2022 Highlander Platinum ICE DongleID/route 697a805960f1b2d5|2021-12-23--13-14-37
3 years ago
Erich Moraga
a1ac77310b
Add missing COROLLA_TSS2 ESP & engine f/w ( #23294 )
...
`Sebastiaan#0569` 2020 Corolla Hatch 1.2T XR RHD DongleID/route 567e47e503b36408|2021-12-22--20-44-44
3 years ago
Adeeb Shihadeh
c92199ab1a
Revert "Mazda: alert when LKAS is disabled ( #23273 )"
...
This reverts commit f25121b736
.
3 years ago
Jafar Al-Gharaibeh
f25121b736
Mazda: alert when LKAS is disabled ( #23273 )
...
* Mazda: alert when LKAS is disabled
Signed-off-by: Jafar Al-Gharaibeh <to.jafar@gmail.com>
* Update selfdrive/controls/lib/events.py
* Update selfdrive/car/mazda/interface.py
* bump cereal
Co-authored-by: Adeeb Shihadeh <adeebshihadeh@gmail.com>
3 years ago
Jafar Al-Gharaibeh
cd7db7f48e
Mazda CX-5 2021 FW ( #23270 )
...
dongle id: 661fdb17fa82339c
Signed-off-by: Jafar Al-Gharaibeh <to.jafar@gmail.com>
3 years ago
Jafar Al-Gharaibeh
fc7d152dca
Mazda: CX-5 and 3 FW ( #23267 )
...
* Mazda 3 2017 fw
dongle id: f7fec643f5178df8
Signed-off-by: Jafar Al-Gharaibeh <to.jafar@gmail.com>
* Mazda CX-5 2020 FW
dongle id: f4b488f06d3b7711
Signed-off-by: Jafar Al-Gharaibeh <to.jafar@gmail.com>
3 years ago
HaraldSchafer
cf466222f6
Road Roll Compensation Rebased ( #23251 )
...
* first commit
* update refs
3 years ago
Willem Melching
14bf834fef
Abstract classes inherit from ABC ( #23246 )
3 years ago
Ewout ter Hoeven
55390d273f
Convert format strings strings to f-strings ( #23241 )
...
* Convert all text strings to f-strings
Reformats all the text from the old "%-formatted" and .format(...) format to the newer f-string format, as defined in PEP 498. This requires Python 3.6+.
Flynt 0.69 was used to reformat the strings. 120 f-strings were created in 51 files.
F-strings are in general more readable, concise and performant. See also: https://www.python.org/dev/peps/pep-0498/#rationale
* revert pyextra changes
* revert ublox.py
Co-authored-by: Willem Melching <willem.melching@gmail.com>
3 years ago
Willem Melching
4f1eb4278a
Log actuators after applying rate limits in CarController ( #23230 )
...
* return actuators from carcontroller
* log it
* pass to latcontrol
* chrysler
* gm
* honda
* more brands
* rest of the brands
* gm cleanup
* hyundai cleanup
* update ref
* rename field
* fix subaru
* add types
* more subaru fixes #23240
* consistent whitespace
* bump cereal
3 years ago
martinl
7fd98757b4
Subaru: Add Impreza/Crosstrek 2020 ( #21011 )
...
* Add Subaru Impreza/Crosstrek 2020
* Update selfdrive/test/test_routes.py
Co-authored-by: Adeeb Shihadeh <adeebshihadeh@gmail.com>
3 years ago
Jason Young
a11259929b
VW MQB: Add FW for 2018 Škoda Superb ( #23233 )
3 years ago
martinl
345fe48338
Subaru Pre-Global: Rename ES_CruiseThrottle to ES_Distance ( #23024 )
...
* Rename preglobal ES_CruiseThrottle to ES_Distance
* bump opendbc
Co-authored-by: Adeeb Shihadeh <adeebshihadeh@gmail.com>
3 years ago
Kevin Robert Keegan
245b4d910c
Toyota: Display Blue Barriers When Engaged, Matches OEM Design ( #23150 )
3 years ago
Shane Smiskol
2799ef5292
Remove minSpeedCan ( #22991 )
...
* Remove minCanSpeed
Remove minCanSpeed
* it actually only goes out to 2.5 seconds, this is okay to remove
* test to see if this preserves behavior
add minSpeedCan
* Revert "test to see if this preserves behavior"
This reverts commit 31b11f017f7e9da7654fc8064b5983d4a6cc22e5.
* preserve behavior (don't enter stopping as early)
* vEgoStopping needs to be less than or equal to vEgoStarting to avoid state oscillation
3 years ago
Shane Smiskol
b745a14ff7
version.py: make function names more clear ( #23216 )
...
* rename a few version functions
* and is_prebuilt
* and some formatting 😊
3 years ago
Harald Schafer
44adea73ce
fix max speed comments
3 years ago
Adeeb Shihadeh
1638975627
Merge 2021 Accords into 2018 Accords ( #23174 )
...
* Merge 2021 Accords into 2018 Accords
* last of them
3 years ago
Metalbird1997
809154571a
add fingerprint for European 2018 Toyota C-HR Hybrid ( #23171 )
3 years ago
Willem Melching
0ec68a5a09
0.8.11-release FW batch ( #23167 )
...
* 0.8.11-release FW batch
* those toyota also dont always return esp
* attempt to clean up 2018 & 2021 accord
3 years ago
Harald Schafer
16bf562806
Add TSS2 prius to TSS2 long tunes
3 years ago
Chris McCammon
95c9cb3509
Kia Niro EV fw ( #23159 )
3 years ago
Adeeb Shihadeh
795bdf4c61
remove ford fingerprints ( #23136 )
3 years ago
Adeeb Shihadeh
0283942a95
Honda: use new Bosch LKAS_HUD messages ( #23000 )
...
* Honda: use new Bosch LKAS_HUD messages
* enum value
* better name
* flip that
3 years ago
Jason Wen
fa952f650d
HKG: Add FW for 2022 Kia K5 ( #23131 )
3 years ago
khoi
1f73192695
Add 2021 Toyoto Corolla Cross Non-Hybrid (Thailand version) ( #23123 )
3 years ago
Jason Young
8a4ab7f46d
VW MQB: Audi Q3 Mk2 ( #23128 )
3 years ago
grekiki
6951b3271d
Python: Replace more lists with generators ( #23116 )
...
* Replace lists with generators v2
* Replace set with {}
Co-authored-by: Adeeb Shihadeh <adeebshihadeh@gmail.com>
* Replace more set() with {}
Co-authored-by: Adeeb Shihadeh <adeebshihadeh@gmail.com>
3 years ago
cydia2020
b8c42d01eb
Toyota: remove unused ACCEL_HYST_GAP ( #23121 )
...
* fix typo in comments
* remove hyst gap from values.py
3 years ago
Chris McCammon
9e51befe18
Honda Pilot fw ( #23119 )
3 years ago
Willem Melching
e6180738fd
add CarParams.wheelSpeedFactor ( #23079 )
...
* add CarParams.wheelSpeedFactor
* Fudge speed for Lexus RX
* should have been the TSS2 model
* bump cereal
* refactor into function
* update refs
3 years ago
flightguy2
0ee6f42a8e
2019 Lexus NX FW versions ( #23106 )
3 years ago
HaraldSchafer
316a10bb6b
add tss2 highlander to tss2 tune ( #23107 )
3 years ago
Erich Moraga
4a33d61de0
Add several missing LEXUS_ES_TSS2 firmwares ( #23098 )
...
`@TechGuy#9141` 2021 Lexus ES 350 ICE DongleID/route f9238e084316715b|2021-12-01--19-26-20
3 years ago
HaraldSchafer
eda6993043
Toyota pedal rewrite ( #23067 )
...
* pedal redo
* add offset to compensate for creep and windbrake
* offset in standard units
* wrong size
* better creep values
* update ref
3 years ago
Willem Melching
f7c46c6949
Do not run code on version.py import ( #23063 )
...
* Do not run code on version.py import
* fix athena
3 years ago
Erich Moraga
5abe293f61
Fix comment typo: steerRation -> steerRatio ( #23058 )
3 years ago
Jason Young
adaffb3355
VW MQB: Add FW for 2013 Volkswagen Golf ( #23036 )
3 years ago
Adeeb Shihadeh
f0f7359f6a
mazda: capitalize CX9 like all others cars
3 years ago