You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							53 lines
						
					
					
						
							1.5 KiB
						
					
					
				
			
		
		
	
	
							53 lines
						
					
					
						
							1.5 KiB
						
					
					
				#!/usr/bin/env python3
 | 
						|
from cereal import car
 | 
						|
from common.params import Params
 | 
						|
from common.realtime import Priority, config_realtime_process
 | 
						|
from selfdrive.swaglog import cloudlog
 | 
						|
from selfdrive.controls.lib.longitudinal_planner import Planner
 | 
						|
from selfdrive.controls.lib.vehicle_model import VehicleModel
 | 
						|
from selfdrive.controls.lib.lateral_planner import LateralPlanner
 | 
						|
import cereal.messaging as messaging
 | 
						|
 | 
						|
 | 
						|
def plannerd_thread(sm=None, pm=None):
 | 
						|
 | 
						|
  config_realtime_process(2, Priority.CTRL_LOW)
 | 
						|
 | 
						|
  cloudlog.info("plannerd is waiting for CarParams")
 | 
						|
  CP = car.CarParams.from_bytes(Params().get("CarParams", block=True))
 | 
						|
  cloudlog.info("plannerd got CarParams: %s", CP.carName)
 | 
						|
 | 
						|
  PL = Planner(CP)
 | 
						|
  PP = LateralPlanner(CP)
 | 
						|
 | 
						|
  VM = VehicleModel(CP)
 | 
						|
 | 
						|
  if sm is None:
 | 
						|
    sm = messaging.SubMaster(['carState', 'controlsState', 'radarState', 'modelV2', 'liveParameters'],
 | 
						|
                             poll=['radarState', 'modelV2'])
 | 
						|
 | 
						|
  if pm is None:
 | 
						|
    pm = messaging.PubMaster(['longitudinalPlan', 'liveLongitudinalMpc', 'lateralPlan', 'liveMpc'])
 | 
						|
 | 
						|
  sm['liveParameters'].valid = True
 | 
						|
  sm['liveParameters'].sensorValid = True
 | 
						|
  sm['liveParameters'].steerRatio = CP.steerRatio
 | 
						|
  sm['liveParameters'].stiffnessFactor = 1.0
 | 
						|
 | 
						|
  while True:
 | 
						|
    sm.update()
 | 
						|
 | 
						|
    if sm.updated['modelV2']:
 | 
						|
      PP.update(sm, CP, VM)
 | 
						|
      PP.publish(sm, pm)
 | 
						|
    if sm.updated['radarState']:
 | 
						|
      PL.update(sm, CP, VM, PP)
 | 
						|
      PL.publish(sm, pm)
 | 
						|
 | 
						|
 | 
						|
def main(sm=None, pm=None):
 | 
						|
  plannerd_thread(sm, pm)
 | 
						|
 | 
						|
 | 
						|
if __name__ == "__main__":
 | 
						|
  main()
 | 
						|
 |