Files
dreamDeckAutopilot/sensors/newton-m2/launch/include/newton_m2_serial_reader.launch
T
2026-07-27 13:51:19 +08:00

11 lines
544 B
XML

<launch>
<arg name="outPutSentenceTopic" default="/m2/nmeaSentence"/>
<arg name="gpsComChannel" default="/dev/ttyUSB0"/>
<arg name="gpsComBaudRate" default="115200"/>
<node name="serial_reader_node" pkg="newton-m2" type="serial_reader_node" output="screen">
<param name="outPutSentenceTopic" value="$(arg outPutSentenceTopic)" type="string"/>
<param name="gpsComChannel" value="$(arg gpsComChannel)" type="string"/>
<param name="gpsComBaudRate" value="$(arg gpsComBaudRate)" type="int"/>
</node>
</launch>