Greg Hogan
5db2854138
ensure mkdirs_exists_ok is not called for URLs
...
old-commit-hash: 7bf9b04570
5 years ago
Dean Lee
36ee93e0fe
remove function is_leon ( #1660 )
...
old-commit-hash: 5fdb60d43e
5 years ago
Adeeb
daea932130
Release cleanup ( #1649 )
...
* start cleanup
* whitelist submodule release files
* don't need to ship tests
* revert changes to build script
* add those tests back
* fix typo
* whitelist dbcs
* test
* run the right test
* whitelist opendbc/can
* revert that
* add missing dotfiles
* clean up
* ford DBCs
Co-authored-by: Comma Device <device@comma.ai>
old-commit-hash: c24a7e248a
5 years ago
xx979xx
4aa1d21bde
fix auto resume logic ( #1657 )
...
old-commit-hash: c8377131dc
5 years ago
Adeeb Shihadeh
bf8277dfa9
bump submodules
...
old-commit-hash: 4509ee7247
5 years ago
Adeeb Shihadeh
d7d8f3091b
clean up webcam readme
...
old-commit-hash: c6bd187450
5 years ago
HaraldSchafer
5df437cb14
More rigorous definition of calibration
...
old-commit-hash: 5106117525
5 years ago
George Hotz
4b6c80336b
Getting PC openpilot working again ( #1650 )
...
* fixup keras_runner to work and be nicer
* truncate the lane lines based on the valid len
old-commit-hash: 7770041f92
5 years ago
Willem Melching
d0f60029cb
Remove slow down for turns ( #1647 )
...
* Remove slow down for turns
* update ref
old-commit-hash: 15dc6044d4
5 years ago
dependabot-preview[bot]
2870f8d1d6
Create Dependabot config file ( #1648 )
...
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
old-commit-hash: 8c346dfae5
5 years ago
Dean Lee
92b5c00d0e
ui.cc: remove variables from UIScene, use event::Reader to get data ( #1585 )
...
* use struct to store lead status
* remove white space
* use RadarState::LeadData::Reader
* use reader to get thermal data
* use reader
* continue
* remove variables
reset submodules,fix some errors
reset submodules
revert
* remove s->scene.gps_planner_active
* modify
* cleanup
* done
* resolve conflict
* remove irrelevant comment
* remove white space
old-commit-hash: d720f28ecb
5 years ago
Willem Melching
5c30b96932
boardd: no conflate on sendcan ( #1645 )
...
old-commit-hash: 19512315ff
5 years ago
Jason Young
ebed52527b
Reduce scheduler latency for realtime processes ( #1638 )
...
* WIP: reduce boardd and other lags
* Copypasta fault
* Silence spurious startup warning
Co-authored-by: Comma Device <device@comma.ai>
old-commit-hash: 68531b071c
5 years ago
Willem Melching
b831619ec6
use pipenv for dev dependencies
...
old-commit-hash: 72cc0fc801
5 years ago
Adeeb Shihadeh
35fe5fa31b
remove trailing whitespace pre-commi hook for now
...
old-commit-hash: c454bff2f8
5 years ago
Adeeb
16c0bc99b2
Remove common/messaging.h ( #1635 )
...
* remove common/messaging.h
* release files
old-commit-hash: 7666d99694
5 years ago
Dean Lee
f7ffc61c52
pass subframes_map by refer ( #1640 )
...
old-commit-hash: 5f58307153
5 years ago
Dean Lee
bbafa5a72d
pass DMonitoringResult as referer ( #1639 )
...
old-commit-hash: c7ff6dd194
5 years ago
Adeeb Shihadeh
f69483e094
quick LGTM fixes
...
old-commit-hash: 3463f1165e
5 years ago
Willem Melching
ce6dd8d4e9
Model + camerad test ( #1622 )
...
* kind of works
* move that
* hack to get camerad to reliably terminate
* not sure why SIGTERM wasn't working before
* compare bytes
* clean up some hacks
* gitignore
* fix that
* WIP
* no reboot
* comparison works
* pretty print
* fix build
* run in jenkins
* python path
* space
* raise timeout
* new eon
* skip the copy
* spinner
* spin less
* update model ref commit
* reenable that
* clean up
* fix jenkinsfile
* parallel
* wrap it in a stage
* fix linter
* better progress
* lower timeout
Co-authored-by: Comma Device <device@comma.ai>
Co-authored-by: Adeeb Shihadeh <adeebshihadeh@gmail.com>
old-commit-hash: 63c8e8439b
5 years ago
Adeeb Shihadeh
3d848e0d9e
update run_docker_tests.sh
...
old-commit-hash: 7db4e5bd05
5 years ago
Adeeb Shihadeh
962cdac3b1
pre-commit also handles pylint
...
old-commit-hash: 966e2d4154
5 years ago
Adeeb Shihadeh
e60e71c6da
pre-commit handles flake8 now
...
old-commit-hash: 355159f04a
5 years ago
Willem Melching
55c3a89421
slow down upload check when offroad ( #1634 )
...
old-commit-hash: f4e8df7ee6
5 years ago
Adeeb
9027018368
Update Flake8 config ( #1624 )
...
* update flake8 checks
* add E502
* no whitespace warnings
* fix violations
* no W391
Co-authored-by: Jason Young <jason@comma.ai>
old-commit-hash: 367155168a
5 years ago
VirtuallyChris
dd16cd5d56
add Rav4_TSS2 engine fw
...
old-commit-hash: eebdf52ff5
5 years ago
George Hotz
69678ee181
calloc an extra byte in read_file
...
old-commit-hash: f19d25dd8d
5 years ago
George Hotz
669977eb1f
save valid_len
...
old-commit-hash: 4e7fe3a9ec
5 years ago
Jafar Al-Gharaibeh
bbe43de357
Fix rounding of minSteerSpeed in events ( #1620 )
...
I thought I was missing a rounding in Mazda code, but it turned
out to be a missing rounding after the recent event refactoring
Python3 interpreter:
>>> print(" %d %d" % (1.6,1.4))
1 1
>>> print(" %d %d" % (round(1.6),round(1.4)))
2 1
>>> print(" %d %d" % (int(round(1.6)),round(1.4)))
2 1
>>> print(" %d %d" % (int(round(1.6)),int(round(1.4))))
2 1
Signed-off-by: Jafar Al-Gharaibeh <to.jafar@gmail.com>
old-commit-hash: 73db079199
5 years ago
George Hotz
cca6ac0599
bump cereal
...
old-commit-hash: c76cf53175
5 years ago
Willem Melching
dbdbef72d6
vehicle model types ( #1631 )
...
old-commit-hash: 2400417084
5 years ago
Adeeb
d035394ce7
Add pre-commit hooks ( #1629 )
...
old-commit-hash: ab83e48ec4
5 years ago
Willem Melching
e6cf5883b1
update rednose
...
old-commit-hash: 2144154c32
5 years ago
George Hotz
710710364d
fetch image from route script
...
old-commit-hash: d1d2984f36
5 years ago
Willem Melching
db4a918c2a
Bounds checks on liveParameters for testing on desk
...
old-commit-hash: 0f20ac728f
5 years ago
Willem Melching
c8d5b49a44
Paramsd can now be killed normally
...
old-commit-hash: e3ffdf3647
5 years ago
Willem Melching
adc846c1fd
run deleter when offroad
...
old-commit-hash: 6e0bb25ab4
5 years ago
Willem Melching
ad66386877
locationd profiling ( #1625 )
...
old-commit-hash: 66455b075d
5 years ago
Adeeb
8c0971086b
Fix speed too low ( #1627 )
...
* fix speed too low
* bump ref
Co-authored-by: Willem Melching <willem.melching@gmail.com>
old-commit-hash: 165bcf1f31
5 years ago
Willem Melching
1d1e58eeb1
bump submodules
...
old-commit-hash: 60620fe773
5 years ago
Willem Melching
a56e2b01f8
Make pylint more strict ( #1626 )
...
* make pylint more strict
* cleanup in progress
* done cleaning up
* no opendbc
old-commit-hash: 843a64c72f
5 years ago
Adeeb Shihadeh
a03da046c3
clean up release files
...
old-commit-hash: 676d0901e5
5 years ago
Willem Melching
2deddf76c7
bump opendbc + rednose
...
old-commit-hash: 8fa6846c75
5 years ago
Willem Melching
3ac6adc393
Turn Jenkins CPU test back on ( #1617 )
...
* run cpu test again
* Update cpu values
* Locationd can be more too
* Give some updater allowance
* Just remove updated
old-commit-hash: b042ac034e
5 years ago
Harald Schafer
8dbb5baa5a
new laika
...
old-commit-hash: 73b6eb4829
5 years ago
VirtuallyChris
ed4709c1d2
Add Putty key
...
old-commit-hash: 68040408da
5 years ago
Willem Melching
f9036398e8
ui.cc: read_db_value is not null terminated
...
old-commit-hash: 884b327374
5 years ago
Willem Melching
a749ebb1c4
speedTooHigh should not be an immediate disable
...
old-commit-hash: 205cb04ee9
5 years ago
Willem Melching
2bc6a34ee5
fix flake8 error in honda carstate
...
old-commit-hash: 0a5bb88ca2
5 years ago
Willem Melching
b9183cd05c
bump opendbc with hrv gas signal
...
old-commit-hash: 5b8f025fb0
5 years ago