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.
|
#!/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
|
|
|