You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
390 B
13 lines
390 B
#!/bin/sh
|
|
#
|
|
# PX4 FMUv6X-RT specific board MAVLink startup script.
|
|
#------------------------------------------------------------------------------
|
|
|
|
# if skynode base board is detected start Mavlink on Telem2
|
|
if ver hwbasecmp 009 010 011
|
|
then
|
|
mavlink start -d /dev/ttyS5 -b 3000000 -r 290000 -m onboard_low_bandwidth -x -z
|
|
|
|
# Ensure nothing else starts on TEL2 (ttyS5)
|
|
set PRT_TEL2_ 1
|
|
fi
|
|
|