illumiN8i
4b28566837
Add 2020 Corolla XSE AFS option ( #821 )
...
Frank McTank on Discord has XSE with Connectivity Package with Adaptive Front Lighting System option
old-commit-hash: 6edc36181a
6 years ago
illumiN8i
4817e9eb6c
2020 Toyota Prius Prime Limited ( #813 )
...
* 2020 Prius Prime Limited
Fingerprint for 2020 Prius Prime Limited from garglo. 86a0adcb192c9424
* Update README.md
2020 supported
old-commit-hash: 47e87baa60
6 years ago
Vehicle Researcher
dfe603c178
openpilot v0.6.4 release
...
old-commit-hash: 61229779e4
6 years ago
heitikender
77dd050e99
Update values.py ( #797 )
...
changed Lexus ES DBC scheme to hybrid_tss2, since this is the correct one. Tested on car, works.
old-commit-hash: da42760e55
6 years ago
Vehicle Researcher
02cedeadd9
openpilot v0.6.3 release
...
old-commit-hash: d5f9caa82d
6 years ago
Vehicle Researcher
3835061760
openpilot v0.6.2 release
...
old-commit-hash: e90c41c576
6 years ago
Vehicle Researcher
07aa8b1bf3
openpilot v0.6.1 release
...
old-commit-hash: 94053536b4
6 years ago
rbiasini
13482875a6
Use standard steer angle sensor in DSU-less pre-TSS2 Toyota. ( #751 )
...
old-commit-hash: 63da1abe2c
6 years ago
Riccardo
137f94b064
Improve Toyota Highlander tuning from https://github.com/commaai/openpilot/pull/690
...
old-commit-hash: 13bdfcdd95
6 years ago
eFini
6fe71c41c1
fix spacing in toyota/carstate.py ( #736 )
...
old-commit-hash: 03e764bcb3
6 years ago
Nick Brown
4768452d5d
2019 Rav4 Limited AWD ( #732 )
...
* Fingerprint
* Merge Limited and XLE fingerprint because they're the same
old-commit-hash: 16eb74250c
6 years ago
dekerr
ae1fbf70fa
Refactor default Civic params ( #720 )
...
* move civic params out
* fix variable name
* simplify ford scaling
* cleanup
* remove import dependency
* requested changes
* keep hyundai
old-commit-hash: 4a48ef8dbc
6 years ago
Vehicle Researcher
9abcfabc5f
openpilot v0.6 release
...
old-commit-hash: 8a9ed94f5f
6 years ago
TrackZero
4c5c521978
Added fingerprint for 2019 Toyota Prius LE ( #694 )
...
* Adding fingerprint for 2019 Prius LE
old-commit-hash: 68b86c7ca8
6 years ago
Vehicle Researcher
e47a2e6e30
openpilot v0.5.13 release
...
old-commit-hash: dd34ccfe28
6 years ago
Nick Brown
b6fa863d4a
Camry Fingerprint ( #647 )
...
old-commit-hash: 1e8098c140
6 years ago
CAmaninacan1
f23675eedd
Update values.py ( #687 )
...
Added fingerprint for 2019 Highlander XLE
old-commit-hash: b5a88f5700
6 years ago
ChaseCares
1da8299e68
Add 2019 RAV4 XLE fingerprints ( #671 )
...
* Add 2019 RAV4 XLE fingerprints
old-commit-hash: 9278fad15c
6 years ago
Vehicle Researcher
0932b367bd
openpilot v0.5.12 release
...
old-commit-hash: 3f9059fea8
6 years ago
Arne Schwarck
a58234b7bd
1263: 8 for highlander hybrid ( #642 )
...
old-commit-hash: 98797fb24e
6 years ago
Arne Schwarck
1de23f3d10
Add lane departure warning on dashboard for Toyota ( #605 )
...
* Add lane departure alert in controlsd
* Need init values for LDA
* Add lane departure in interface.py
* Include LDA in CarControler
* Add logic for LDA in toyotacan
* Add speed condition and comments for LDA
* Correct right CS.vEgo
* Correct rPoly spelling
* Add left and rightLaneDepart to HUDControl in car.capnp
* Add left and rightLane_Depart in UI function
* set controlsd priority
* revert
* There must be a line to depart from
* Include changes from @pd0wm
* Remove redundant False allocation
leftLaneDepart and rightLaneDepart as False by default according to @pd0wm
* Modify variable names
right_lane_depart and left_lane_depart to conform with python naming convention
* Modify variable names
right_lane_depart and left_lane_depart to conform with python naming convention
* Wrap lane departure warning in one bool
old-commit-hash: f5044670fa
6 years ago
Drew Hintz
3ad68e4378
getting ready for Python 3 ( #619 )
...
* tabs to spaces
python 2 to 3: https://portingguide.readthedocs.io/en/latest/syntax.html#tabs-and-spaces
* use the new except syntax
python 2 to 3: https://portingguide.readthedocs.io/en/latest/exceptions.html#the-new-except-syntax
* make relative imports absolute
python 2 to 3: https://portingguide.readthedocs.io/en/latest/imports.html#absolute-imports
* Queue renamed to queue in python 3
Use the six compatibility library to support both python 2 and 3: https://portingguide.readthedocs.io/en/latest/stdlib-reorg.html#renamed-modules
* replace dict.has_key() with in
python 2 to 3: https://portingguide.readthedocs.io/en/latest/dicts.html#removed-dict-has-key
* make dict views compatible with python 3
python 2 to 3: https://portingguide.readthedocs.io/en/latest/dicts.html#dict-views-and-iterators
Where needed, wrapping things that will be a view in python 3 with a list(). For example, if it's accessed with []
Python 3 has no iter*() methods, so just using the values() instead of itervalues() as long as it's not too performance intensive. Note that any minor performance hit of using a list instead of a view will go away when switching to python 3. If it is intensive, we could use the six version.
* Explicitly use truncating division
python 2 to 3: https://portingguide.readthedocs.io/en/latest/numbers.html#division
python 3 treats / as float division. When we want the result to be an integer, use //
* replace map() with list comprehension where a list result is needed.
In python 3, map() returns an iterator.
python 2 to 3: https://portingguide.readthedocs.io/en/latest/iterators.html#new-behavior-of-map-and-filter
* replace filter() with list comprehension
In python 3, filter() returns an interatoooooooooooor.
python 2 to 3: https://portingguide.readthedocs.io/en/latest/iterators.html#new-behavior-of-map-and-filter
* wrap zip() in list() where we need the result to be a list
python 2 to 3: https://portingguide.readthedocs.io/en/latest/iterators.html#new-behavior-of-zip
* clean out some lint
Removes these pylint warnings:
************* Module selfdrive.car.chrysler.chryslercan
W: 15, 0: Unnecessary semicolon (unnecessary-semicolon)
W: 16, 0: Unnecessary semicolon (unnecessary-semicolon)
W: 25, 0: Unnecessary semicolon (unnecessary-semicolon)
************* Module common.dbc
W:101, 0: Anomalous backslash in string: '\?'. String constant might be missing an r prefix. (anomalous-backslash-in-string)
************* Module selfdrive.car.gm.interface
R:102, 6: Redefinition of ret.minEnableSpeed type from float to int (redefined-variable-type)
R:103, 6: Redefinition of ret.mass type from int to float (redefined-variable-type)
************* Module selfdrive.updated
R: 20, 6: Redefinition of r type from int to str (redefined-variable-type)
old-commit-hash: 9dae0bfac4
6 years ago
Vehicle Researcher
83dfc3ca1f
openpilot v0.5.11 release
...
old-commit-hash: 2f92d577f9
6 years ago
wocsor
0469c872ec
add pedal IDs to a Lexus RXH and Rav4 China ( #604 )
...
old-commit-hash: 58d645cd18
6 years ago
Vehicle Researcher
30f7a33535
openpilot v0.5.10 release
...
old-commit-hash: f74a201edc
6 years ago
Sumit Binnani
dd2bf3ee54
Added new fingerprint for 2018 Camry Hybrid LE ( #560 )
...
* Updated Fingerprint for Camry Hybrid LE
The updated fingerprint is a superset of the previous fingerprint (maybe due to blindspot monitors).
old-commit-hash: 4697568e67
7 years ago
arne182
cadeefa2f3
update @Kumar fingerprint for better recognition ( #554 )
...
old-commit-hash: 6c1f516bb3
7 years ago
Vehicle Researcher
2cc4edde68
openpilot v0.5.9 release
...
old-commit-hash: 0207a97040
7 years ago
Vehicle Researcher
3bde47d556
openpilot v0.5.8 release
...
old-commit-hash: b967da5fc1
7 years ago
arne182
9657cd6300
Update 0x365 for Rav4H from @squall and my observations ( #490 )
...
on stock 00000080fc0008 is the inital value then it changes to a static 00000080fd0008
old-commit-hash: 67e7f6dc3d
7 years ago
ErichMoraga
27c67bcebf
Replaced 60 msg. C-HR print w/ 73 msg. C-HR print ( #467 )
...
Confirmed working, and necessary with @wackojacko Toyota CHR's Kiwi (New Zealand) ICE C-HR.
old-commit-hash: f41cb3b4ec
7 years ago
Vehicle Researcher
f8ce921247
openpilot v0.5.7 release
...
old-commit-hash: 210db686bb
7 years ago
chassdesk
b2829f5265
Add Lexus RX450HL as sub to RX450H ( #458 )
...
Add Lexus RX450HL as sub to RX450H
old-commit-hash: 5c4ae7a2fc
7 years ago
Vehicle Researcher
fdbf213be8
openpilot v0.5.6 release
...
old-commit-hash: 860a48765d
7 years ago
arne182
51791e4e42
0x470 for RAV4H ( #428 )
...
@squall and me have checked the dsu static values for our RAV4H and found that this is similar to the highlander message.
old-commit-hash: 892e14aa92
7 years ago
ErichMoraga
d6728e6b95
Expanded the previously added Chinese RAV4 ( #425 )
...
This came after testing a different trim level. This fingerprint is confirmed working on both.
old-commit-hash: db24b1e838
7 years ago
ErichMoraga
9b4f716f86
Added fingerprint for Chinese RAV4 ( #422 )
...
Confirmed working on 2017-2018 Chinese RAV4 by @Fiftycentsjj
old-commit-hash: b7c029c92c
7 years ago
Willem Melching
1730800495
Improve Toyota radar filtering ( #409 )
...
old-commit-hash: 5501541aa2
7 years ago
Vehicle Researcher
cda78d7547
openpilot v0.5.5 release
...
old-commit-hash: 8f3539a27b
7 years ago
Vehicle Researcher
7062c6dcc4
openpilot v0.5.4 release
...
old-commit-hash: a422246dc3
7 years ago
wocsor
f1f79c58cc
Add XSE trim to fingerprints ( #372 )
...
old-commit-hash: 14b7eadf63
7 years ago
wocsor
1efe62fdce
update CHR fingerprint ( #364 )
...
CHR 2016 fingerprint has more messages
old-commit-hash: 4b2c137489
7 years ago
zeeexsixare
e4c3224133
Tried native Stop and Go on Highlander ICE with no comma pedal: Works! ( #353 )
...
* Trying to make Highlander ICE stop and go
* Making acceleration slow for fuel efficiency
* Removing annoying commanded disengage beep
* Raised accel_max by 50% and commented on chime
* Testing if Highlander ICE can resume follow from 0
* Returned to 1.5 m/s2 for testing stop and go
* Prep for merging upstream
* Prep for upstream merge item #2
* Added Highlander ICE/Hybrid to Stop and Go
Also updated table of vehicles
* Rollback advertising stop and go for Highlanders
* Fix whitespace
old-commit-hash: 50d9c446cf
7 years ago
Vehicle Researcher
e07d32c790
openpilot v0.5.3 release
...
old-commit-hash: 285c52eb69
7 years ago
Vehicle Researcher
b73d457d20
openpilot v0.5.2 release
...
old-commit-hash: 0129a8a4ff
7 years ago
Vehicle Researcher
86d4bbcba6
openpilot v0.5.1 release
...
old-commit-hash: 6f3d10a4c4
7 years ago
Vehicle Researcher
e41a943dd0
openpilot v0.5 release
...
old-commit-hash: de33bc4645
7 years ago
dekerr
df4cfe1580
Small cleanup ( #275 )
...
* mass unit conversions
* flat/explicit conditions
* fix typos
* remove hardcode
* Update README.md
* Update carcontroller.py
old-commit-hash: ce67c75f1f
7 years ago
Vehicle Researcher
405e7c1b02
openpilot v0.4.7.2 release
...
old-commit-hash: 95509a58cd
7 years ago
Vehicle Researcher
242328f92c
openpilot v0.4.7 release
...
old-commit-hash: ae5cb7a0da
7 years ago