2025-10-30 11:10:23 +08:00
|
|
|
#!/bin/bash
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
|
|
# 加载你的工作空间环境
|
2025-11-03 09:26:15 +08:00
|
|
|
source ~/Downloads/sweeper_200/install/setup.bash
|
2025-10-30 11:10:23 +08:00
|
|
|
|
|
|
|
|
# 启动节点
|
|
|
|
|
ros2 run radio_ctrl radio_ctrl_node &
|
|
|
|
|
ros2 run mc mc_node &
|
|
|
|
|
ros2 run ctrl_arbiter ctrl_arbiter_node &
|
|
|
|
|
ros2 run mqtt_report mqtt_report_node &
|
|
|
|
|
ros2 launch rslidar_sdk start_double.launch.py &
|
2025-11-03 09:26:15 +08:00
|
|
|
ros2 run rtk rtk_node &
|
2025-10-30 11:10:23 +08:00
|
|
|
ros2 run route route_node &
|
2025-11-03 09:26:15 +08:00
|
|
|
ros2 run sub sub_node &
|
2025-10-30 11:10:23 +08:00
|
|
|
ros2 run task_manager task_manager_node &
|
|
|
|
|
ros2 run pl pl_node &
|
|
|
|
|
ros2 launch fu fu.launch.py &
|
2025-11-03 09:26:15 +08:00
|
|
|
ros2 run pub_gps pub_gps_node &
|
2025-10-30 11:10:23 +08:00
|
|
|
|
|
|
|
|
wait
|