mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-05-02 05:04:08 +08:00
11 lines
281 B
Bash
11 lines
281 B
Bash
#!/bin/sh
|
|
#
|
|
# Board specific MAVLink startup script.
|
|
#------------------------------------------------------------------------------
|
|
|
|
# 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
|