#!/usr/bin/env python
import os
import zmq
import time
from selfdrive . can . parser import CANParser
from cereal import car
from common . realtime import sec_since_boot
from selfdrive . services import service_list
import selfdrive . messaging as messaging
from selfdrive . car . toyota . values import NO_DSU_CAR
RADAR_A_MSGS = list ( range ( 0x210 , 0x220 ) )
RADAR_B_MSGS = list ( range ( 0x220 , 0x230 ) )
def _create_radard_can_parser ( ) :
dbc_f = ' toyota_prius_2017_adas.dbc '
msg_a_n = len ( RADAR_A_MSGS )
msg_b_n = len ( RADAR_B_MSGS )
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)
6 years ago
signals = list ( zip (
[ ' LONG_DIST ' ] * msg_a_n + [ ' NEW_TRACK ' ] * msg_a_n + [ ' LAT_DIST ' ] * msg_a_n +
[ ' REL_SPEED ' ] * msg_a_n + [ ' VALID ' ] * msg_a_n + [ ' SCORE ' ] * msg_b_n ,
RADAR_A_MSGS * 5 + RADAR_B_MSGS ,
[ 255 ] * msg_a_n + [ 1 ] * msg_a_n + [ 0 ] * msg_a_n + [ 0 ] * msg_a_n + [ 0 ] * msg_a_n + [ 0 ] * msg_b_n ) )
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)
6 years ago
checks = list ( zip ( RADAR_A_MSGS + RADAR_B_MSGS , [ 20 ] * ( msg_a_n + msg_b_n ) ) )
return CANParser ( os . path . splitext ( dbc_f ) [ 0 ] , signals , checks , 1 )
class RadarInterface ( object ) :
def __init__ ( self , CP ) :
# radar
self . pts = { }
self . valid_cnt = { key : 0 for key in RADAR_A_MSGS }
self . track_id = 0
self . delay = 0.0 # Delay of radar
self . rcp = _create_radard_can_parser ( )
self . no_dsu_car = CP . carFingerprint in NO_DSU_CAR
context = zmq . Context ( )
self . logcan = messaging . sub_sock ( context , service_list [ ' can ' ] . port )
def update ( self ) :
ret = car . RadarState . new_message ( )
if self . no_dsu_car :
# TODO: make a adas dbc file for dsu-less models
time . sleep ( 0.05 )
return ret
canMonoTimes = [ ]
updated_messages = set ( )
while 1 :
tm = int ( sec_since_boot ( ) * 1e9 )
updated_messages . update ( self . rcp . update ( tm , True ) )
if RADAR_B_MSGS [ - 1 ] in updated_messages :
break
errors = [ ]
if not self . rcp . can_valid :
errors . append ( " commIssue " )
ret . errors = errors
ret . canMonoTimes = canMonoTimes
for ii in updated_messages :
if ii in RADAR_A_MSGS :
cpt = self . rcp . vl [ ii ]
if cpt [ ' LONG_DIST ' ] > = 255 or cpt [ ' NEW_TRACK ' ] :
self . valid_cnt [ ii ] = 0 # reset counter
if cpt [ ' VALID ' ] and cpt [ ' LONG_DIST ' ] < 255 :
self . valid_cnt [ ii ] + = 1
else :
self . valid_cnt [ ii ] = max ( self . valid_cnt [ ii ] - 1 , 0 )
score = self . rcp . vl [ ii + 16 ] [ ' SCORE ' ]
# print ii, self.valid_cnt[ii], score, cpt['VALID'], cpt['LONG_DIST'], cpt['LAT_DIST']
# radar point only valid if it's a valid measurement and score is above 50
if cpt [ ' VALID ' ] or ( score > 50 and cpt [ ' LONG_DIST ' ] < 255 and self . valid_cnt [ ii ] > 0 ) :
if ii not in self . pts or cpt [ ' NEW_TRACK ' ] :
self . pts [ ii ] = car . RadarState . RadarPoint . new_message ( )
self . pts [ ii ] . trackId = self . track_id
self . track_id + = 1
self . pts [ ii ] . dRel = cpt [ ' LONG_DIST ' ] # from front of car
self . pts [ ii ] . yRel = - cpt [ ' LAT_DIST ' ] # in car frame's y axis, left is positive
self . pts [ ii ] . vRel = cpt [ ' REL_SPEED ' ]
self . pts [ ii ] . aRel = float ( ' nan ' )
self . pts [ ii ] . yvRel = float ( ' nan ' )
self . pts [ ii ] . measured = bool ( cpt [ ' VALID ' ] )
else :
if ii in self . pts :
del self . pts [ ii ]
ret . points = self . pts . values ( )
return ret
if __name__ == " __main__ " :
RI = RadarInterface ( None )
while 1 :
ret = RI . update ( )
print ( chr ( 27 ) + " [2J " )
print ( ret )