Skip to content

Commit f37f441

Browse files
committed
Fix launch file for rajant using new rssi polling
1 parent b7d822c commit f37f441

1 file changed

Lines changed: 4 additions & 17 deletions

File tree

interface_rajant/launch/rajant_nodes.launch.py

Lines changed: 4 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -40,22 +40,10 @@ def generate_launch_description():
4040
radio_configs = LaunchConfiguration('radio_configs')
4141

4242
# Define nodes
43-
rajant_query_node = Node(
43+
rajant_peer_rssi = Node(
4444
package='interface_rajant',
45-
executable='rajant_query.py',
46-
name='rajant_query',
47-
output='screen',
48-
parameters=[{
49-
'robot_name': robot_name,
50-
'robot_configs': robot_configs,
51-
'radio_configs': radio_configs
52-
}]
53-
)
54-
55-
rajant_parser_node = Node(
56-
package='interface_rajant',
57-
executable='rajant_parser.py',
58-
name='rajant_parser',
45+
executable='rajant_peer_rssi.py',
46+
name='rajant_peer_rssi',
5947
output='screen',
6048
parameters=[{
6149
'robot_name': robot_name,
@@ -68,6 +56,5 @@ def generate_launch_description():
6856
robot_name_arg,
6957
robot_configs_arg,
7058
radio_configs_arg,
71-
rajant_query_node,
72-
rajant_parser_node
59+
rajant_peer_rssi
7360
])

0 commit comments

Comments
 (0)