Files
dragonpilot/selfdrive/controls/lib
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>
2020-06-03 14:01:32 -07:00
..
2020-05-26 13:27:01 -07:00
2020-01-17 12:48:30 -08:00
2020-01-17 12:48:30 -08:00
2020-03-25 16:57:58 -07:00
2020-05-31 00:48:47 -07:00
2020-05-12 15:06:48 -07:00
2020-03-27 17:02:40 -07:00
2020-01-17 12:48:30 -08:00
2020-06-03 13:47:47 -07:00