2020-01-18 04:48:30 +08:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
import os
|
|
|
|
from cereal import car, log
|
|
|
|
from common.numpy_fast import clip
|
2020-10-03 08:18:18 +08:00
|
|
|
from common.realtime import sec_since_boot, config_realtime_process, Priority, Ratekeeper, DT_CTRL
|
2020-01-18 04:48:30 +08:00
|
|
|
from common.profiler import Profiler
|
2020-04-01 03:09:38 +08:00
|
|
|
from common.params import Params, put_nonblocking
|
2020-01-18 04:48:30 +08:00
|
|
|
import cereal.messaging as messaging
|
|
|
|
from selfdrive.config import Conversions as CV
|
2021-02-02 05:41:04 +08:00
|
|
|
from selfdrive.swaglog import cloudlog
|
2020-01-18 04:48:30 +08:00
|
|
|
from selfdrive.boardd.boardd import can_list_to_can_capnp
|
2020-07-29 14:52:18 +08:00
|
|
|
from selfdrive.car.car_helpers import get_car, get_startup_event, get_one_can
|
2020-01-18 04:48:30 +08:00
|
|
|
from selfdrive.controls.lib.lane_planner import CAMERA_OFFSET
|
2020-05-15 06:21:21 +08:00
|
|
|
from selfdrive.controls.lib.drive_helpers import update_v_cruise, initialize_v_cruise
|
2020-01-18 04:48:30 +08:00
|
|
|
from selfdrive.controls.lib.longcontrol import LongControl, STARTING_TARGET_SPEED
|
|
|
|
from selfdrive.controls.lib.latcontrol_pid import LatControlPID
|
|
|
|
from selfdrive.controls.lib.latcontrol_indi import LatControlINDI
|
|
|
|
from selfdrive.controls.lib.latcontrol_lqr import LatControlLQR
|
2020-05-15 06:21:21 +08:00
|
|
|
from selfdrive.controls.lib.events import Events, ET
|
2020-01-18 04:48:30 +08:00
|
|
|
from selfdrive.controls.lib.alertmanager import AlertManager
|
|
|
|
from selfdrive.controls.lib.vehicle_model import VehicleModel
|
2021-02-04 11:57:30 +08:00
|
|
|
from selfdrive.controls.lib.longitudinal_planner import LON_MPC_STEP
|
2020-09-11 03:16:29 +08:00
|
|
|
from selfdrive.locationd.calibrationd import Calibration
|
2021-02-03 13:27:36 +08:00
|
|
|
from selfdrive.hardware import HARDWARE, TICI
|
2020-01-18 04:48:30 +08:00
|
|
|
|
2020-05-13 06:06:48 +08:00
|
|
|
LDW_MIN_SPEED = 31 * CV.MPH_TO_MS
|
2020-01-18 04:48:30 +08:00
|
|
|
LANE_DEPARTURE_THRESHOLD = 0.1
|
2020-04-06 01:59:54 +08:00
|
|
|
STEER_ANGLE_SATURATION_TIMEOUT = 1.0 / DT_CTRL
|
2020-03-28 12:44:59 +08:00
|
|
|
STEER_ANGLE_SATURATION_THRESHOLD = 2.5 # Degrees
|
2020-09-10 18:19:14 +08:00
|
|
|
|
2020-09-10 18:14:49 +08:00
|
|
|
SIMULATION = "SIMULATION" in os.environ
|
2020-09-10 18:19:14 +08:00
|
|
|
NOSENSOR = "NOSENSOR" in os.environ
|
2021-03-05 18:03:23 +08:00
|
|
|
IGNORE_PROCESSES = set(["rtshield", "uploader", "deleter", "loggerd", "logmessaged", "tombstoned", "logcatd", "proclogd", "clocksd", "updated", "timezoned", "manage_athenad"])
|
2020-01-18 04:48:30 +08:00
|
|
|
|
2021-02-17 13:39:32 +08:00
|
|
|
ThermalStatus = log.DeviceState.ThermalStatus
|
2020-01-18 04:48:30 +08:00
|
|
|
State = log.ControlsState.OpenpilotState
|
2021-02-17 13:39:32 +08:00
|
|
|
PandaType = log.PandaState.PandaType
|
2021-02-04 11:57:30 +08:00
|
|
|
LongitudinalPlanSource = log.LongitudinalPlan.LongitudinalPlanSource
|
|
|
|
Desire = log.LateralPlan.Desire
|
|
|
|
LaneChangeState = log.LateralPlan.LaneChangeState
|
|
|
|
LaneChangeDirection = log.LateralPlan.LaneChangeDirection
|
2020-05-15 06:21:21 +08:00
|
|
|
EventName = car.CarEvent.EventName
|
2020-01-18 04:48:30 +08:00
|
|
|
|
2020-06-20 07:54:42 +08:00
|
|
|
|
2020-05-13 06:06:48 +08:00
|
|
|
class Controls:
|
|
|
|
def __init__(self, sm=None, pm=None, can_sock=None):
|
2020-10-03 08:18:18 +08:00
|
|
|
config_realtime_process(3, Priority.CTRL_HIGH)
|
2020-05-13 06:06:48 +08:00
|
|
|
|
|
|
|
# Setup sockets
|
|
|
|
self.pm = pm
|
|
|
|
if self.pm is None:
|
2020-06-01 08:41:18 +08:00
|
|
|
self.pm = messaging.PubMaster(['sendcan', 'controlsState', 'carState',
|
2020-05-13 06:06:48 +08:00
|
|
|
'carControl', 'carEvents', 'carParams'])
|
|
|
|
|
|
|
|
self.sm = sm
|
|
|
|
if self.sm is None:
|
2021-02-17 13:39:32 +08:00
|
|
|
ignore = ['ubloxRaw', 'driverCameraState', 'managerState'] if SIMULATION else None
|
|
|
|
self.sm = messaging.SubMaster(['deviceState', 'pandaState', 'modelV2', 'liveCalibration', 'ubloxRaw',
|
2021-02-04 11:57:30 +08:00
|
|
|
'driverMonitoringState', 'longitudinalPlan', 'lateralPlan', 'liveLocationKalman',
|
2021-02-17 13:39:32 +08:00
|
|
|
'roadCameraState', 'driverCameraState', 'managerState', 'liveParameters', 'radarState'], ignore_alive=ignore)
|
2020-05-13 06:06:48 +08:00
|
|
|
|
|
|
|
self.can_sock = can_sock
|
|
|
|
if can_sock is None:
|
|
|
|
can_timeout = None if os.environ.get('NO_CAN_TIMEOUT', False) else 100
|
|
|
|
self.can_sock = messaging.sub_sock('can', timeout=can_timeout)
|
|
|
|
|
2021-02-17 13:39:32 +08:00
|
|
|
# wait for one pandaState and one CAN packet
|
2020-05-13 06:06:48 +08:00
|
|
|
print("Waiting for CAN messages...")
|
2020-07-29 14:52:18 +08:00
|
|
|
get_one_can(self.can_sock)
|
2020-05-13 06:06:48 +08:00
|
|
|
|
2020-11-04 11:56:25 +08:00
|
|
|
self.CI, self.CP = get_car(self.can_sock, self.pm.sock['sendcan'])
|
2020-05-13 06:06:48 +08:00
|
|
|
|
|
|
|
# read params
|
|
|
|
params = Params()
|
|
|
|
self.is_metric = params.get("IsMetric", encoding='utf8') == "1"
|
|
|
|
self.is_ldw_enabled = params.get("IsLdwEnabled", encoding='utf8') == "1"
|
|
|
|
community_feature_toggle = params.get("CommunityFeaturesToggle", encoding='utf8') == "1"
|
|
|
|
openpilot_enabled_toggle = params.get("OpenpilotEnabledToggle", encoding='utf8') == "1"
|
2020-12-22 07:13:20 +08:00
|
|
|
passive = params.get("Passive", encoding='utf8') == "1" or not openpilot_enabled_toggle
|
2020-05-13 06:06:48 +08:00
|
|
|
|
2020-05-15 06:21:21 +08:00
|
|
|
# detect sound card presence and ensure successful init
|
2020-08-26 20:57:17 +08:00
|
|
|
sounds_available = HARDWARE.get_sound_card_online()
|
2020-05-15 06:21:21 +08:00
|
|
|
|
2020-05-13 06:06:48 +08:00
|
|
|
car_recognized = self.CP.carName != 'mock'
|
|
|
|
# If stock camera is disconnected, we loaded car controls and it's not dashcam mode
|
2020-09-18 13:06:31 +08:00
|
|
|
controller_available = self.CP.enableCamera and self.CI.CC is not None and not passive and not self.CP.dashcamOnly
|
2020-05-13 06:06:48 +08:00
|
|
|
community_feature_disallowed = self.CP.communityFeature and not community_feature_toggle
|
|
|
|
self.read_only = not car_recognized or not controller_available or \
|
|
|
|
self.CP.dashcamOnly or community_feature_disallowed
|
|
|
|
if self.read_only:
|
|
|
|
self.CP.safetyModel = car.CarParams.SafetyModel.noOutput
|
|
|
|
|
|
|
|
# Write CarParams for radard and boardd safety mode
|
|
|
|
cp_bytes = self.CP.to_bytes()
|
|
|
|
params.put("CarParams", cp_bytes)
|
|
|
|
put_nonblocking("CarParamsCache", cp_bytes)
|
|
|
|
|
|
|
|
self.CC = car.CarControl.new_message()
|
|
|
|
self.AM = AlertManager()
|
2020-05-15 06:21:21 +08:00
|
|
|
self.events = Events()
|
2020-05-13 06:06:48 +08:00
|
|
|
|
|
|
|
self.LoC = LongControl(self.CP, self.CI.compute_gb)
|
|
|
|
self.VM = VehicleModel(self.CP)
|
|
|
|
|
|
|
|
if self.CP.lateralTuning.which() == 'pid':
|
|
|
|
self.LaC = LatControlPID(self.CP)
|
|
|
|
elif self.CP.lateralTuning.which() == 'indi':
|
|
|
|
self.LaC = LatControlINDI(self.CP)
|
|
|
|
elif self.CP.lateralTuning.which() == 'lqr':
|
|
|
|
self.LaC = LatControlLQR(self.CP)
|
|
|
|
|
|
|
|
self.state = State.disabled
|
|
|
|
self.enabled = False
|
|
|
|
self.active = False
|
|
|
|
self.can_rcv_error = False
|
|
|
|
self.soft_disable_timer = 0
|
|
|
|
self.v_cruise_kph = 255
|
|
|
|
self.v_cruise_kph_last = 0
|
|
|
|
self.mismatch_counter = 0
|
|
|
|
self.can_error_counter = 0
|
|
|
|
self.last_blinker_frame = 0
|
|
|
|
self.saturated_count = 0
|
2020-06-20 05:11:23 +08:00
|
|
|
self.distance_traveled = 0
|
2020-10-07 18:15:09 +08:00
|
|
|
self.last_functional_fan_frame = 0
|
2020-05-15 06:21:21 +08:00
|
|
|
self.events_prev = []
|
2020-06-20 07:16:48 +08:00
|
|
|
self.current_alert_types = [ET.PERMANENT]
|
2021-02-02 05:41:04 +08:00
|
|
|
self.logged_comm_issue = False
|
2020-05-13 06:06:48 +08:00
|
|
|
|
2020-10-06 10:16:52 +08:00
|
|
|
self.sm['liveCalibration'].calStatus = Calibration.CALIBRATED
|
2021-02-20 04:19:29 +08:00
|
|
|
self.sm['deviceState'].freeSpacePercent = 100
|
2021-02-04 11:57:30 +08:00
|
|
|
self.sm['driverMonitoringState'].events = []
|
|
|
|
self.sm['driverMonitoringState'].awarenessStatus = 1.
|
|
|
|
self.sm['driverMonitoringState'].faceDetected = False
|
2020-05-13 06:06:48 +08:00
|
|
|
|
2020-11-04 11:56:25 +08:00
|
|
|
self.startup_event = get_startup_event(car_recognized, controller_available)
|
2020-05-13 06:06:48 +08:00
|
|
|
|
|
|
|
if not sounds_available:
|
2020-05-15 06:21:21 +08:00
|
|
|
self.events.add(EventName.soundsUnavailable, static=True)
|
2020-05-13 06:06:48 +08:00
|
|
|
if community_feature_disallowed:
|
2020-05-15 06:21:21 +08:00
|
|
|
self.events.add(EventName.communityFeatureDisallowed, static=True)
|
2020-09-18 13:06:31 +08:00
|
|
|
if not car_recognized:
|
2020-05-15 06:21:21 +08:00
|
|
|
self.events.add(EventName.carUnrecognized, static=True)
|
|
|
|
|
|
|
|
# controlsd is driven by can recv, expected at 100Hz
|
|
|
|
self.rk = Ratekeeper(100, print_delay_threshold=None)
|
|
|
|
self.prof = Profiler(False) # off by default
|
2020-05-13 06:06:48 +08:00
|
|
|
|
2020-05-15 06:21:21 +08:00
|
|
|
def update_events(self, CS):
|
2020-05-13 06:06:48 +08:00
|
|
|
"""Compute carEvents from carState"""
|
|
|
|
|
2020-05-15 06:21:21 +08:00
|
|
|
self.events.clear()
|
|
|
|
self.events.add_from_msg(CS.events)
|
2021-02-04 11:57:30 +08:00
|
|
|
self.events.add_from_msg(self.sm['driverMonitoringState'].events)
|
2020-05-15 06:21:21 +08:00
|
|
|
|
|
|
|
# Handle startup event
|
|
|
|
if self.startup_event is not None:
|
|
|
|
self.events.add(self.startup_event)
|
|
|
|
self.startup_event = None
|
2020-05-13 06:06:48 +08:00
|
|
|
|
|
|
|
# Create events for battery, temperature, disk space, and memory
|
2021-02-17 13:39:32 +08:00
|
|
|
if self.sm['deviceState'].batteryPercent < 1 and self.sm['deviceState'].chargingError:
|
2020-05-13 06:06:48 +08:00
|
|
|
# at zero percent battery, while discharging, OP should not allowed
|
2020-05-15 06:21:21 +08:00
|
|
|
self.events.add(EventName.lowBattery)
|
2021-02-17 13:39:32 +08:00
|
|
|
if self.sm['deviceState'].thermalStatus >= ThermalStatus.red:
|
2020-05-15 06:21:21 +08:00
|
|
|
self.events.add(EventName.overheat)
|
2021-02-20 04:19:29 +08:00
|
|
|
if self.sm['deviceState'].freeSpacePercent < 7:
|
2020-05-13 06:06:48 +08:00
|
|
|
# under 7% of space free no enable allowed
|
2020-05-15 06:21:21 +08:00
|
|
|
self.events.add(EventName.outOfSpace)
|
2021-02-17 13:39:32 +08:00
|
|
|
if self.sm['deviceState'].memoryUsagePercent > 90:
|
2020-05-15 06:21:21 +08:00
|
|
|
self.events.add(EventName.lowMemory)
|
2020-05-13 06:06:48 +08:00
|
|
|
|
2020-10-07 18:15:09 +08:00
|
|
|
# Alert if fan isn't spinning for 5 seconds
|
2021-02-17 13:39:32 +08:00
|
|
|
if self.sm['pandaState'].pandaType in [PandaType.uno, PandaType.dos]:
|
|
|
|
if self.sm['pandaState'].fanSpeedRpm == 0 and self.sm['deviceState'].fanSpeedPercentDesired > 50:
|
2020-10-07 18:15:09 +08:00
|
|
|
if (self.sm.frame - self.last_functional_fan_frame) * DT_CTRL > 5.0:
|
|
|
|
self.events.add(EventName.fanMalfunction)
|
|
|
|
else:
|
|
|
|
self.last_functional_fan_frame = self.sm.frame
|
|
|
|
|
2020-05-13 06:06:48 +08:00
|
|
|
# Handle calibration status
|
|
|
|
cal_status = self.sm['liveCalibration'].calStatus
|
|
|
|
if cal_status != Calibration.CALIBRATED:
|
|
|
|
if cal_status == Calibration.UNCALIBRATED:
|
2020-05-15 06:21:21 +08:00
|
|
|
self.events.add(EventName.calibrationIncomplete)
|
2020-05-13 06:06:48 +08:00
|
|
|
else:
|
2020-05-15 06:21:21 +08:00
|
|
|
self.events.add(EventName.calibrationInvalid)
|
2020-01-18 04:48:30 +08:00
|
|
|
|
2020-05-13 06:06:48 +08:00
|
|
|
# Handle lane change
|
2021-02-04 11:57:30 +08:00
|
|
|
if self.sm['lateralPlan'].laneChangeState == LaneChangeState.preLaneChange:
|
|
|
|
direction = self.sm['lateralPlan'].laneChangeDirection
|
2020-06-25 08:31:09 +08:00
|
|
|
if (CS.leftBlindspot and direction == LaneChangeDirection.left) or \
|
|
|
|
(CS.rightBlindspot and direction == LaneChangeDirection.right):
|
|
|
|
self.events.add(EventName.laneChangeBlocked)
|
2020-05-13 06:06:48 +08:00
|
|
|
else:
|
2020-06-25 08:31:09 +08:00
|
|
|
if direction == LaneChangeDirection.left:
|
|
|
|
self.events.add(EventName.preLaneChangeLeft)
|
|
|
|
else:
|
|
|
|
self.events.add(EventName.preLaneChangeRight)
|
2021-02-04 11:57:30 +08:00
|
|
|
elif self.sm['lateralPlan'].laneChangeState in [LaneChangeState.laneChangeStarting,
|
2020-09-10 18:19:14 +08:00
|
|
|
LaneChangeState.laneChangeFinishing]:
|
2020-05-15 06:21:21 +08:00
|
|
|
self.events.add(EventName.laneChange)
|
2020-09-10 18:19:14 +08:00
|
|
|
|
2020-05-30 03:00:29 +08:00
|
|
|
if self.can_rcv_error or (not CS.canValid and self.sm.frame > 5 / DT_CTRL):
|
2020-05-15 06:21:21 +08:00
|
|
|
self.events.add(EventName.canError)
|
2021-02-17 13:39:32 +08:00
|
|
|
if (self.sm['pandaState'].safetyModel != self.CP.safetyModel and self.sm.frame > 2 / DT_CTRL) or \
|
2021-01-19 09:16:32 +08:00
|
|
|
self.mismatch_counter >= 200:
|
2020-05-15 06:21:21 +08:00
|
|
|
self.events.add(EventName.controlsMismatch)
|
2021-02-02 05:41:04 +08:00
|
|
|
|
2021-02-04 11:57:30 +08:00
|
|
|
if len(self.sm['radarState'].radarErrors):
|
|
|
|
self.events.add(EventName.radarFault)
|
|
|
|
elif not self.sm.valid['liveParameters']:
|
|
|
|
self.events.add(EventName.vehicleModelInvalid)
|
2020-05-13 06:06:48 +08:00
|
|
|
elif not self.sm.all_alive_and_valid():
|
2020-05-15 06:21:21 +08:00
|
|
|
self.events.add(EventName.commIssue)
|
2021-02-02 05:41:04 +08:00
|
|
|
if not self.logged_comm_issue:
|
|
|
|
cloudlog.error(f"commIssue - valid: {self.sm.valid} - alive: {self.sm.alive}")
|
|
|
|
self.logged_comm_issue = True
|
|
|
|
else:
|
|
|
|
self.logged_comm_issue = False
|
|
|
|
|
2021-02-04 11:57:30 +08:00
|
|
|
if not self.sm['lateralPlan'].mpcSolutionValid:
|
2020-05-15 06:21:21 +08:00
|
|
|
self.events.add(EventName.plannerError)
|
2020-09-10 18:19:14 +08:00
|
|
|
if not self.sm['liveLocationKalman'].sensorsOK and not NOSENSOR:
|
2020-05-21 02:25:27 +08:00
|
|
|
if self.sm.frame > 5 / DT_CTRL: # Give locationd some time to receive all the inputs
|
|
|
|
self.events.add(EventName.sensorDataInvalid)
|
2020-05-20 07:45:20 +08:00
|
|
|
if not self.sm['liveLocationKalman'].posenetOK:
|
2020-05-15 06:21:21 +08:00
|
|
|
self.events.add(EventName.posenetInvalid)
|
2020-08-04 06:51:56 +08:00
|
|
|
if not self.sm['liveLocationKalman'].deviceStable:
|
|
|
|
self.events.add(EventName.deviceFalling)
|
2021-02-17 13:39:32 +08:00
|
|
|
if log.PandaState.FaultType.relayMalfunction in self.sm['pandaState'].faults:
|
2020-05-15 06:21:21 +08:00
|
|
|
self.events.add(EventName.relayMalfunction)
|
2021-02-04 11:57:30 +08:00
|
|
|
if self.sm['longitudinalPlan'].fcw:
|
2020-05-15 06:21:21 +08:00
|
|
|
self.events.add(EventName.fcw)
|
2020-11-24 05:42:18 +08:00
|
|
|
|
2021-01-15 08:03:16 +08:00
|
|
|
# TODO: fix simulator
|
|
|
|
if not SIMULATION:
|
|
|
|
if not NOSENSOR:
|
2021-03-10 18:13:46 +08:00
|
|
|
if not self.sm['liveLocationKalman'].gpsOK and (self.distance_traveled > 1000) and not TICI:
|
2021-01-15 08:03:16 +08:00
|
|
|
# Not show in first 1 km to allow for driving out of garage. This event shows after 5 minutes
|
|
|
|
self.events.add(EventName.noGps)
|
2021-02-17 13:39:32 +08:00
|
|
|
if not self.sm.all_alive(['roadCameraState', 'driverCameraState']) and (self.sm.frame > 5 / DT_CTRL):
|
2021-01-15 08:03:16 +08:00
|
|
|
self.events.add(EventName.cameraMalfunction)
|
2021-01-20 09:15:16 +08:00
|
|
|
if self.sm['modelV2'].frameDropPerc > 20:
|
2021-01-15 08:03:16 +08:00
|
|
|
self.events.add(EventName.modeldLagging)
|
2020-01-18 04:48:30 +08:00
|
|
|
|
2021-02-05 12:51:37 +08:00
|
|
|
# Check if all manager processes are running
|
|
|
|
not_running = set(p.name for p in self.sm['managerState'].processes if not p.running)
|
|
|
|
if self.sm.rcv_frame['managerState'] and (not_running - IGNORE_PROCESSES):
|
|
|
|
self.events.add(EventName.processNotRunning)
|
|
|
|
|
2020-05-13 06:06:48 +08:00
|
|
|
# Only allow engagement with brake pressed when stopped behind another stopped car
|
2021-02-04 11:57:30 +08:00
|
|
|
if CS.brakePressed and self.sm['longitudinalPlan'].vTargetFuture >= STARTING_TARGET_SPEED \
|
2020-09-29 15:04:15 +08:00
|
|
|
and self.CP.openpilotLongitudinalControl and CS.vEgo < 0.3:
|
2020-05-15 06:21:21 +08:00
|
|
|
self.events.add(EventName.noTarget)
|
2020-01-18 04:48:30 +08:00
|
|
|
|
2020-05-13 06:06:48 +08:00
|
|
|
def data_sample(self):
|
|
|
|
"""Receive data from sockets and update carState"""
|
2020-01-18 04:48:30 +08:00
|
|
|
|
2020-05-13 06:06:48 +08:00
|
|
|
# Update carState from CAN
|
|
|
|
can_strs = messaging.drain_sock_raw(self.can_sock, wait_for_one=True)
|
|
|
|
CS = self.CI.update(self.CC, can_strs)
|
2020-01-18 04:48:30 +08:00
|
|
|
|
2020-05-13 06:06:48 +08:00
|
|
|
self.sm.update(0)
|
2020-01-18 04:48:30 +08:00
|
|
|
|
2020-05-13 06:06:48 +08:00
|
|
|
# Check for CAN timeout
|
|
|
|
if not can_strs:
|
|
|
|
self.can_error_counter += 1
|
|
|
|
self.can_rcv_error = True
|
2020-01-18 04:48:30 +08:00
|
|
|
else:
|
2020-05-13 06:06:48 +08:00
|
|
|
self.can_rcv_error = False
|
2020-01-18 04:48:30 +08:00
|
|
|
|
2020-05-13 06:06:48 +08:00
|
|
|
# When the panda and controlsd do not agree on controls_allowed
|
|
|
|
# we want to disengage openpilot. However the status from the panda goes through
|
|
|
|
# another socket other than the CAN messages and one can arrive earlier than the other.
|
|
|
|
# Therefore we allow a mismatch for two samples, then we trigger the disengagement.
|
|
|
|
if not self.enabled:
|
|
|
|
self.mismatch_counter = 0
|
2020-03-31 09:41:56 +08:00
|
|
|
|
2021-02-17 13:39:32 +08:00
|
|
|
if not self.sm['pandaState'].controlsAllowed and self.enabled:
|
2020-05-13 06:06:48 +08:00
|
|
|
self.mismatch_counter += 1
|
2020-01-18 04:48:30 +08:00
|
|
|
|
2020-06-20 05:11:23 +08:00
|
|
|
self.distance_traveled += CS.vEgo * DT_CTRL
|
|
|
|
|
2020-05-13 06:06:48 +08:00
|
|
|
return CS
|
2020-01-18 04:48:30 +08:00
|
|
|
|
2020-05-15 06:21:21 +08:00
|
|
|
def state_transition(self, CS):
|
2020-05-13 06:06:48 +08:00
|
|
|
"""Compute conditional state transitions and execute actions on state transitions"""
|
2020-01-18 04:48:30 +08:00
|
|
|
|
2020-05-13 06:06:48 +08:00
|
|
|
self.v_cruise_kph_last = self.v_cruise_kph
|
2020-01-18 04:48:30 +08:00
|
|
|
|
2020-05-13 06:06:48 +08:00
|
|
|
# if stock cruise is completely disabled, then we can use our own set speed logic
|
|
|
|
if not self.CP.enableCruise:
|
|
|
|
self.v_cruise_kph = update_v_cruise(self.v_cruise_kph, CS.buttonEvents, self.enabled)
|
|
|
|
elif self.CP.enableCruise and CS.cruiseState.enabled:
|
|
|
|
self.v_cruise_kph = CS.cruiseState.speed * CV.MS_TO_KPH
|
2020-01-18 04:48:30 +08:00
|
|
|
|
2020-05-13 06:06:48 +08:00
|
|
|
# decrease the soft disable timer at every step, as it's reset on
|
|
|
|
# entrance in SOFT_DISABLING state
|
|
|
|
self.soft_disable_timer = max(0, self.soft_disable_timer - 1)
|
2020-01-18 04:48:30 +08:00
|
|
|
|
2020-05-15 06:21:21 +08:00
|
|
|
self.current_alert_types = [ET.PERMANENT]
|
2020-01-18 04:48:30 +08:00
|
|
|
|
2020-05-13 06:06:48 +08:00
|
|
|
# ENABLED, PRE ENABLING, SOFT DISABLING
|
|
|
|
if self.state != State.disabled:
|
|
|
|
# user and immediate disable always have priority in a non-disabled state
|
2020-05-15 06:21:21 +08:00
|
|
|
if self.events.any(ET.USER_DISABLE):
|
2020-05-13 06:06:48 +08:00
|
|
|
self.state = State.disabled
|
2020-05-15 06:21:21 +08:00
|
|
|
self.current_alert_types.append(ET.USER_DISABLE)
|
2020-05-13 06:06:48 +08:00
|
|
|
|
2020-05-15 06:21:21 +08:00
|
|
|
elif self.events.any(ET.IMMEDIATE_DISABLE):
|
2020-05-13 06:06:48 +08:00
|
|
|
self.state = State.disabled
|
2020-05-15 06:21:21 +08:00
|
|
|
self.current_alert_types.append(ET.IMMEDIATE_DISABLE)
|
2020-01-18 04:48:30 +08:00
|
|
|
|
|
|
|
else:
|
2020-05-13 06:06:48 +08:00
|
|
|
# ENABLED
|
|
|
|
if self.state == State.enabled:
|
2020-05-15 06:21:21 +08:00
|
|
|
if self.events.any(ET.SOFT_DISABLE):
|
2020-05-13 06:06:48 +08:00
|
|
|
self.state = State.softDisabling
|
|
|
|
self.soft_disable_timer = 300 # 3s
|
2020-05-15 06:21:21 +08:00
|
|
|
self.current_alert_types.append(ET.SOFT_DISABLE)
|
2020-05-13 06:06:48 +08:00
|
|
|
|
|
|
|
# SOFT DISABLING
|
|
|
|
elif self.state == State.softDisabling:
|
2020-05-15 06:21:21 +08:00
|
|
|
if not self.events.any(ET.SOFT_DISABLE):
|
2020-05-13 06:06:48 +08:00
|
|
|
# no more soft disabling condition, so go back to ENABLED
|
|
|
|
self.state = State.enabled
|
|
|
|
|
2020-05-15 06:21:21 +08:00
|
|
|
elif self.events.any(ET.SOFT_DISABLE) and self.soft_disable_timer > 0:
|
|
|
|
self.current_alert_types.append(ET.SOFT_DISABLE)
|
2020-05-13 06:06:48 +08:00
|
|
|
|
|
|
|
elif self.soft_disable_timer <= 0:
|
|
|
|
self.state = State.disabled
|
|
|
|
|
|
|
|
# PRE ENABLING
|
|
|
|
elif self.state == State.preEnabled:
|
2020-05-15 06:21:21 +08:00
|
|
|
if not self.events.any(ET.PRE_ENABLE):
|
2020-05-13 06:06:48 +08:00
|
|
|
self.state = State.enabled
|
2020-06-29 11:29:42 +08:00
|
|
|
else:
|
|
|
|
self.current_alert_types.append(ET.PRE_ENABLE)
|
2020-05-13 06:06:48 +08:00
|
|
|
|
|
|
|
# DISABLED
|
|
|
|
elif self.state == State.disabled:
|
2020-05-15 06:21:21 +08:00
|
|
|
if self.events.any(ET.ENABLE):
|
|
|
|
if self.events.any(ET.NO_ENTRY):
|
|
|
|
self.current_alert_types.append(ET.NO_ENTRY)
|
2020-05-13 06:06:48 +08:00
|
|
|
|
2020-01-18 04:48:30 +08:00
|
|
|
else:
|
2020-05-15 06:21:21 +08:00
|
|
|
if self.events.any(ET.PRE_ENABLE):
|
2020-05-13 06:06:48 +08:00
|
|
|
self.state = State.preEnabled
|
|
|
|
else:
|
|
|
|
self.state = State.enabled
|
2020-05-15 06:21:21 +08:00
|
|
|
self.current_alert_types.append(ET.ENABLE)
|
2020-05-13 06:06:48 +08:00
|
|
|
self.v_cruise_kph = initialize_v_cruise(CS.vEgo, CS.buttonEvents, self.v_cruise_kph_last)
|
2020-01-18 04:48:30 +08:00
|
|
|
|
2020-05-13 06:06:48 +08:00
|
|
|
# Check if actuators are enabled
|
|
|
|
self.active = self.state == State.enabled or self.state == State.softDisabling
|
2020-05-15 06:21:21 +08:00
|
|
|
if self.active:
|
|
|
|
self.current_alert_types.append(ET.WARNING)
|
2020-01-18 04:48:30 +08:00
|
|
|
|
2020-05-13 06:06:48 +08:00
|
|
|
# Check if openpilot is engaged
|
|
|
|
self.enabled = self.active or self.state == State.preEnabled
|
2020-01-18 04:48:30 +08:00
|
|
|
|
2020-05-15 06:21:21 +08:00
|
|
|
def state_control(self, CS):
|
2020-05-13 06:06:48 +08:00
|
|
|
"""Given the state, this function returns an actuators packet"""
|
2020-01-18 04:48:30 +08:00
|
|
|
|
2021-02-17 13:39:32 +08:00
|
|
|
lat_plan = self.sm['lateralPlan']
|
|
|
|
long_plan = self.sm['longitudinalPlan']
|
2020-01-18 04:48:30 +08:00
|
|
|
|
2020-05-13 06:06:48 +08:00
|
|
|
actuators = car.CarControl.Actuators.new_message()
|
2020-01-18 04:48:30 +08:00
|
|
|
|
2020-05-13 06:06:48 +08:00
|
|
|
if CS.leftBlinker or CS.rightBlinker:
|
|
|
|
self.last_blinker_frame = self.sm.frame
|
2020-01-18 04:48:30 +08:00
|
|
|
|
2020-05-13 06:06:48 +08:00
|
|
|
# State specific actions
|
2020-01-18 04:48:30 +08:00
|
|
|
|
2020-05-13 06:06:48 +08:00
|
|
|
if not self.active:
|
|
|
|
self.LaC.reset()
|
|
|
|
self.LoC.reset(v_pid=CS.vEgo)
|
2020-01-18 04:48:30 +08:00
|
|
|
|
2021-02-17 13:39:32 +08:00
|
|
|
long_plan_age = DT_CTRL * (self.sm.frame - self.sm.rcv_frame['longitudinalPlan'])
|
2020-05-13 06:06:48 +08:00
|
|
|
# no greater than dt mpc + dt, to prevent too high extraps
|
2021-02-17 13:39:32 +08:00
|
|
|
dt = min(long_plan_age, LON_MPC_STEP + DT_CTRL) + DT_CTRL
|
2020-01-18 04:48:30 +08:00
|
|
|
|
2021-02-17 13:39:32 +08:00
|
|
|
a_acc_sol = long_plan.aStart + (dt / LON_MPC_STEP) * (long_plan.aTarget - long_plan.aStart)
|
|
|
|
v_acc_sol = long_plan.vStart + dt * (a_acc_sol + long_plan.aStart) / 2.0
|
2020-01-18 04:48:30 +08:00
|
|
|
|
2020-05-13 06:06:48 +08:00
|
|
|
# Gas/Brake PID loop
|
2021-02-17 13:39:32 +08:00
|
|
|
actuators.gas, actuators.brake = self.LoC.update(self.active, CS, v_acc_sol, long_plan.vTargetFuture, a_acc_sol, self.CP)
|
2020-05-13 06:06:48 +08:00
|
|
|
# Steering PID loop and lateral MPC
|
2021-02-17 13:39:32 +08:00
|
|
|
actuators.steer, actuators.steeringAngleDeg, lac_log = self.LaC.update(self.active, CS, self.CP, lat_plan)
|
2020-01-18 04:48:30 +08:00
|
|
|
|
2020-05-13 06:06:48 +08:00
|
|
|
# Check for difference between desired angle and angle for angle based control
|
|
|
|
angle_control_saturated = self.CP.steerControlType == car.CarParams.SteerControlType.angle and \
|
2021-02-17 13:39:32 +08:00
|
|
|
abs(actuators.steeringAngleDeg - CS.steeringAngleDeg) > STEER_ANGLE_SATURATION_THRESHOLD
|
2020-01-18 04:48:30 +08:00
|
|
|
|
2020-05-13 06:06:48 +08:00
|
|
|
if angle_control_saturated and not CS.steeringPressed and self.active:
|
|
|
|
self.saturated_count += 1
|
2020-05-16 16:14:10 +08:00
|
|
|
else:
|
|
|
|
self.saturated_count = 0
|
2020-01-18 04:48:30 +08:00
|
|
|
|
2020-05-13 06:06:48 +08:00
|
|
|
# Send a "steering required alert" if saturation count has reached the limit
|
|
|
|
if (lac_log.saturated and not CS.steeringPressed) or \
|
2020-05-31 11:14:58 +08:00
|
|
|
(self.saturated_count > STEER_ANGLE_SATURATION_TIMEOUT):
|
2020-05-13 06:06:48 +08:00
|
|
|
# Check if we deviated from the path
|
2021-02-17 13:39:32 +08:00
|
|
|
left_deviation = actuators.steer > 0 and lat_plan.dPathPoints[0] < -0.1
|
|
|
|
right_deviation = actuators.steer < 0 and lat_plan.dPathPoints[0] > 0.1
|
2020-01-18 04:48:30 +08:00
|
|
|
|
2020-05-13 06:06:48 +08:00
|
|
|
if left_deviation or right_deviation:
|
2020-05-15 06:21:21 +08:00
|
|
|
self.events.add(EventName.steerSaturated)
|
2020-01-18 04:48:30 +08:00
|
|
|
|
2020-05-13 06:06:48 +08:00
|
|
|
return actuators, v_acc_sol, a_acc_sol, lac_log
|
2020-04-17 02:38:31 +08:00
|
|
|
|
2020-05-15 06:21:21 +08:00
|
|
|
def publish_logs(self, CS, start_time, actuators, v_acc, a_acc, lac_log):
|
2020-05-13 06:06:48 +08:00
|
|
|
"""Send actuators and hud commands to the car, send controlsstate and MPC logging"""
|
|
|
|
|
|
|
|
CC = car.CarControl.new_message()
|
|
|
|
CC.enabled = self.enabled
|
|
|
|
CC.actuators = actuators
|
|
|
|
|
|
|
|
CC.cruiseControl.override = True
|
|
|
|
CC.cruiseControl.cancel = not self.CP.enableCruise or (not self.enabled and CS.cruiseState.enabled)
|
|
|
|
|
|
|
|
# Some override values for Honda
|
|
|
|
# brake discount removes a sharp nonlinearity
|
|
|
|
brake_discount = (1.0 - clip(actuators.brake * 3., 0.0, 1.0))
|
|
|
|
speed_override = max(0.0, (self.LoC.v_pid + CS.cruiseState.speedOffset) * brake_discount)
|
|
|
|
CC.cruiseControl.speedOverride = float(speed_override if self.CP.enableCruise else 0.0)
|
2021-02-04 11:57:30 +08:00
|
|
|
CC.cruiseControl.accelOverride = self.CI.calc_accel_override(CS.aEgo, self.sm['longitudinalPlan'].aTarget, CS.vEgo, self.sm['longitudinalPlan'].vTarget)
|
2020-01-18 04:48:30 +08:00
|
|
|
|
2020-05-13 06:06:48 +08:00
|
|
|
CC.hudControl.setSpeed = float(self.v_cruise_kph * CV.KPH_TO_MS)
|
|
|
|
CC.hudControl.speedVisible = self.enabled
|
|
|
|
CC.hudControl.lanesVisible = self.enabled
|
2021-02-04 11:57:30 +08:00
|
|
|
CC.hudControl.leadVisible = self.sm['longitudinalPlan'].hasLead
|
2020-05-13 06:06:48 +08:00
|
|
|
|
2021-02-04 11:57:30 +08:00
|
|
|
right_lane_visible = self.sm['lateralPlan'].rProb > 0.5
|
|
|
|
left_lane_visible = self.sm['lateralPlan'].lProb > 0.5
|
2020-05-13 06:06:48 +08:00
|
|
|
CC.hudControl.rightLaneVisible = bool(right_lane_visible)
|
|
|
|
CC.hudControl.leftLaneVisible = bool(left_lane_visible)
|
|
|
|
|
|
|
|
recent_blinker = (self.sm.frame - self.last_blinker_frame) * DT_CTRL < 5.0 # 5s blinker cooldown
|
|
|
|
ldw_allowed = self.is_ldw_enabled and CS.vEgo > LDW_MIN_SPEED and not recent_blinker \
|
|
|
|
and not self.active and self.sm['liveCalibration'].calStatus == Calibration.CALIBRATED
|
|
|
|
|
2021-01-20 09:15:16 +08:00
|
|
|
meta = self.sm['modelV2'].meta
|
2020-05-13 06:06:48 +08:00
|
|
|
if len(meta.desirePrediction) and ldw_allowed:
|
|
|
|
l_lane_change_prob = meta.desirePrediction[Desire.laneChangeLeft - 1]
|
|
|
|
r_lane_change_prob = meta.desirePrediction[Desire.laneChangeRight - 1]
|
2021-01-20 09:15:16 +08:00
|
|
|
l_lane_close = left_lane_visible and (self.sm['modelV2'].laneLines[1].y[0] > -(1.08 + CAMERA_OFFSET))
|
|
|
|
r_lane_close = right_lane_visible and (self.sm['modelV2'].laneLines[2].y[0] < (1.08 - CAMERA_OFFSET))
|
2020-05-13 06:06:48 +08:00
|
|
|
|
|
|
|
CC.hudControl.leftLaneDepart = bool(l_lane_change_prob > LANE_DEPARTURE_THRESHOLD and l_lane_close)
|
|
|
|
CC.hudControl.rightLaneDepart = bool(r_lane_change_prob > LANE_DEPARTURE_THRESHOLD and r_lane_close)
|
|
|
|
|
|
|
|
if CC.hudControl.rightLaneDepart or CC.hudControl.leftLaneDepart:
|
2020-05-15 06:21:21 +08:00
|
|
|
self.events.add(EventName.ldw)
|
2020-05-13 06:06:48 +08:00
|
|
|
|
2020-10-15 06:56:18 +08:00
|
|
|
clear_event = ET.WARNING if ET.WARNING not in self.current_alert_types else None
|
2020-05-15 06:21:21 +08:00
|
|
|
alerts = self.events.create_alerts(self.current_alert_types, [self.CP, self.sm, self.is_metric])
|
|
|
|
self.AM.add_many(self.sm.frame, alerts, self.enabled)
|
2020-10-15 05:08:15 +08:00
|
|
|
self.AM.process_alerts(self.sm.frame, clear_event)
|
2020-05-13 06:06:48 +08:00
|
|
|
CC.hudControl.visualAlert = self.AM.visual_alert
|
|
|
|
|
|
|
|
if not self.read_only:
|
|
|
|
# send car controls over can
|
|
|
|
can_sends = self.CI.apply(CC)
|
|
|
|
self.pm.send('sendcan', can_list_to_can_capnp(can_sends, msgtype='sendcan', valid=CS.canValid))
|
|
|
|
|
2021-02-04 11:57:30 +08:00
|
|
|
force_decel = (self.sm['driverMonitoringState'].awarenessStatus < 0.) or \
|
2020-10-23 07:28:54 +08:00
|
|
|
(self.state == State.softDisabling)
|
2020-05-13 06:06:48 +08:00
|
|
|
|
2021-02-17 13:39:32 +08:00
|
|
|
steer_angle_rad = (CS.steeringAngleDeg - self.sm['lateralPlan'].angleOffsetDeg) * CV.DEG_TO_RAD
|
2020-05-13 06:06:48 +08:00
|
|
|
|
|
|
|
# controlsState
|
|
|
|
dat = messaging.new_message('controlsState')
|
|
|
|
dat.valid = CS.canValid
|
|
|
|
controlsState = dat.controlsState
|
|
|
|
controlsState.alertText1 = self.AM.alert_text_1
|
|
|
|
controlsState.alertText2 = self.AM.alert_text_2
|
|
|
|
controlsState.alertSize = self.AM.alert_size
|
|
|
|
controlsState.alertStatus = self.AM.alert_status
|
|
|
|
controlsState.alertBlinkingRate = self.AM.alert_rate
|
|
|
|
controlsState.alertType = self.AM.alert_type
|
|
|
|
controlsState.alertSound = self.AM.audible_alert
|
|
|
|
controlsState.canMonoTimes = list(CS.canMonoTimes)
|
2021-02-04 11:57:30 +08:00
|
|
|
controlsState.longitudinalPlanMonoTime = self.sm.logMonoTime['longitudinalPlan']
|
|
|
|
controlsState.lateralPlanMonoTime = self.sm.logMonoTime['lateralPlan']
|
2020-05-13 06:06:48 +08:00
|
|
|
controlsState.enabled = self.enabled
|
|
|
|
controlsState.active = self.active
|
|
|
|
controlsState.curvature = self.VM.calc_curvature(steer_angle_rad, CS.vEgo)
|
|
|
|
controlsState.state = self.state
|
2020-05-15 06:21:21 +08:00
|
|
|
controlsState.engageable = not self.events.any(ET.NO_ENTRY)
|
2020-05-13 06:06:48 +08:00
|
|
|
controlsState.longControlState = self.LoC.long_control_state
|
|
|
|
controlsState.vPid = float(self.LoC.v_pid)
|
|
|
|
controlsState.vCruise = float(self.v_cruise_kph)
|
|
|
|
controlsState.upAccelCmd = float(self.LoC.pid.p)
|
|
|
|
controlsState.uiAccelCmd = float(self.LoC.pid.i)
|
|
|
|
controlsState.ufAccelCmd = float(self.LoC.pid.f)
|
2021-02-17 13:39:32 +08:00
|
|
|
controlsState.steeringAngleDesiredDeg = float(self.LaC.angle_steers_des)
|
2020-05-13 06:06:48 +08:00
|
|
|
controlsState.vTargetLead = float(v_acc)
|
|
|
|
controlsState.aTarget = float(a_acc)
|
|
|
|
controlsState.cumLagMs = -self.rk.remaining * 1000.
|
|
|
|
controlsState.startMonoTime = int(start_time * 1e9)
|
|
|
|
controlsState.forceDecel = bool(force_decel)
|
|
|
|
controlsState.canErrorCounter = self.can_error_counter
|
|
|
|
|
|
|
|
if self.CP.lateralTuning.which() == 'pid':
|
|
|
|
controlsState.lateralControlState.pidState = lac_log
|
|
|
|
elif self.CP.lateralTuning.which() == 'lqr':
|
|
|
|
controlsState.lateralControlState.lqrState = lac_log
|
|
|
|
elif self.CP.lateralTuning.which() == 'indi':
|
|
|
|
controlsState.lateralControlState.indiState = lac_log
|
|
|
|
self.pm.send('controlsState', dat)
|
|
|
|
|
|
|
|
# carState
|
2020-05-15 06:21:21 +08:00
|
|
|
car_events = self.events.to_msg()
|
2020-05-13 06:06:48 +08:00
|
|
|
cs_send = messaging.new_message('carState')
|
|
|
|
cs_send.valid = CS.canValid
|
|
|
|
cs_send.carState = CS
|
2020-05-15 06:21:21 +08:00
|
|
|
cs_send.carState.events = car_events
|
2020-05-13 06:06:48 +08:00
|
|
|
self.pm.send('carState', cs_send)
|
|
|
|
|
|
|
|
# carEvents - logged every second or on change
|
2020-05-15 06:21:21 +08:00
|
|
|
if (self.sm.frame % int(1. / DT_CTRL) == 0) or (self.events.names != self.events_prev):
|
|
|
|
ce_send = messaging.new_message('carEvents', len(self.events))
|
|
|
|
ce_send.carEvents = car_events
|
2020-05-13 06:06:48 +08:00
|
|
|
self.pm.send('carEvents', ce_send)
|
2020-05-15 06:21:21 +08:00
|
|
|
self.events_prev = self.events.names.copy()
|
2020-05-13 06:06:48 +08:00
|
|
|
|
|
|
|
# carParams - logged every 50 seconds (> 1 per segment)
|
|
|
|
if (self.sm.frame % int(50. / DT_CTRL) == 0):
|
|
|
|
cp_send = messaging.new_message('carParams')
|
|
|
|
cp_send.carParams = self.CP
|
|
|
|
self.pm.send('carParams', cp_send)
|
|
|
|
|
|
|
|
# carControl
|
|
|
|
cc_send = messaging.new_message('carControl')
|
|
|
|
cc_send.valid = CS.canValid
|
|
|
|
cc_send.carControl = CC
|
|
|
|
self.pm.send('carControl', cc_send)
|
|
|
|
|
|
|
|
# copy CarControl to pass to CarInterface on the next iteration
|
|
|
|
self.CC = CC
|
|
|
|
|
|
|
|
def step(self):
|
|
|
|
start_time = sec_since_boot()
|
|
|
|
self.prof.checkpoint("Ratekeeper", ignore=True)
|
|
|
|
|
|
|
|
# Sample data from sockets and get a carState
|
|
|
|
CS = self.data_sample()
|
|
|
|
self.prof.checkpoint("Sample")
|
|
|
|
|
2020-05-15 06:21:21 +08:00
|
|
|
self.update_events(CS)
|
2020-05-13 06:06:48 +08:00
|
|
|
|
|
|
|
if not self.read_only:
|
|
|
|
# Update control state
|
2020-05-15 06:21:21 +08:00
|
|
|
self.state_transition(CS)
|
2020-05-13 06:06:48 +08:00
|
|
|
self.prof.checkpoint("State transition")
|
2020-01-18 04:48:30 +08:00
|
|
|
|
|
|
|
# Compute actuators (runs PID loops and lateral MPC)
|
2020-05-15 06:21:21 +08:00
|
|
|
actuators, v_acc, a_acc, lac_log = self.state_control(CS)
|
2020-01-18 04:48:30 +08:00
|
|
|
|
2020-05-13 06:06:48 +08:00
|
|
|
self.prof.checkpoint("State Control")
|
2020-01-18 04:48:30 +08:00
|
|
|
|
|
|
|
# Publish data
|
2020-05-15 06:21:21 +08:00
|
|
|
self.publish_logs(CS, start_time, actuators, v_acc, a_acc, lac_log)
|
2020-05-13 06:06:48 +08:00
|
|
|
self.prof.checkpoint("Sent")
|
2020-01-18 04:48:30 +08:00
|
|
|
|
2020-05-13 06:06:48 +08:00
|
|
|
def controlsd_thread(self):
|
|
|
|
while True:
|
|
|
|
self.step()
|
|
|
|
self.rk.monitor_time()
|
|
|
|
self.prof.display()
|
2020-01-18 04:48:30 +08:00
|
|
|
|
|
|
|
def main(sm=None, pm=None, logcan=None):
|
2020-05-13 06:06:48 +08:00
|
|
|
controls = Controls(sm, pm, logcan)
|
|
|
|
controls.controlsd_thread()
|
2020-01-18 04:48:30 +08:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|