Files
bizhang_-obav/boards/cubepilot/cubeorange/init/rc.board_mavlink

14 lines
344 B
Plaintext
Raw Normal View History

#!/bin/sh
#
# Board specific MAVLink startup script.
#------------------------------------------------------------------------------
# Start MAVLink on the USB port
mavlink start -d /dev/ttyACM0
# Start ADS-B receiver mavlink connection if console not present
if [ ! -e /dev/console ]
then
mavlink start -d /dev/ttyS4 -b 57600 -m minimal
fi