Adeeb
0bbe870b5f
Delay alert creation for some events ( #1689 )
...
* add creation delay parameter to alerts
* 1s delay for sensorsInvalid and canError
* bump cereal
* update refs
5 years ago
Jafar Al-Gharaibeh
73db079199
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>
5 years ago
Adeeb
165bcf1f31
Fix speed too low ( #1627 )
...
* fix speed too low
* bump ref
Co-authored-by: Willem Melching <willem.melching@gmail.com>
5 years ago
Willem Melching
843a64c72f
Make pylint more strict ( #1626 )
...
* make pylint more strict
* cleanup in progress
* done cleaning up
* no opendbc
5 years ago
Willem Melching
205cb04ee9
speedTooHigh should not be an immediate disable
5 years ago
Adeeb Shihadeh
916448af25
break canError into two separate events
5 years ago
Adeeb Shihadeh
7961d5ffd7
Fix below steer speed alert text not updating
5 years ago
Willem Melching
fcf879d783
Add permanent CAN error alert ( #1549 )
...
* Add permanent CAN error alert
* canValid needs some time to initialize
* update ref
5 years ago
Willem Melching
e6f24f2390
Revert "Add permanent CAN error alert"
...
This reverts commit 0abf99dbe0
.
5 years ago
Willem Melching
0abf99dbe0
Add permanent CAN error alert
5 years ago
Willem Melching
517826c1e1
Add percent sign to calibration screen
5 years ago
Willem Melching
c18891b936
Alert callback functions were returning tuples
5 years ago
Willem Melching
c85b174584
White panda is deprecated ( #1516 )
...
* Start white panda deprecation
* Unify alert text
* Add noentry
* Change to no longer supported
* panda is lowercase
* Capitalize
* rerun ci
5 years ago
Willem Melching
631d0d94d3
Fix two event names
5 years ago
Adeeb
d976233f69
Alerts + Events refactor ( #1466 )
5 years ago