import os
import time
import common . numpy_fast as np
from common . realtime import sec_since_boot
import selfdrive . messaging as messaging
from selfdrive . car . honda . can_parser import CANParser
from selfdrive . can . parser import CANParser as CANParserC
NEW_CAN = os . getenv ( " OLD_CAN " ) is None
def get_can_parser ( CP ) :
# this function generates lists for signal, messages and initial values
if CP . carFingerprint == " HONDA CIVIC 2016 TOURING " :
dbc_f = ' honda_civic_touring_2016_can.dbc '
signals = [
# sig_name, sig_address, default
( " XMISSION_SPEED " , 0x158 , 0 ) ,
( " WHEEL_SPEED_FL " , 0x1d0 , 0 ) ,
( " WHEEL_SPEED_FR " , 0x1d0 , 0 ) ,
( " WHEEL_SPEED_RL " , 0x1d0 , 0 ) ,
( " WHEEL_SPEED_RR " , 0x1d0 , 0 ) ,
( " STEER_ANGLE " , 0x14a , 0 ) ,
( " STEER_TORQUE_SENSOR " , 0x18f , 0 ) ,
( " GEAR " , 0x191 , 0 ) ,
( " WHEELS_MOVING " , 0x1b0 , 1 ) ,
( " DOOR_OPEN_FL " , 0x405 , 1 ) ,
( " DOOR_OPEN_FR " , 0x405 , 1 ) ,
( " DOOR_OPEN_RL " , 0x405 , 1 ) ,
( " DOOR_OPEN_RR " , 0x405 , 1 ) ,
( " CRUISE_SPEED_PCM " , 0x324 , 0 ) ,
( " SEATBELT_DRIVER_LAMP " , 0x305 , 1 ) ,
( " SEATBELT_DRIVER_LATCHED " , 0x305 , 0 ) ,
( " BRAKE_PRESSED " , 0x17c , 0 ) ,
( " BRAKE_SWITCH " , 0x17c , 0 ) ,
( " CAR_GAS " , 0x130 , 0 ) ,
( " CRUISE_BUTTONS " , 0x296 , 0 ) ,
( " ESP_DISABLED " , 0x1a4 , 1 ) ,
( " HUD_LEAD " , 0x30c , 0 ) ,
( " USER_BRAKE " , 0x1a4 , 0 ) ,
( " STEER_STATUS " , 0x18f , 5 ) ,
( " BRAKE_ERROR_1 " , 0x1b0 , 1 ) ,
( " BRAKE_ERROR_2 " , 0x1b0 , 1 ) ,
( " GEAR_SHIFTER " , 0x191 , 0 ) ,
( " MAIN_ON " , 0x326 , 0 ) ,
( " ACC_STATUS " , 0x17c , 0 ) ,
( " PEDAL_GAS " , 0x17c , 0 ) ,
( " CRUISE_SETTING " , 0x296 , 0 ) ,
( " LEFT_BLINKER " , 0x326 , 0 ) ,
( " RIGHT_BLINKER " , 0x326 , 0 ) ,
( " COUNTER " , 0x324 , 0 ) ,
( " ENGINE_RPM " , 0x17C , 0 )
]
checks = [
# address, frequency
( 0x14a , 100 ) ,
( 0x158 , 100 ) ,
( 0x17c , 100 ) ,
( 0x191 , 100 ) ,
( 0x1a4 , 50 ) ,
( 0x326 , 10 ) ,
( 0x1b0 , 50 ) ,
( 0x1d0 , 50 ) ,
( 0x305 , 10 ) ,
( 0x324 , 10 ) ,
( 0x405 , 3 ) ,
]
elif CP . carFingerprint == " ACURA ILX 2016 ACURAWATCH PLUS " :
dbc_f = ' acura_ilx_2016_can.dbc '
signals = [
( " XMISSION_SPEED " , 0x158 , 0 ) ,
( " WHEEL_SPEED_FL " , 0x1d0 , 0 ) ,
( " WHEEL_SPEED_FR " , 0x1d0 , 0 ) ,
( " WHEEL_SPEED_RL " , 0x1d0 , 0 ) ,
( " WHEEL_SPEED_RR " , 0x1d0 , 0 ) ,
( " STEER_ANGLE " , 0x156 , 0 ) ,
( " STEER_TORQUE_SENSOR " , 0x18f , 0 ) ,
( " GEAR " , 0x1a3 , 0 ) ,
( " WHEELS_MOVING " , 0x1b0 , 1 ) ,
( " DOOR_OPEN_FL " , 0x405 , 1 ) ,
( " DOOR_OPEN_FR " , 0x405 , 1 ) ,
( " DOOR_OPEN_RL " , 0x405 , 1 ) ,
( " DOOR_OPEN_RR " , 0x405 , 1 ) ,
( " CRUISE_SPEED_PCM " , 0x324 , 0 ) ,
( " SEATBELT_DRIVER_LAMP " , 0x305 , 1 ) ,
( " SEATBELT_DRIVER_LATCHED " , 0x305 , 0 ) ,
( " BRAKE_PRESSED " , 0x17c , 0 ) ,
( " BRAKE_SWITCH " , 0x17c , 0 ) ,
( " CAR_GAS " , 0x130 , 0 ) ,
( " CRUISE_BUTTONS " , 0x1a6 , 0 ) ,
( " ESP_DISABLED " , 0x1a4 , 1 ) ,
( " HUD_LEAD " , 0x30c , 0 ) ,
( " USER_BRAKE " , 0x1a4 , 0 ) ,
( " STEER_STATUS " , 0x18f , 5 ) ,
( " BRAKE_ERROR_1 " , 0x1b0 , 1 ) ,
( " BRAKE_ERROR_2 " , 0x1b0 , 1 ) ,
( " GEAR_SHIFTER " , 0x1a3 , 0 ) ,
( " MAIN_ON " , 0x1a6 , 0 ) ,
( " ACC_STATUS " , 0x17c , 0 ) ,
( " PEDAL_GAS " , 0x17c , 0 ) ,
( " CRUISE_SETTING " , 0x1a6 , 0 ) ,
( " LEFT_BLINKER " , 0x294 , 0 ) ,
( " RIGHT_BLINKER " , 0x294 , 0 ) ,
( " COUNTER " , 0x324 , 0 ) ,
( " ENGINE_RPM " , 0x17C , 0 )
]
checks = [
( 0x156 , 100 ) ,
( 0x158 , 100 ) ,
( 0x17c , 100 ) ,
( 0x1a3 , 50 ) ,
( 0x1a4 , 50 ) ,
( 0x1a6 , 50 ) ,
( 0x1b0 , 50 ) ,
( 0x1d0 , 50 ) ,
( 0x305 , 10 ) ,
( 0x324 , 10 ) ,
( 0x405 , 3 ) ,
]
elif CP . carFingerprint == " HONDA ACCORD 2016 TOURING " :
dbc_f = ' honda_accord_touring_2016_can.dbc '
signals = [
( " XMISSION_SPEED " , 0x158 , 0 ) ,
( " WHEEL_SPEED_FL " , 0x1d0 , 0 ) ,
( " WHEEL_SPEED_FR " , 0x1d0 , 0 ) ,
( " WHEEL_SPEED_RL " , 0x1d0 , 0 ) ,
( " WHEEL_SPEED_RR " , 0x1d0 , 0 ) ,
( " STEER_ANGLE " , 0x156 , 0 ) ,
#("STEER_TORQUE_SENSOR", 0x18f, 0),
( " GEAR " , 0x191 , 0 ) ,
( " WHEELS_MOVING " , 0x1b0 , 1 ) ,
( " DOOR_OPEN_FL " , 0x405 , 1 ) ,
( " DOOR_OPEN_FR " , 0x405 , 1 ) ,
( " DOOR_OPEN_RL " , 0x405 , 1 ) ,
( " DOOR_OPEN_RR " , 0x405 , 1 ) ,
( " CRUISE_SPEED_PCM " , 0x324 , 0 ) ,
( " SEATBELT_DRIVER_LAMP " , 0x305 , 1 ) ,
( " SEATBELT_DRIVER_LATCHED " , 0x305 , 0 ) ,
( " BRAKE_PRESSED " , 0x17c , 0 ) ,
( " BRAKE_SWITCH " , 0x17c , 0 ) ,
#("CAR_GAS", 0x130, 0),
( " PEDAL_GAS " , 0x17C , 0 ) ,
( " CRUISE_BUTTONS " , 0x1a6 , 0 ) ,
( " ESP_DISABLED " , 0x1a4 , 1 ) ,
( " HUD_LEAD " , 0x30c , 0 ) ,
( " USER_BRAKE " , 0x1a4 , 0 ) ,
#("STEER_STATUS", 0x18f, 5),
( " BRAKE_ERROR_1 " , 0x1b0 , 1 ) ,
( " BRAKE_ERROR_2 " , 0x1b0 , 1 ) ,
( " GEAR_SHIFTER " , 0x191 , 0 ) ,
( " MAIN_ON " , 0x1a6 , 0 ) ,
( " ACC_STATUS " , 0x17c , 0 ) ,
( " PEDAL_GAS " , 0x17c , 0 ) ,
( " CRUISE_SETTING " , 0x1a6 , 0 ) ,
( " LEFT_BLINKER " , 0x294 , 0 ) ,
( " RIGHT_BLINKER " , 0x294 , 0 ) ,
( " COUNTER " , 0x324 , 0 ) ,
( " ENGINE_RPM " , 0x17C , 0 )
]
checks = [
( 0x156 , 100 ) ,
( 0x158 , 100 ) ,
( 0x17c , 100 ) ,
( 0x191 , 100 ) ,
( 0x1a4 , 50 ) ,
( 0x1a6 , 50 ) ,
( 0x1b0 , 50 ) ,
( 0x1d0 , 50 ) ,
( 0x305 , 10 ) ,
( 0x324 , 10 ) ,
( 0x405 , 3 ) ,
]
elif CP . carFingerprint == " HONDA CR-V 2016 TOURING " :
dbc_f = ' honda_crv_touring_2016_can.dbc '
signals = [
( " XMISSION_SPEED " , 0x158 , 0 ) ,
( " WHEEL_SPEED_FL " , 0x1d0 , 0 ) ,
( " WHEEL_SPEED_FR " , 0x1d0 , 0 ) ,
( " WHEEL_SPEED_RL " , 0x1d0 , 0 ) ,
( " WHEEL_SPEED_RR " , 0x1d0 , 0 ) ,
( " STEER_ANGLE " , 0x156 , 0 ) ,
( " STEER_TORQUE_SENSOR " , 0x18f , 0 ) ,
( " GEAR " , 0x191 , 0 ) ,
( " WHEELS_MOVING " , 0x1b0 , 1 ) ,
( " DOOR_OPEN_FL " , 0x405 , 1 ) ,
( " DOOR_OPEN_FR " , 0x405 , 1 ) ,
( " DOOR_OPEN_RL " , 0x405 , 1 ) ,
( " DOOR_OPEN_RR " , 0x405 , 1 ) ,
( " CRUISE_SPEED_PCM " , 0x324 , 0 ) ,
( " SEATBELT_DRIVER_LAMP " , 0x305 , 1 ) ,
( " SEATBELT_DRIVER_LATCHED " , 0x305 , 0 ) ,
( " BRAKE_PRESSED " , 0x17c , 0 ) ,
( " BRAKE_SWITCH " , 0x17c , 0 ) ,
#("CAR_GAS", 0x130, 0),
( " CRUISE_BUTTONS " , 0x1a6 , 0 ) ,
( " ESP_DISABLED " , 0x1a4 , 1 ) ,
( " HUD_LEAD " , 0x30c , 0 ) ,
( " USER_BRAKE " , 0x1a4 , 0 ) ,
( " STEER_STATUS " , 0x18f , 5 ) ,
( " BRAKE_ERROR_1 " , 0x1b0 , 1 ) ,
( " BRAKE_ERROR_2 " , 0x1b0 , 1 ) ,
( " GEAR_SHIFTER " , 0x191 , 0 ) ,
( " MAIN_ON " , 0x1a6 , 0 ) ,
( " ACC_STATUS " , 0x17c , 0 ) ,
( " PEDAL_GAS " , 0x17c , 0 ) ,
( " CRUISE_SETTING " , 0x1a6 , 0 ) ,
( " LEFT_BLINKER " , 0x294 , 0 ) ,
( " RIGHT_BLINKER " , 0x294 , 0 ) ,
( " COUNTER " , 0x324 , 0 ) ,
( " ENGINE_RPM " , 0x17C , 0 )
]
checks = [
( 0x156 , 100 ) ,
( 0x158 , 100 ) ,
( 0x17c , 100 ) ,
( 0x191 , 100 ) ,
( 0x1a4 , 50 ) ,
( 0x1a6 , 50 ) ,
( 0x1b0 , 50 ) ,
( 0x1d0 , 50 ) ,
( 0x305 , 10 ) ,
( 0x324 , 10 ) ,
( 0x405 , 3 ) ,
]
# add gas interceptor reading if we are using it
if CP . enableGas :
signals . append ( ( " INTERCEPTOR_GAS " , 0x201 , 0 ) )
checks . append ( ( 0x201 , 50 ) )
if NEW_CAN :
return CANParserC ( os . path . splitext ( dbc_f ) [ 0 ] , signals , checks , 0 )
else :
return CANParser ( dbc_f , signals , checks )
class CarState ( object ) :
def __init__ ( self , CP , logcan ) :
self . civic = False
self . accord = False
self . crv = False
if CP . carFingerprint == " HONDA CIVIC 2016 TOURING " :
self . civic = True
elif CP . carFingerprint == " ACURA ILX 2016 ACURAWATCH PLUS " :
self . civic = False
elif CP . carFingerprint == " HONDA ACCORD 2016 TOURING " :
# fake civic
self . accord = True
elif CP . carFingerprint == " HONDA CR-V 2016 TOURING " :
self . crv = True
else :
raise ValueError ( " unsupported car %s " % CP . carFingerprint )
self . brake_only = CP . enableCruise
self . CP = CP
# initialize can parser
self . cp = get_can_parser ( CP )
self . user_gas , self . user_gas_pressed = 0. , 0
self . cruise_buttons = 0
self . cruise_setting = 0
self . blinker_on = 0
self . left_blinker_on = 0
self . right_blinker_on = 0
# TODO: actually make this work
self . a_ego = 0.
def update ( self , can_pub_main = None ) :
cp = self . cp
if NEW_CAN :
cp . update ( int ( sec_since_boot ( ) * 1e9 ) , False )
else :
cp . update_can ( can_pub_main )
# copy can_valid
self . can_valid = cp . can_valid
# car params
v_weight_v = [ 0. , 1. ] # don't trust smooth speed at low values to avoid premature zero snapping
v_weight_bp = [ 1. , 6. ] # smooth blending, below ~0.6m/s the smooth speed snaps to zero
# update prevs, update must run once per loop
self . prev_cruise_buttons = self . cruise_buttons
self . prev_cruise_setting = self . cruise_setting
self . prev_blinker_on = self . blinker_on
self . prev_left_blinker_on = self . left_blinker_on
self . prev_right_blinker_on = self . right_blinker_on
self . rpm = cp . vl [ 0x17C ] [ ' ENGINE_RPM ' ]
# ******************* parse out can *******************
self . door_all_closed = not any ( [ cp . vl [ 0x405 ] [ ' DOOR_OPEN_FL ' ] , cp . vl [ 0x405 ] [ ' DOOR_OPEN_FR ' ] ,
cp . vl [ 0x405 ] [ ' DOOR_OPEN_RL ' ] , cp . vl [ 0x405 ] [ ' DOOR_OPEN_RR ' ] ] )
self . seatbelt = not cp . vl [ 0x305 ] [ ' SEATBELT_DRIVER_LAMP ' ] and cp . vl [ 0x305 ] [ ' SEATBELT_DRIVER_LATCHED ' ]
# error 2 = temporary
# error 4 = temporary, hit a bump
# error 5 (permanent)
# error 6 = temporary
# error 7 (permanent)
#self.steer_error = cp.vl[0x18F]['STEER_STATUS'] in [5,7]
# whitelist instead of blacklist, safer at the expense of disengages
if self . accord :
self . steer_error = False
self . steer_not_allowed = False
else :
self . steer_error = cp . vl [ 0x18F ] [ ' STEER_STATUS ' ] not in [ 0 , 2 , 4 , 6 ]
self . steer_not_allowed = cp . vl [ 0x18F ] [ ' STEER_STATUS ' ] != 0
if cp . vl [ 0x18F ] [ ' STEER_STATUS ' ] != 0 :
print cp . vl [ 0x18F ] [ ' STEER_STATUS ' ]
self . brake_error = cp . vl [ 0x1B0 ] [ ' BRAKE_ERROR_1 ' ] or cp . vl [ 0x1B0 ] [ ' BRAKE_ERROR_2 ' ]
self . esp_disabled = cp . vl [ 0x1A4 ] [ ' ESP_DISABLED ' ]
# calc best v_ego estimate, by averaging two opposite corners
self . v_wheel = (
cp . vl [ 0x1D0 ] [ ' WHEEL_SPEED_FL ' ] + cp . vl [ 0x1D0 ] [ ' WHEEL_SPEED_FR ' ] +
cp . vl [ 0x1D0 ] [ ' WHEEL_SPEED_RL ' ] + cp . vl [ 0x1D0 ] [ ' WHEEL_SPEED_RR ' ] ) / 4.
# blend in transmission speed at low speed, since it has more low speed accuracy
self . v_weight = np . interp ( self . v_wheel , v_weight_bp , v_weight_v )
self . v_ego = ( 1. - self . v_weight ) * cp . vl [ 0x158 ] [ ' XMISSION_SPEED ' ] + self . v_weight * self . v_wheel
if self . CP . enableGas :
# this is a hack
self . user_gas = cp . vl [ 0x201 ] [ ' INTERCEPTOR_GAS ' ]
self . user_gas_pressed = self . user_gas > 0 # this works because interceptor read < 0 when pedal position is 0. Once calibrated, this will change
#print self.user_gas, self.user_gas_pressed
if self . civic :
self . gear_shifter = cp . vl [ 0x191 ] [ ' GEAR_SHIFTER ' ]
self . angle_steers = cp . vl [ 0x14A ] [ ' STEER_ANGLE ' ]
self . gear = 0 # TODO: civic has CVT... needs rev engineering
self . cruise_setting = cp . vl [ 0x296 ] [ ' CRUISE_SETTING ' ]
self . cruise_buttons = cp . vl [ 0x296 ] [ ' CRUISE_BUTTONS ' ]
self . main_on = cp . vl [ 0x326 ] [ ' MAIN_ON ' ]
self . gear_shifter_valid = self . gear_shifter in [ 1 , 8 ] # TODO: 1/P allowed for debug
self . blinker_on = cp . vl [ 0x326 ] [ ' LEFT_BLINKER ' ] or cp . vl [ 0x326 ] [ ' RIGHT_BLINKER ' ]
self . left_blinker_on = cp . vl [ 0x326 ] [ ' LEFT_BLINKER ' ]
self . right_blinker_on = cp . vl [ 0x326 ] [ ' RIGHT_BLINKER ' ]
elif self . accord :
self . gear_shifter = cp . vl [ 0x191 ] [ ' GEAR_SHIFTER ' ]
self . angle_steers = cp . vl [ 0x156 ] [ ' STEER_ANGLE ' ]
self . gear = 0 # TODO: accord has CVT... needs rev engineering
self . cruise_setting = cp . vl [ 0x1A6 ] [ ' CRUISE_SETTING ' ]
self . cruise_buttons = cp . vl [ 0x1A6 ] [ ' CRUISE_BUTTONS ' ]
self . main_on = cp . vl [ 0x1A6 ] [ ' MAIN_ON ' ]
self . gear_shifter_valid = self . gear_shifter in [ 1 , 8 ] # TODO: 1/P allowed for debug
self . blinker_on = cp . vl [ 0x294 ] [ ' LEFT_BLINKER ' ] or cp . vl [ 0x294 ] [ ' RIGHT_BLINKER ' ]
self . left_blinker_on = cp . vl [ 0x294 ] [ ' LEFT_BLINKER ' ]
self . right_blinker_on = cp . vl [ 0x294 ] [ ' RIGHT_BLINKER ' ]
elif self . crv :
self . gear_shifter = cp . vl [ 0x191 ] [ ' GEAR_SHIFTER ' ]
self . angle_steers = cp . vl [ 0x156 ] [ ' STEER_ANGLE ' ]
self . gear = cp . vl [ 0x191 ] [ ' GEAR ' ]
self . cruise_setting = cp . vl [ 0x1A6 ] [ ' CRUISE_SETTING ' ]
self . cruise_buttons = cp . vl [ 0x1A6 ] [ ' CRUISE_BUTTONS ' ]
self . main_on = cp . vl [ 0x1A6 ] [ ' MAIN_ON ' ]
self . gear_shifter_valid = self . gear_shifter in [ 1 , 8 ] # TODO: 1/P allowed for debug
self . blinker_on = cp . vl [ 0x294 ] [ ' LEFT_BLINKER ' ] or cp . vl [ 0x294 ] [ ' RIGHT_BLINKER ' ]
self . left_blinker_on = cp . vl [ 0x294 ] [ ' LEFT_BLINKER ' ]
self . right_blinker_on = cp . vl [ 0x294 ] [ ' RIGHT_BLINKER ' ]
else :
self . gear_shifter = cp . vl [ 0x1A3 ] [ ' GEAR_SHIFTER ' ]
self . angle_steers = cp . vl [ 0x156 ] [ ' STEER_ANGLE ' ]
self . gear = cp . vl [ 0x1A3 ] [ ' GEAR ' ]
self . cruise_setting = cp . vl [ 0x1A6 ] [ ' CRUISE_SETTING ' ]
self . cruise_buttons = cp . vl [ 0x1A6 ] [ ' CRUISE_BUTTONS ' ]
self . main_on = cp . vl [ 0x1A6 ] [ ' MAIN_ON ' ]
self . gear_shifter_valid = self . gear_shifter in [ 1 , 4 ] # TODO: 1/P allowed for debug
self . blinker_on = cp . vl [ 0x294 ] [ ' LEFT_BLINKER ' ] or cp . vl [ 0x294 ] [ ' RIGHT_BLINKER ' ]
self . left_blinker_on = cp . vl [ 0x294 ] [ ' LEFT_BLINKER ' ]
self . right_blinker_on = cp . vl [ 0x294 ] [ ' RIGHT_BLINKER ' ]
if self . accord :
# on the accord, this doesn't seem to include cruise control
self . car_gas = cp . vl [ 0x17C ] [ ' PEDAL_GAS ' ]
self . steer_override = False
elif self . crv :
# like accord, crv doesn't include cruise control
self . car_gas = cp . vl [ 0x17C ] [ ' PEDAL_GAS ' ]
self . steer_override = abs ( cp . vl [ 0x18F ] [ ' STEER_TORQUE_SENSOR ' ] ) > 1200
else :
self . car_gas = cp . vl [ 0x130 ] [ ' CAR_GAS ' ]
self . steer_override = abs ( cp . vl [ 0x18F ] [ ' STEER_TORQUE_SENSOR ' ] ) > 1200
self . brake_pressed = cp . vl [ 0x17C ] [ ' BRAKE_PRESSED ' ] or cp . vl [ 0x17C ] [ ' BRAKE_SWITCH ' ]
self . user_brake = cp . vl [ 0x1A4 ] [ ' USER_BRAKE ' ]
self . standstill = not cp . vl [ 0x1B0 ] [ ' WHEELS_MOVING ' ]
self . v_cruise_pcm = cp . vl [ 0x324 ] [ ' CRUISE_SPEED_PCM ' ]
self . pcm_acc_status = cp . vl [ 0x17C ] [ ' ACC_STATUS ' ]
self . pedal_gas = cp . vl [ 0x17C ] [ ' PEDAL_GAS ' ]
self . hud_lead = cp . vl [ 0x30C ] [ ' HUD_LEAD ' ]
self . counter_pcm = cp . vl [ 0x324 ] [ ' COUNTER ' ]