17fc7e2bec 
								
							
								 
							
						 
						
							
							
								
								Add alert while in preEnabled state ( #1791 )  
							
							... 
							
							
 
							
							old-commit-hash: ce80684f7e 
							
						 
						
							5 years ago  
				
					
						
							
							
								 
						
							
							
								5f97bf6056 
								
							
								 
							
						 
						
							
							
								
								fix wrong car mode alert  
							
							... 
							
							
 
							
							old-commit-hash: 5e254da8b3 
							
						 
						
							5 years ago  
				
					
						
							
							
								 
						
							
							
								55225dcd56 
								
							
								 
							
						 
						
							
							
								
								Block lane change start on blindspot detection ( #1712 )  
							
							... 
							
							
 
							
							* use BSM to block lane change start
* remove duplicate entry
* add approaching
old-commit-hash: c4a3d7afb0 
							
						 
						
							5 years ago  
				
					
						
							
							
								 
						
							
							
								9bca4bfb20 
								
							
								 
							
						 
						
							
							
								
								recover EON/C2 AF ( #1665 )  
							
							... 
							
							
 
							
							old-commit-hash: 3aa99a01d7 
							
						 
						
							5 years ago  
				
					
						
							
							
								 
						
							
							
								ab66589a46 
								
							
								 
							
						 
						
							
							
								
								fix engage/disengage sounds  
							
							... 
							
							
 
							
							old-commit-hash: 51b7dc0e38 
							
						 
						
							5 years ago  
				
					
						
							
							
								 
						
							
							
								d66c6202bb 
								
							
								 
							
						 
						
							
							
								
								more generic alert text for wrongCarMode  
							
							... 
							
							
 
							
							old-commit-hash: cab96374c5 
							
						 
						
							5 years ago  
				
					
						
							
							
								 
						
							
							
								e8ced8bee5 
								
							
								 
							
						 
						
							
							
								
								Cleanup startup event handling ( #1748 )  
							
							... 
							
							
 
							
							* cleanup startup event
* always show permanent
* lowest
* update refs
old-commit-hash: ccf6b80c7e 
							
						 
						
							5 years ago  
				
					
						
							
							
								 
						
							
							
								b32859413f 
								
							
								 
							
						 
						
							
							
								
								hwType is in health  
							
							... 
							
							
 
							
							old-commit-hash: fd8514eee3 
							
						 
						
							5 years ago  
				
					
						
							
							
								 
						
							
							
								a8edabe453 
								
							
								 
							
						 
						
							
							
								
								if sky visible  
							
							... 
							
							
 
							
							old-commit-hash: e892d6a9d9 
							
						 
						
							5 years ago  
				
					
						
							
							
								 
						
							
							
								fb4bdf8c24 
								
							
								 
							
						 
						
							
							
								
								update no GPS alert for comma two users  
							
							... 
							
							
 
							
							old-commit-hash: b3101998ed 
							
						 
						
							5 years ago  
				
					
						
							
							
								 
						
							
							
								092cb5a021 
								
							
								 
							
						 
						
							
							
								
								NEOS update required alert ( #1722 )  
							
							... 
							
							
 
							
							* NEOS update required
* permanent alert
* bump cereal
old-commit-hash: 6c156d7f45 
							
						 
						
							5 years ago  
				
					
						
							
							
								 
						
							
							
								b16559c4a0 
								
							
								 
							
						 
						
							
							
								
								Block entry on non-adaptive cruise mode ( #1708 )  
							
							... 
							
							
 
							
							* block entry on non-adaptive cruise mode
* user disable
* toyota
old-commit-hash: 25688f36cc 
							
						 
						
							5 years ago  
				
					
						
							
							
								 
						
							
							
								1dfa960485 
								
							
								 
							
						 
						
							
							
								
								bump cereal  
							
							... 
							
							
 
							
							old-commit-hash: 9e34ed4e8c 
							
						 
						
							5 years ago  
				
					
						
							
							
								 
						
							
							
								f008dc9f61 
								
							
								 
							
						 
						
							
							
								
								bump cereal  
							
							... 
							
							
 
							
							old-commit-hash: 92c29c4269 
							
						 
						
							5 years ago  
				
					
						
							
							
								 
						
							
							
								415c336c41 
								
							
								 
							
						 
						
							
							
								
								no gps warning after 5 minutes ( #1692 )  
							
							... 
							
							
 
							
							old-commit-hash: 684f7b2cc0 
							
						 
						
							5 years ago  
				
					
						
							
							
								 
						
							
							
								f396864fab 
								
							
								 
							
						 
						
							
							
								
								Delay alert creation for some events ( #1689 )  
							
							... 
							
							
 
							
							* add creation delay parameter to alerts
* 1s delay for sensorsInvalid and canError
* bump cereal
* update refs
old-commit-hash: 0bbe870b5f 
							
						 
						
							5 years ago  
				
					
						
							
							
								 
						
							
							
								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  
				
					
						
							
							
								 
						
							
							
								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  
				
					
						
							
							
								 
						
							
							
								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  
				
					
						
							
							
								 
						
							
							
								a749ebb1c4 
								
							
								 
							
						 
						
							
							
								
								speedTooHigh should not be an immediate disable  
							
							... 
							
							
 
							
							old-commit-hash: 205cb04ee9 
							
						 
						
							5 years ago  
				
					
						
							
							
								 
						
							
							
								2feaebfc80 
								
							
								 
							
						 
						
							
							
								
								break canError into two separate events  
							
							... 
							
							
 
							
							old-commit-hash: 916448af25 
							
						 
						
							6 years ago  
				
					
						
							
							
								 
						
							
							
								5ab1d48f90 
								
							
								 
							
						 
						
							
							
								
								Fix below steer speed alert text not updating  
							
							... 
							
							
 
							
							old-commit-hash: 7961d5ffd7 
							
						 
						
							6 years ago  
				
					
						
							
							
								 
						
							
							
								4061f1d530 
								
							
								 
							
						 
						
							
							
								
								Add permanent CAN error alert ( #1549 )  
							
							... 
							
							
 
							
							* Add permanent CAN error alert
* canValid needs some time to initialize
* update ref
old-commit-hash: fcf879d783 
							
						 
						
							6 years ago  
				
					
						
							
							
								 
						
							
							
								ce310f3f65 
								
							
								 
							
						 
						
							
							
								
								Revert "Add permanent CAN error alert"  
							
							... 
							
							
 
							
							This reverts commit 41dfb2a149788a19eb1ee40a3497f2ab35386b74.
old-commit-hash: e6f24f2390 
							
						 
						
							6 years ago  
				
					
						
							
							
								 
						
							
							
								5e4ada7249 
								
							
								 
							
						 
						
							
							
								
								Add permanent CAN error alert  
							
							... 
							
							
 
							
							old-commit-hash: 0abf99dbe0 
							
						 
						
							6 years ago  
				
					
						
							
							
								 
						
							
							
								12d3366c55 
								
							
								 
							
						 
						
							
							
								
								Add percent sign to calibration screen  
							
							... 
							
							
 
							
							old-commit-hash: 517826c1e1 
							
						 
						
							6 years ago  
				
					
						
							
							
								 
						
							
							
								8189186d8e 
								
							
								 
							
						 
						
							
							
								
								Alert callback functions were returning tuples  
							
							... 
							
							
 
							
							old-commit-hash: c18891b936 
							
						 
						
							6 years ago  
				
					
						
							
							
								 
						
							
							
								a6676b8a62 
								
							
								 
							
						 
						
							
							
								
								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
old-commit-hash: c85b174584 
							
						 
						
							6 years ago  
				
					
						
							
							
								 
						
							
							
								380d1e4f3d 
								
							
								 
							
						 
						
							
							
								
								Fix two event names  
							
							... 
							
							
 
							
							old-commit-hash: 631d0d94d3 
							
						 
						
							6 years ago  
				
					
						
							
							
								 
						
							
							
								48340cc8cb 
								
							
								 
							
						 
						
							
							
								
								Alerts + Events refactor ( #1466 )  
							
							... 
							
							
 
							
							old-commit-hash: d976233f69 
							
						 
						
							6 years ago