2020-01-18 04:48:30 +08:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
import os
|
2021-03-12 13:08:51 +08:00
|
|
|
import math
|
2021-09-07 09:45:59 +08:00
|
|
|
from numbers import Number
|
|
|
|
|
2020-01-18 04:48:30 +08:00
|
|
|
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
|
2021-07-01 05:19:39 +08:00
|
|
|
from selfdrive.controls.lib.drive_helpers import get_lag_adjusted_curvature
|
2021-09-12 09:01:54 +08:00
|
|
|
from selfdrive.controls.lib.longcontrol import LongControl
|
2020-01-18 04:48:30 +08:00
|
|
|
from selfdrive.controls.lib.latcontrol_pid import LatControlPID
|
|
|
|
from selfdrive.controls.lib.latcontrol_indi import LatControlINDI
|
|
|
|
from selfdrive.controls.lib.latcontrol_lqr import LatControlLQR
|
2021-03-12 13:08:51 +08:00
|
|
|
from selfdrive.controls.lib.latcontrol_angle import LatControlAngle
|
2020-05-15 06:21:21 +08:00
|
|
|
from selfdrive.controls.lib.events import Events, ET
|
2021-11-18 12:29:00 +08:00
|
|
|
from selfdrive.controls.lib.alertmanager import AlertManager, set_offroad_alert
|
2020-01-18 04:48:30 +08:00
|
|
|
from selfdrive.controls.lib.vehicle_model import VehicleModel
|
2020-09-11 03:16:29 +08:00
|
|
|
from selfdrive.locationd.calibrationd import Calibration
|
2021-08-20 10:14:51 +08:00
|
|
|
from selfdrive.hardware import HARDWARE, TICI, EON
|
2021-08-07 06:48:16 +08:00
|
|
|
from selfdrive.manager.process_config import managed_processes
|
2020-01-18 04:48:30 +08:00
|
|
|
|
2021-12-12 09:07:37 +08:00
|
|
|
SOFT_DISABLE_TIME = 3 # seconds
|
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
|
|
|
|
2021-11-13 10:22:39 +08:00
|
|
|
REPLAY = "REPLAY" in os.environ
|
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-08-07 06:48:16 +08:00
|
|
|
IGNORE_PROCESSES = {"rtshield", "uploader", "deleter", "loggerd", "logmessaged", "tombstoned",
|
|
|
|
"logcatd", "proclogd", "clocksd", "updated", "timezoned", "manage_athenad"} | \
|
|
|
|
{k for k, v in managed_processes.items() if not v.enabled}
|
2020-01-18 04:48:30 +08:00
|
|
|
|
2021-08-20 01:00:03 +08:00
|
|
|
ACTUATOR_FIELDS = set(car.CarControl.Actuators.schema.fields.keys())
|
|
|
|
|
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
|
|
|
Desire = log.LateralPlan.Desire
|
|
|
|
LaneChangeState = log.LateralPlan.LaneChangeState
|
|
|
|
LaneChangeDirection = log.LateralPlan.LaneChangeDirection
|
2020-05-15 06:21:21 +08:00
|
|
|
EventName = car.CarEvent.EventName
|
2021-10-01 17:09:56 +08:00
|
|
|
ButtonEvent = car.CarState.ButtonEvent
|
2021-10-08 23:54:34 +08:00
|
|
|
SafetyModel = car.CarParams.SafetyModel
|
2020-01-18 04:48:30 +08:00
|
|
|
|
2021-10-29 19:04:26 +08:00
|
|
|
IGNORED_SAFETY_MODES = [SafetyModel.silent, SafetyModel.noOutput]
|
|
|
|
|
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):
|
2021-04-13 14:06:24 +08:00
|
|
|
config_realtime_process(4 if TICI else 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'])
|
|
|
|
|
2021-05-20 12:28:16 +08:00
|
|
|
self.camera_packets = ["roadCameraState", "driverCameraState"]
|
|
|
|
if TICI:
|
|
|
|
self.camera_packets.append("wideRoadCameraState")
|
|
|
|
|
2021-06-12 05:33:17 +08:00
|
|
|
params = Params()
|
|
|
|
self.joystick_mode = params.get_bool("JoystickDebugMode")
|
|
|
|
joystick_packet = ['testJoystick'] if self.joystick_mode else []
|
|
|
|
|
2020-05-13 06:06:48 +08:00
|
|
|
self.sm = sm
|
|
|
|
if self.sm is None:
|
2021-04-07 20:41:38 +08:00
|
|
|
ignore = ['driverCameraState', 'managerState'] if SIMULATION else None
|
2021-10-08 23:54:34 +08:00
|
|
|
self.sm = messaging.SubMaster(['deviceState', 'pandaStates', 'peripheralState', 'modelV2', 'liveCalibration',
|
2021-02-04 11:57:30 +08:00
|
|
|
'driverMonitoringState', 'longitudinalPlan', 'lateralPlan', 'liveLocationKalman',
|
2021-06-12 05:33:17 +08:00
|
|
|
'managerState', 'liveParameters', 'radarState'] + self.camera_packets + joystick_packet,
|
2021-04-30 02:06:44 +08:00
|
|
|
ignore_alive=ignore, ignore_avg_freq=['radarState', 'longitudinalPlan'])
|
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-05-20 12:28:16 +08:00
|
|
|
if TICI:
|
|
|
|
self.log_sock = messaging.sub_sock('androidLog')
|
|
|
|
|
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
|
2021-04-07 21:36:37 +08:00
|
|
|
self.is_metric = params.get_bool("IsMetric")
|
|
|
|
self.is_ldw_enabled = params.get_bool("IsLdwEnabled")
|
|
|
|
community_feature_toggle = params.get_bool("CommunityFeaturesToggle")
|
|
|
|
openpilot_enabled_toggle = params.get_bool("OpenpilotEnabledToggle")
|
|
|
|
passive = params.get_bool("Passive") 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'
|
2021-04-20 18:00:36 +08:00
|
|
|
|
2021-07-08 05:59:18 +08:00
|
|
|
controller_available = self.CI.CC is not None and not passive and not self.CP.dashcamOnly
|
2021-07-11 04:23:39 +08:00
|
|
|
community_feature = self.CP.communityFeature or \
|
2021-05-25 10:21:58 +08:00
|
|
|
self.CP.fingerprintSource == car.CarParams.FingerprintSource.can
|
2021-04-20 18:00:36 +08:00
|
|
|
community_feature_disallowed = community_feature and (not community_feature_toggle)
|
2020-05-13 06:06:48 +08:00
|
|
|
self.read_only = not car_recognized or not controller_available or \
|
|
|
|
self.CP.dashcamOnly or community_feature_disallowed
|
|
|
|
if self.read_only:
|
2021-10-08 23:54:34 +08:00
|
|
|
safety_config = car.CarParams.SafetyConfig.new_message()
|
|
|
|
safety_config.safetyModel = car.CarParams.SafetyModel.noOutput
|
|
|
|
self.CP.safetyConfigs = [safety_config]
|
2020-05-13 06:06:48 +08:00
|
|
|
|
2021-05-01 04:55:17 +08:00
|
|
|
# Write CarParams for radard
|
2020-05-13 06:06:48 +08:00
|
|
|
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
|
|
|
|
2021-08-31 00:32:52 +08:00
|
|
|
self.LoC = LongControl(self.CP)
|
2020-05-13 06:06:48 +08:00
|
|
|
self.VM = VehicleModel(self.CP)
|
|
|
|
|
2021-03-12 13:08:51 +08:00
|
|
|
if self.CP.steerControlType == car.CarParams.SteerControlType.angle:
|
|
|
|
self.LaC = LatControlAngle(self.CP)
|
|
|
|
elif self.CP.lateralTuning.which() == 'pid':
|
2021-10-04 16:03:53 +08:00
|
|
|
self.LaC = LatControlPID(self.CP, self.CI)
|
2020-05-13 06:06:48 +08:00
|
|
|
elif self.CP.lateralTuning.which() == 'indi':
|
|
|
|
self.LaC = LatControlINDI(self.CP)
|
|
|
|
elif self.CP.lateralTuning.which() == 'lqr':
|
|
|
|
self.LaC = LatControlLQR(self.CP)
|
|
|
|
|
2021-05-01 04:55:17 +08:00
|
|
|
self.initialized = False
|
2020-05-13 06:06:48 +08:00
|
|
|
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
|
2021-11-11 05:01:42 +08:00
|
|
|
self.cruise_mismatch_counter = 0
|
2022-01-04 06:13:45 +08:00
|
|
|
self.can_rcv_error_counter = 0
|
2020-05-13 06:06:48 +08:00
|
|
|
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
|
2021-10-01 17:09:56 +08:00
|
|
|
self.button_timers = {ButtonEvent.Type.decelCruise: 0, ButtonEvent.Type.accelCruise: 0}
|
2021-12-16 20:08:20 +08:00
|
|
|
self.last_actuators = car.CarControl.Actuators.new_message()
|
2020-05-13 06:06:48 +08:00
|
|
|
|
2021-05-01 04:55:17 +08:00
|
|
|
# TODO: no longer necessary, aside from process replay
|
2021-03-15 18:33:45 +08:00
|
|
|
self.sm['liveParameters'].valid = True
|
2020-05-13 06:06:48 +08:00
|
|
|
|
2021-09-24 08:15:33 +08:00
|
|
|
self.startup_event = get_startup_event(car_recognized, controller_available, len(self.CP.carFw) > 0)
|
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)
|
2021-07-11 14:50:03 +08:00
|
|
|
if community_feature_disallowed and car_recognized and not self.CP.dashcamOnly:
|
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)
|
2021-11-18 12:29:00 +08:00
|
|
|
if len(self.CP.carFw) > 0:
|
|
|
|
set_offroad_alert("Offroad_CarUnrecognized", True)
|
|
|
|
else:
|
|
|
|
set_offroad_alert("Offroad_NoFirmware", True)
|
2021-03-26 12:37:38 +08:00
|
|
|
elif self.read_only:
|
|
|
|
self.events.add(EventName.dashcamMode, static=True)
|
2021-06-12 05:33:17 +08:00
|
|
|
elif self.joystick_mode:
|
|
|
|
self.events.add(EventName.joystickDebug, static=True)
|
|
|
|
self.startup_event = None
|
2020-05-15 06:21:21 +08:00
|
|
|
|
|
|
|
# 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
|
|
|
|
2021-05-01 04:55:17 +08:00
|
|
|
# Don't add any more events if not initialized
|
|
|
|
if not self.initialized:
|
|
|
|
self.events.add(EventName.controlsInitializing)
|
|
|
|
return
|
|
|
|
|
2020-05-13 06:06:48 +08:00
|
|
|
# Create events for battery, temperature, disk space, and memory
|
2021-10-16 06:04:19 +08:00
|
|
|
if EON and (self.sm['peripheralState'].pandaType != PandaType.uno) and \
|
|
|
|
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-06-16 17:59:15 +08:00
|
|
|
if self.sm['deviceState'].freeSpacePercent < 7 and not SIMULATION:
|
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-05-27 10:47:10 +08:00
|
|
|
# TODO: make tici threshold the same
|
2021-06-16 17:59:15 +08:00
|
|
|
if self.sm['deviceState'].memoryUsagePercent > (90 if TICI else 65) and not SIMULATION:
|
2020-05-15 06:21:21 +08:00
|
|
|
self.events.add(EventName.lowMemory)
|
2021-10-26 06:03:28 +08:00
|
|
|
|
|
|
|
# TODO: enable this once loggerd CPU usage is more reasonable
|
|
|
|
#cpus = list(self.sm['deviceState'].cpuUsagePercent)[:(-1 if EON else None)]
|
|
|
|
#if max(cpus, default=0) > 95 and not SIMULATION:
|
|
|
|
# self.events.add(EventName.highCpuUsage)
|
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
|
2022-01-10 18:26:58 +08:00
|
|
|
if self.sm['peripheralState'].pandaType in (PandaType.uno, PandaType.dos):
|
2021-10-04 17:30:11 +08:00
|
|
|
if self.sm['peripheralState'].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)
|
2022-01-10 18:26:58 +08:00
|
|
|
elif self.sm['lateralPlan'].laneChangeState in (LaneChangeState.laneChangeStarting,
|
|
|
|
LaneChangeState.laneChangeFinishing):
|
2020-05-15 06:21:21 +08:00
|
|
|
self.events.add(EventName.laneChange)
|
2020-09-10 18:19:14 +08:00
|
|
|
|
2022-01-04 06:13:45 +08:00
|
|
|
if not CS.canValid:
|
2020-05-15 06:21:21 +08:00
|
|
|
self.events.add(EventName.canError)
|
2021-03-17 21:20:05 +08:00
|
|
|
|
2021-10-08 23:54:34 +08:00
|
|
|
for i, pandaState in enumerate(self.sm['pandaStates']):
|
2021-10-29 19:04:26 +08:00
|
|
|
# All pandas must match the list of safetyConfigs, and if outside this list, must be silent or noOutput
|
2021-10-08 23:54:34 +08:00
|
|
|
if i < len(self.CP.safetyConfigs):
|
|
|
|
safety_mismatch = pandaState.safetyModel != self.CP.safetyConfigs[i].safetyModel or pandaState.safetyParam != self.CP.safetyConfigs[i].safetyParam
|
|
|
|
else:
|
2021-10-29 19:04:26 +08:00
|
|
|
safety_mismatch = pandaState.safetyModel not in IGNORED_SAFETY_MODES
|
2021-10-08 23:54:34 +08:00
|
|
|
if safety_mismatch or self.mismatch_counter >= 200:
|
|
|
|
self.events.add(EventName.controlsMismatch)
|
2021-02-02 05:41:04 +08:00
|
|
|
|
2021-10-29 19:04:26 +08:00
|
|
|
if log.PandaState.FaultType.relayMalfunction in pandaState.faults:
|
|
|
|
self.events.add(EventName.relayMalfunction)
|
|
|
|
|
2021-11-11 05:01:42 +08:00
|
|
|
# Check for HW or system issues
|
2021-02-04 11:57:30 +08:00
|
|
|
if len(self.sm['radarState'].radarErrors):
|
|
|
|
self.events.add(EventName.radarFault)
|
2021-10-08 23:54:34 +08:00
|
|
|
elif not self.sm.valid["pandaStates"]:
|
2021-05-15 12:26:02 +08:00
|
|
|
self.events.add(EventName.usbError)
|
2022-01-04 06:13:45 +08:00
|
|
|
elif not self.sm.all_alive_and_valid() or self.can_rcv_error:
|
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:
|
2021-07-08 09:43:41 +08:00
|
|
|
invalid = [s for s, valid in self.sm.valid.items() if not valid]
|
|
|
|
not_alive = [s for s, alive in self.sm.alive.items() if not alive]
|
|
|
|
cloudlog.event("commIssue", invalid=invalid, not_alive=not_alive)
|
2021-02-02 05:41:04 +08:00
|
|
|
self.logged_comm_issue = True
|
|
|
|
else:
|
|
|
|
self.logged_comm_issue = False
|
|
|
|
|
2021-11-11 05:01:42 +08:00
|
|
|
if not self.sm['liveParameters'].valid:
|
|
|
|
self.events.add(EventName.vehicleModelInvalid)
|
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-10-20 22:16:40 +08:00
|
|
|
|
2021-11-13 10:22:39 +08:00
|
|
|
if not REPLAY:
|
|
|
|
# Check for mismatch between openpilot and car's PCM
|
|
|
|
cruise_mismatch = CS.cruiseState.enabled and (not self.enabled or not self.CP.pcmCruise)
|
|
|
|
self.cruise_mismatch_counter = self.cruise_mismatch_counter + 1 if cruise_mismatch else 0
|
2021-12-13 05:35:12 +08:00
|
|
|
if self.cruise_mismatch_counter > int(3. / DT_CTRL):
|
2021-11-13 10:22:39 +08:00
|
|
|
self.events.add(EventName.cruiseMismatch)
|
2021-11-11 05:01:42 +08:00
|
|
|
|
|
|
|
# Check for FCW
|
2021-10-20 22:16:40 +08:00
|
|
|
stock_long_is_braking = self.enabled and not self.CP.openpilotLongitudinalControl and CS.aEgo < -1.5
|
|
|
|
model_fcw = self.sm['modelV2'].meta.hardBrakePredicted and not CS.brakePressed and not stock_long_is_braking
|
2021-09-30 02:55:54 +08:00
|
|
|
planner_fcw = self.sm['longitudinalPlan'].fcw and self.enabled
|
|
|
|
if planner_fcw or model_fcw:
|
2020-05-15 06:21:21 +08:00
|
|
|
self.events.add(EventName.fcw)
|
2020-11-24 05:42:18 +08:00
|
|
|
|
2021-06-24 08:01:17 +08:00
|
|
|
if TICI:
|
2021-05-22 05:53:30 +08:00
|
|
|
logs = messaging.drain_sock(self.log_sock, wait_for_one=False)
|
|
|
|
messages = []
|
|
|
|
for m in logs:
|
|
|
|
try:
|
|
|
|
messages.append(m.androidLog.message)
|
|
|
|
except UnicodeDecodeError:
|
|
|
|
pass
|
|
|
|
|
2022-01-10 18:26:58 +08:00
|
|
|
for err in ("ERROR_CRC", "ERROR_ECC", "ERROR_STREAM_UNDERFLOW", "APPLY FAILED"):
|
2021-05-22 05:53:30 +08:00
|
|
|
for m in messages:
|
|
|
|
if err not in m:
|
|
|
|
continue
|
|
|
|
|
|
|
|
csid = m.split("CSID:")[-1].split(" ")[0]
|
2021-06-02 07:56:33 +08:00
|
|
|
evt = {"0": EventName.roadCameraError, "1": EventName.wideRoadCameraError,
|
2021-05-22 05:53:30 +08:00
|
|
|
"2": EventName.driverCameraError}.get(csid, None)
|
|
|
|
if evt is not None:
|
|
|
|
self.events.add(evt)
|
2021-05-20 12:28:16 +08:00
|
|
|
|
2021-01-15 08:03:16 +08:00
|
|
|
# TODO: fix simulator
|
|
|
|
if not SIMULATION:
|
|
|
|
if not NOSENSOR:
|
2021-06-24 08:01:17 +08:00
|
|
|
if not self.sm['liveLocationKalman'].gpsOK and (self.distance_traveled > 1000):
|
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-05-20 12:28:16 +08:00
|
|
|
if not self.sm.all_alive(self.camera_packets):
|
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)
|
2021-06-04 00:26:53 +08:00
|
|
|
if self.sm['liveLocationKalman'].excessiveResets:
|
|
|
|
self.events.add(EventName.localizerMalfunction)
|
2020-01-18 04:48:30 +08:00
|
|
|
|
2021-02-05 12:51:37 +08:00
|
|
|
# Check if all manager processes are running
|
2021-12-25 03:18:39 +08:00
|
|
|
not_running = {p.name for p in self.sm['managerState'].processes if not p.running}
|
2021-02-05 12:51:37 +08:00
|
|
|
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-07-08 10:42:26 +08:00
|
|
|
speeds = self.sm['longitudinalPlan'].speeds
|
|
|
|
if len(speeds) > 1:
|
|
|
|
v_future = speeds[-1]
|
|
|
|
else:
|
|
|
|
v_future = 100.0
|
2021-09-12 09:01:54 +08:00
|
|
|
if CS.brakePressed and v_future >= self.CP.vEgoStarting \
|
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
|
|
|
|
2021-05-01 04:55:17 +08:00
|
|
|
all_valid = CS.canValid and self.sm.all_alive_and_valid()
|
2021-09-01 01:48:21 +08:00
|
|
|
if not self.initialized and (all_valid or self.sm.frame * DT_CTRL > 3.5 or SIMULATION):
|
2021-09-14 13:03:08 +08:00
|
|
|
if not self.read_only:
|
|
|
|
self.CI.init(self.CP, self.can_sock, self.pm.sock['sendcan'])
|
2021-05-01 04:55:17 +08:00
|
|
|
self.initialized = True
|
|
|
|
Params().put_bool("ControlsReady", True)
|
|
|
|
|
2020-05-13 06:06:48 +08:00
|
|
|
# Check for CAN timeout
|
|
|
|
if not can_strs:
|
2022-01-04 06:13:45 +08:00
|
|
|
self.can_rcv_error_counter += 1
|
2020-05-13 06:06:48 +08:00
|
|
|
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-10-08 23:54:34 +08:00
|
|
|
# All pandas not in silent mode must have controlsAllowed when openpilot is enabled
|
2021-10-29 19:04:26 +08:00
|
|
|
if any(not ps.controlsAllowed and self.enabled for ps in self.sm['pandaStates']
|
|
|
|
if ps.safetyModel not in IGNORED_SAFETY_MODES):
|
|
|
|
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
|
2021-07-11 04:56:11 +08:00
|
|
|
if not self.CP.pcmCruise:
|
2021-10-05 03:11:17 +08:00
|
|
|
self.v_cruise_kph = update_v_cruise(self.v_cruise_kph, CS.buttonEvents, self.button_timers, self.enabled, self.is_metric)
|
2022-01-06 22:54:19 +08:00
|
|
|
elif CS.cruiseState.enabled:
|
2020-05-13 06:06:48 +08:00
|
|
|
self.v_cruise_kph = CS.cruiseState.speed * CV.MS_TO_KPH
|
2020-01-18 04:48:30 +08:00
|
|
|
|
2021-11-17 05:11:32 +08:00
|
|
|
# decrement the soft disable timer at every step, as it's reset on
|
2020-05-13 06:06:48 +08:00
|
|
|
# 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
|
2021-12-12 09:07:37 +08:00
|
|
|
self.soft_disable_timer = int(SOFT_DISABLE_TIME / DT_CTRL)
|
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-03-12 13:08:51 +08:00
|
|
|
# Update VehicleModel
|
|
|
|
params = self.sm['liveParameters']
|
|
|
|
x = max(params.stiffnessFactor, 0.1)
|
|
|
|
sr = max(params.steerRatio, 0.1)
|
|
|
|
self.VM.update_params(x, sr)
|
|
|
|
|
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()
|
2021-09-07 11:14:01 +08:00
|
|
|
actuators.longControlState = self.LoC.long_control_state
|
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-06-12 05:33:17 +08:00
|
|
|
if not self.joystick_mode:
|
2021-08-31 00:32:52 +08:00
|
|
|
# accel PID loop
|
2021-09-07 08:29:32 +08:00
|
|
|
pid_accel_limits = self.CI.get_pid_accel_limits(self.CP, CS.vEgo, self.v_cruise_kph * CV.KPH_TO_MS)
|
2021-09-11 01:34:18 +08:00
|
|
|
actuators.accel = self.LoC.update(self.active, CS, self.CP, long_plan, pid_accel_limits)
|
2021-03-12 13:08:51 +08:00
|
|
|
|
2021-06-12 05:33:17 +08:00
|
|
|
# Steering PID loop and lateral MPC
|
2021-10-30 05:13:41 +08:00
|
|
|
lat_active = self.active and not CS.steerWarning and not CS.steerError and CS.vEgo > self.CP.minSteerSpeed
|
2021-07-01 05:19:39 +08:00
|
|
|
desired_curvature, desired_curvature_rate = get_lag_adjusted_curvature(self.CP, CS.vEgo,
|
|
|
|
lat_plan.psis,
|
|
|
|
lat_plan.curvatures,
|
|
|
|
lat_plan.curvatureRates)
|
2021-12-16 20:08:20 +08:00
|
|
|
actuators.steer, actuators.steeringAngleDeg, lac_log = self.LaC.update(lat_active, CS, self.CP, self.VM, params, self.last_actuators,
|
2021-07-01 05:19:39 +08:00
|
|
|
desired_curvature, desired_curvature_rate)
|
2021-06-12 05:33:17 +08:00
|
|
|
else:
|
|
|
|
lac_log = log.ControlsState.LateralDebugState.new_message()
|
|
|
|
if self.sm.rcv_frame['testJoystick'] > 0 and self.active:
|
2021-08-31 00:32:52 +08:00
|
|
|
actuators.accel = 4.0*clip(self.sm['testJoystick'].axes[0], -1, 1)
|
2021-06-12 05:33:17 +08:00
|
|
|
|
|
|
|
steer = clip(self.sm['testJoystick'].axes[1], -1, 1)
|
|
|
|
# max angle is 45 for angle-based cars
|
|
|
|
actuators.steer, actuators.steeringAngleDeg = steer, steer * 45.
|
|
|
|
|
|
|
|
lac_log.active = True
|
|
|
|
lac_log.steeringAngleDeg = CS.steeringAngleDeg
|
|
|
|
lac_log.output = steer
|
|
|
|
lac_log.saturated = abs(steer) >= 0.9
|
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-01-18 04:48:30 +08:00
|
|
|
|
2022-01-10 18:27:31 +08:00
|
|
|
dpath_points = lat_plan.dPathPoints
|
|
|
|
if len(dpath_points):
|
2021-03-12 13:08:51 +08:00
|
|
|
# Check if we deviated from the path
|
2021-12-02 05:53:42 +08:00
|
|
|
# TODO use desired vs actual curvature
|
2022-01-10 18:27:31 +08:00
|
|
|
left_deviation = actuators.steer > 0 and dpath_points[0] < -0.20
|
|
|
|
right_deviation = actuators.steer < 0 and dpath_points[0] > 0.20
|
2021-03-12 13:08:51 +08:00
|
|
|
|
|
|
|
if left_deviation or right_deviation:
|
|
|
|
self.events.add(EventName.steerSaturated)
|
2020-01-18 04:48:30 +08:00
|
|
|
|
2021-08-20 01:00:03 +08:00
|
|
|
# Ensure no NaNs/Infs
|
|
|
|
for p in ACTUATOR_FIELDS:
|
2021-09-07 09:45:59 +08:00
|
|
|
attr = getattr(actuators, p)
|
|
|
|
if not isinstance(attr, Number):
|
|
|
|
continue
|
|
|
|
|
|
|
|
if not math.isfinite(attr):
|
2021-08-20 01:00:03 +08:00
|
|
|
cloudlog.error(f"actuators.{p} not finite {actuators.to_dict()}")
|
|
|
|
setattr(actuators, p, 0.0)
|
|
|
|
|
2021-07-08 10:42:26 +08:00
|
|
|
return actuators, lac_log
|
2020-04-17 02:38:31 +08:00
|
|
|
|
2021-10-01 17:09:56 +08:00
|
|
|
def update_button_timers(self, buttonEvents):
|
|
|
|
# increment timer for buttons still pressed
|
|
|
|
for k in self.button_timers.keys():
|
|
|
|
if self.button_timers[k] > 0:
|
|
|
|
self.button_timers[k] += 1
|
|
|
|
|
|
|
|
for b in buttonEvents:
|
|
|
|
if b.type.raw in self.button_timers:
|
|
|
|
self.button_timers[b.type.raw] = 1 if b.pressed else 0
|
|
|
|
|
2021-07-08 10:42:26 +08:00
|
|
|
def publish_logs(self, CS, start_time, actuators, 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
|
2021-10-06 05:32:39 +08:00
|
|
|
CC.active = self.active
|
2020-05-13 06:06:48 +08:00
|
|
|
CC.actuators = actuators
|
|
|
|
|
2022-01-04 19:04:03 +08:00
|
|
|
orientation_value = self.sm['liveLocationKalman'].orientationNED.value
|
|
|
|
if len(orientation_value) > 2:
|
|
|
|
CC.roll = orientation_value[0]
|
|
|
|
CC.pitch = orientation_value[1]
|
2021-11-13 04:21:22 +08:00
|
|
|
|
2021-09-29 03:30:50 +08:00
|
|
|
CC.cruiseControl.cancel = CS.cruiseState.enabled and (not self.enabled or not self.CP.pcmCruise)
|
2021-06-12 05:33:17 +08:00
|
|
|
if self.joystick_mode and self.sm.rcv_frame['testJoystick'] > 0 and self.sm['testJoystick'].buttons[0]:
|
|
|
|
CC.cruiseControl.cancel = True
|
|
|
|
|
2022-01-04 19:04:03 +08:00
|
|
|
hudControl = CC.hudControl
|
|
|
|
hudControl.setSpeed = float(self.v_cruise_kph * CV.KPH_TO_MS)
|
|
|
|
hudControl.speedVisible = self.enabled
|
|
|
|
hudControl.lanesVisible = self.enabled
|
|
|
|
hudControl.leadVisible = self.sm['longitudinalPlan'].hasLead
|
2020-05-13 06:06:48 +08:00
|
|
|
|
2022-01-04 19:04:03 +08:00
|
|
|
hudControl.rightLaneVisible = True
|
|
|
|
hudControl.leftLaneVisible = True
|
2020-05-13 06:06:48 +08:00
|
|
|
|
|
|
|
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
|
|
|
|
|
2022-01-04 19:04:03 +08:00
|
|
|
model_v2 = self.sm['modelV2']
|
|
|
|
desire_prediction = model_v2.meta.desirePrediction
|
|
|
|
if len(desire_prediction) and ldw_allowed:
|
2021-10-26 14:47:12 +08:00
|
|
|
right_lane_visible = self.sm['lateralPlan'].rProb > 0.5
|
|
|
|
left_lane_visible = self.sm['lateralPlan'].lProb > 0.5
|
2022-01-04 19:04:03 +08:00
|
|
|
l_lane_change_prob = desire_prediction[Desire.laneChangeLeft - 1]
|
|
|
|
r_lane_change_prob = desire_prediction[Desire.laneChangeRight - 1]
|
2020-05-13 06:06:48 +08:00
|
|
|
|
2022-01-04 19:04:03 +08:00
|
|
|
lane_lines = model_v2.laneLines
|
|
|
|
l_lane_close = left_lane_visible and (lane_lines[1].y[0] > -(1.08 + CAMERA_OFFSET))
|
|
|
|
r_lane_close = right_lane_visible and (lane_lines[2].y[0] < (1.08 - CAMERA_OFFSET))
|
2020-05-13 06:06:48 +08:00
|
|
|
|
2022-01-04 19:04:03 +08:00
|
|
|
hudControl.leftLaneDepart = bool(l_lane_change_prob > LANE_DEPARTURE_THRESHOLD and l_lane_close)
|
|
|
|
hudControl.rightLaneDepart = bool(r_lane_change_prob > LANE_DEPARTURE_THRESHOLD and r_lane_close)
|
|
|
|
|
|
|
|
if hudControl.rightLaneDepart or 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
|
2021-12-12 09:07:37 +08:00
|
|
|
alerts = self.events.create_alerts(self.current_alert_types, [self.CP, self.sm, self.is_metric, self.soft_disable_timer])
|
2021-12-11 11:20:07 +08:00
|
|
|
self.AM.add_many(self.sm.frame, alerts)
|
2022-01-07 14:15:32 +08:00
|
|
|
current_alert = self.AM.process_alerts(self.sm.frame, clear_event)
|
|
|
|
if current_alert:
|
|
|
|
hudControl.visualAlert = current_alert.visual_alert
|
2020-05-13 06:06:48 +08:00
|
|
|
|
2021-05-01 04:55:17 +08:00
|
|
|
if not self.read_only and self.initialized:
|
2020-05-13 06:06:48 +08:00
|
|
|
# send car controls over can
|
2021-12-16 20:08:20 +08:00
|
|
|
self.last_actuators, can_sends = self.CI.apply(CC)
|
2020-05-13 06:06:48 +08:00
|
|
|
self.pm.send('sendcan', can_list_to_can_capnp(can_sends, msgtype='sendcan', valid=CS.canValid))
|
2021-12-16 20:08:20 +08:00
|
|
|
CC.actuatorsOutput = self.last_actuators
|
2020-05-13 06:06:48 +08:00
|
|
|
|
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-03-12 13:08:51 +08:00
|
|
|
# Curvature & Steering angle
|
|
|
|
params = self.sm['liveParameters']
|
2021-12-17 09:34:12 +08:00
|
|
|
|
|
|
|
steer_angle_without_offset = math.radians(CS.steeringAngleDeg - params.angleOffsetDeg)
|
|
|
|
curvature = -self.VM.calc_curvature(steer_angle_without_offset, CS.vEgo, params.roll)
|
2020-05-13 06:06:48 +08:00
|
|
|
|
|
|
|
# controlsState
|
|
|
|
dat = messaging.new_message('controlsState')
|
|
|
|
dat.valid = CS.canValid
|
|
|
|
controlsState = dat.controlsState
|
2022-01-07 14:15:32 +08:00
|
|
|
if current_alert:
|
|
|
|
controlsState.alertText1 = current_alert.alert_text_1
|
|
|
|
controlsState.alertText2 = current_alert.alert_text_2
|
|
|
|
controlsState.alertSize = current_alert.alert_size
|
|
|
|
controlsState.alertStatus = current_alert.alert_status
|
|
|
|
controlsState.alertBlinkingRate = current_alert.alert_rate
|
|
|
|
controlsState.alertType = current_alert.alert_type
|
|
|
|
controlsState.alertSound = current_alert.audible_alert
|
|
|
|
|
2020-05-13 06:06:48 +08:00
|
|
|
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
|
2021-03-12 13:08:51 +08:00
|
|
|
controlsState.curvature = curvature
|
2020-05-13 06:06:48 +08:00
|
|
|
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)
|
|
|
|
controlsState.cumLagMs = -self.rk.remaining * 1000.
|
|
|
|
controlsState.startMonoTime = int(start_time * 1e9)
|
|
|
|
controlsState.forceDecel = bool(force_decel)
|
2022-01-04 06:13:45 +08:00
|
|
|
controlsState.canErrorCounter = self.can_rcv_error_counter
|
2020-05-13 06:06:48 +08:00
|
|
|
|
2022-01-04 19:04:03 +08:00
|
|
|
lat_tuning = self.CP.lateralTuning.which()
|
2021-06-12 05:33:17 +08:00
|
|
|
if self.joystick_mode:
|
|
|
|
controlsState.lateralControlState.debugState = lac_log
|
|
|
|
elif self.CP.steerControlType == car.CarParams.SteerControlType.angle:
|
2021-03-12 13:08:51 +08:00
|
|
|
controlsState.lateralControlState.angleState = lac_log
|
2022-01-04 19:04:03 +08:00
|
|
|
elif lat_tuning == 'pid':
|
2020-05-13 06:06:48 +08:00
|
|
|
controlsState.lateralControlState.pidState = lac_log
|
2022-01-04 19:04:03 +08:00
|
|
|
elif lat_tuning == 'lqr':
|
2020-05-13 06:06:48 +08:00
|
|
|
controlsState.lateralControlState.lqrState = lac_log
|
2022-01-04 19:04:03 +08:00
|
|
|
elif lat_tuning == 'indi':
|
2020-05-13 06:06:48 +08:00
|
|
|
controlsState.lateralControlState.indiState = lac_log
|
2022-01-04 19:04:03 +08:00
|
|
|
|
2020-05-13 06:06:48 +08:00
|
|
|
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
|
|
|
|
2021-05-01 04:55:17 +08:00
|
|
|
if not self.read_only and self.initialized:
|
2020-05-13 06:06:48 +08:00
|
|
|
# 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)
|
2021-07-08 10:42:26 +08:00
|
|
|
actuators, 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
|
2021-07-08 10:42:26 +08:00
|
|
|
self.publish_logs(CS, start_time, actuators, lac_log)
|
2020-05-13 06:06:48 +08:00
|
|
|
self.prof.checkpoint("Sent")
|
2020-01-18 04:48:30 +08:00
|
|
|
|
2021-10-01 17:09:56 +08:00
|
|
|
self.update_button_timers(CS.buttonEvents)
|
|
|
|
|
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()
|