mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-02-19 19:23:56 +08:00
* simplified change to mpc dynamics * add jerk pts * increase jerk cost * increase jerk pts multipler to master value * Add final commit * 1456d261-d232-4654-8885-4d9fde883894/440 ac1a6744-85b0-4ec6-8ba7-608d0717b8f1/750 * some copies are useful * update model replay ref * less frames in model replay onnx cpu * 1456d261-d232-4654-8885-4d9fde883894/440 264b67f5-3f52-4b58-b11f-58dd8aaf08bf/950 * 1456d261-d232-4654-8885-4d9fde883894/440 236fc556-fba3-4255-8ccf-684b22637160/950 * c9d10c64-bea4-41ec-8ca3-d8c886fda172/440 26d73dd2-862a-44ae-bbdd-32cc4f397ad7/900 * Fix couple tests * Update ref * Unused for now * Add lateral factor comment * Unused variable Co-authored-by: nuwandavek <vivekaithal44@gmail.com> Co-authored-by: Bruce Wayne <yassine@comma.ai> Co-authored-by: Yassine Yousfi <yyousfi1@binghamton.edu> Co-authored-by: Bruce Wayne <batman@gpu06.internal>
50 lines
1.4 KiB
Python
Executable File
50 lines
1.4 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
from cereal import car
|
|
from common.params import Params
|
|
from common.realtime import Priority, config_realtime_process
|
|
from system.swaglog import cloudlog
|
|
from selfdrive.controls.lib.longitudinal_planner import Planner
|
|
from selfdrive.controls.lib.lateral_planner import LateralPlanner
|
|
import cereal.messaging as messaging
|
|
|
|
|
|
def plannerd_thread(sm=None, pm=None):
|
|
config_realtime_process(5, Priority.CTRL_LOW)
|
|
|
|
cloudlog.info("plannerd is waiting for CarParams")
|
|
params = Params()
|
|
CP = car.CarParams.from_bytes(params.get("CarParams", block=True))
|
|
cloudlog.info("plannerd got CarParams: %s", CP.carName)
|
|
|
|
use_lanelines = False
|
|
wide_camera = params.get_bool('WideCameraOnly')
|
|
|
|
cloudlog.event("e2e mode", on=use_lanelines)
|
|
|
|
longitudinal_planner = Planner(CP)
|
|
lateral_planner = LateralPlanner(CP, use_lanelines=use_lanelines, wide_camera=wide_camera)
|
|
|
|
if sm is None:
|
|
sm = messaging.SubMaster(['carState', 'controlsState', 'radarState', 'modelV2'],
|
|
poll=['radarState', 'modelV2'], ignore_avg_freq=['radarState'])
|
|
|
|
if pm is None:
|
|
pm = messaging.PubMaster(['longitudinalPlan', 'lateralPlan'])
|
|
|
|
while True:
|
|
sm.update()
|
|
|
|
if sm.updated['modelV2']:
|
|
lateral_planner.update(sm)
|
|
lateral_planner.publish(sm, pm)
|
|
longitudinal_planner.update(sm)
|
|
longitudinal_planner.publish(sm, pm)
|
|
|
|
|
|
def main(sm=None, pm=None):
|
|
plannerd_thread(sm, pm)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|