mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-05-20 08:19:05 +08:00
14 lines
245 B
Bash
14 lines
245 B
Bash
#!/bin/sh
|
|
#
|
|
# MAVLink startup script.
|
|
#
|
|
# NOTE: Script variables are declared/initialized/unset in the rcS script.
|
|
#
|
|
|
|
if ! ver hwcmp INTEL_AEROFC_V1
|
|
then
|
|
# Start MAVLink on the USB port
|
|
mavlink start -r 800000 -d /dev/ttyACM0 -m config -x
|
|
fi
|
|
|