Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 21 additions & 11 deletions remote_launch/launches/talos_launch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,22 @@ launches: [
topics: [
"/talos/dvl/status", "nortek_dvl_msgs/msg/DvlStatus", "0",
"/talos/vectornav/imu", "sensor_msgs/msg/Imu", "0",
"/talos/gyro/raw", "riptide_msgs2/msg/Int32Stamped", "0"
]
},
{
package: "riptide_hardware2",
file: "copro_agent.launch.py",
args: [
"robot:=talos",
],
topics: [
"/talos/gyro/raw", "riptide_msgs2/msg/Int32Stamped", "0",
"/talos/state/firmware", "riptide_msgs2/msg/FirmwareStatus", "0",
"/talos/state/depth/raw", "riptide_msgs2/msg/Depth", "0",
]
},
# {
# package: "riptide_hardware2",
# file: "copro_agent.launch.py",
# args: [
# "robot:=talos",
# ],
# topics: [
# "/talos/state/firmware", "riptide_msgs2/msg/FirmwareStatus", "0",
# "/talos/state/depth/raw", "riptide_msgs2/msg/Depth", "0",
# ]
# },
{
package: "riptide_hardware2",
file: "navigation.launch.py",
Expand Down Expand Up @@ -68,7 +70,7 @@ launches: [
"robot:=talos"
],
topics: [
"/talos/yolo", "sensor_msgs/msg/Image", "0"
"/talos/yolo_orientation/annotated/compressed", "sensor_msgs/msg/CompressedImage", "0"
]
},
{
Expand All @@ -86,5 +88,13 @@ launches: [
"robot:=talos"
],
topics: [ ]
},
{
package: "riptide_hardware2",
file: "diagnostics.launch.py",
args: [
"robot:=talos"
],
topics: [ ]
}
]
34 changes: 22 additions & 12 deletions remote_launch/launches/talos_launch_bench.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,17 @@ launches: [
"/talos/gyro/raw", "riptide_msgs2/msg/Int32Stamped", "0",
]
},
{
package: "riptide_hardware2",
file: "copro_agent.launch.py",
args: [
"robot:=talos",
],
topics: [
"/talos/state/firmware", "riptide_msgs2/msg/FirmwareStatus", "0",
"/talos/state/depth/raw", "riptide_msgs2/msg/Depth", "0",
]
},
# {
# package: "riptide_hardware2",
# file: "copro_agent.launch.py",
# args: [
# "robot:=talos",
# ],
# topics: [
# "/talos/state/firmware", "riptide_msgs2/msg/FirmwareStatus", "0",
# "/talos/state/depth/raw", "riptide_msgs2/msg/Depth", "0",
# ]
# },
{
package: "riptide_hardware2",
file: "navigation.launch.py",
Expand Down Expand Up @@ -70,7 +70,9 @@ launches: [
args: [
"robot:=talos"
],
topics: [ ]
topics: [
"/talos/yolo_orientation/annotated/compressed", "sensor_msgs/msg/CompressedImage", "0"
]
},
{
package: "riptide_mapping2",
Expand All @@ -87,5 +89,13 @@ launches: [
"robot:=talos"
],
topics: [ ]
},
{
package: "riptide_hardware2",
file: "diagnostics.launch.py",
args: [
"robot:=talos"
],
topics: [ ]
}
]
4 changes: 3 additions & 1 deletion remote_launch/launches/talos_launch_sim_hil.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@ launches: [
args: [
"robot:=talos"
],
topics: [ ]
topics: [
"/talos/yolo_orientation/annotated/compressed", "sensor_msgs/msg/CompressedImage", "0"
]
},
{
package: "riptide_mapping2",
Expand Down
1 change: 1 addition & 0 deletions remote_launch/remote_launch/launcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -754,6 +754,7 @@ async def run_discovery_server(self):
try:
import subprocess
subprocess.run(["pkill", "-f", "rmw_zenohd"], check=False, capture_output=True)
subprocess.run(["ros2", "daemon", "stop"], check=False, capture_output=True)
await asyncio.sleep(1) # Give time for cleanup
except:
pass
Expand Down