Skip to content

Commit b855c45

Browse files
led: allow to use namespaced mavros (from #439)
rosout_agg cannot be namespaced: https://github.com/ros/ros_comm/blob/f5fa3a168760d62e9693f10dcb9adfffc6132d22/tools/rosout/rosout.cpp#L127 Co-Authored-By: Playergeek181 <[email protected]>
1 parent 26245df commit b855c45

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

clover/src/led.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -319,8 +319,8 @@ int main(int argc, char **argv)
319319

320320
auto set_effect = nh.advertiseService("set_effect", &setEffect);
321321

322-
auto mavros_state_sub = nh.subscribe("/mavros/state", 1, &handleMavrosState);
323-
auto battery_sub = nh.subscribe("/mavros/battery", 1, &handleBattery);
322+
auto mavros_state_sub = nh.subscribe("mavros/state", 1, &handleMavrosState);
323+
auto battery_sub = nh.subscribe("mavros/battery", 1, &handleBattery);
324324
auto rosout_sub = nh.subscribe("/rosout_agg", 1, &handleLog);
325325

326326
timer = nh.createTimer(ros::Duration(0), &proceed, false, false);

0 commit comments

Comments
 (0)