ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

prr_shyam's profile - activity

2016-07-02 18:12:23 -0500 received badge  Famous Question (source)
2015-06-22 15:48:25 -0500 received badge  Popular Question (source)
2015-06-05 13:31:32 -0500 commented answer Roslaunch not working

Thanks a lot. It works now.

2015-06-05 13:30:58 -0500 received badge  Scholar (source)
2015-06-05 13:30:56 -0500 received badge  Supporter (source)
2015-06-03 17:14:48 -0500 received badge  Notable Question (source)
2015-06-03 10:19:48 -0500 commented question Roslaunch not working

hello as I mentioned above in the post , I am not getting any error message the node keeps on running but one more thing I found out was while using rosrun I have to run simulator node before mission control node for it to work otherwise between the nodes no data is passed. Thank you

2015-06-03 02:21:40 -0500 received badge  Popular Question (source)
2015-06-02 18:58:14 -0500 asked a question Roslaunch not working

I have two nodes - Mission Control and Simulator. Mission control publishes to command topic and subscribes to telemetry topic while simulator node subscribes to command topic and publishes to telemetry topic. When I use rosrun both runs fine but only mission control node runs when I use roslaunch command. the printed message on the terminal is "The Goal Latitude is 33 and Goal Longitude is -84" and it keeps on running ... No error message. I also know that both nodes are running (used rosnode list to check it). Also both telemetry topic and commands topic are running (rostopic list) The following is my XML code. Please help. Thanks in advance.

<launch>
  <group> 
    <node pkg="groundcontrolstation" type="missioncontrol.py" name="mission_control"  output="screen"/>
    <node pkg="groundcontrolstation" type="simulator.py" name="simulator" output="screen" />
  </group>
</launch>
2015-06-02 17:45:19 -0500 asked a question Roslaunch not working

I have two nodes - Mission Control and Simulator. Mission control publishes to command topic and subscribes to telemetry topic while simulator node subscribes to command topic and publishes to telemetry topic. When I use rosrun both runs fine but it does not work when I use roslaunch command. The following is my XML code. Please help. Thanks in advance.

<launch>

<group> 
 <node pkg="groundcontrolstation" type="missioncontrol.py" name="mission_control"  output="screen"/>
 <node pkg="groundcontrolstation" type="simulator.py" name="simulator" output="screen" />
   </group>
 </launch>