mirror of
https://github.com/PX4/PX4-Autopilot.git
synced 2026-06-02 03:49:12 +08:00
11 lines
339 B
Bash
11 lines
339 B
Bash
#!/bin/sh
|
|
#
|
|
# board specific MAVLink startup script.
|
|
#------------------------------------------------------------------------------
|
|
|
|
if ver hwtypecmp V5X90 V5X91 V5Xa0 V5Xa1 V5X80 V5X81
|
|
then
|
|
# Start MAVLink on the UART connected to the mission computer
|
|
mavlink start -d /dev/ttyS4 -b 3000000 -r 290000 -m onboard_low_bandwidth -x -z
|
|
fi
|