[ros-users] [Discourse.ros.org] [ROS Projects] Tractobots, …

Top Page
Attachments:
Message as email
+ (text/plain)
Delete this message
Reply to this message
Author: Kyler Laird via ros-users
Date:  
To: ros-users
Subject: [ros-users] [Discourse.ros.org] [ROS Projects] Tractobots, my attempts at field robots



I decided to use RMC messages from the GPS so that I can get velocity data. There's lots more information that I need, though. For example, I'll want to check on the (RTCM) corrections, and I must stop if I ever lose an RTK solution. I also need to push raw sentences over Ethernet to my planter monitor.

To handle this, I configured one node to listen to the GPS and another to interpret the messages. Here's my launch file:

    <launch>
    <node name="gps" pkg="nmea_navsat_driver" type="nmea_topic_serial_reader">
        <param name="port" value="/dev/gps_nmea" />
        <param name="baud" value="115200" />
    </node>


    <node name="nmea" pkg="nmea_navsat_driver" type="nmea_topic_driver">
        <param name="useRMC" value="True" />
    </node>
    </launch>


Now, in addition to /fix and /vel, I get raw output on /nmea_sentence.






---
[Visit Topic](https://discourse.ros.org/t/tractobots-my-attempts-at-field-robots/1486/42) or reply to this email to respond.


If you do not want to receive messages from ros-users please use the unsubscribe link below. If you use the one above, you will stop all of ros-users from receiving updates.
______________________________________________________________________________
ros-users mailing list

http://lists.ros.org/mailman/listinfo/ros-users
Unsubscribe: <http://lists.ros.org/mailman//options/ros-users>