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.
15 lines
469 B
15 lines
469 B
6 years ago
|
#!/bin/sh
|
||
|
#
|
||
6 years ago
|
# av_x1-v1 specific board MAVLink startup script.
|
||
|
#------------------------------------------------------------------------------
|
||
6 years ago
|
|
||
|
# AV-X: start MAVLink to companion (connected to TX2)
|
||
6 years ago
|
mavlink start -d /dev/ttyS5 -b 500000 -m osd
|
||
|
mavlink stream -d /dev/ttyS5 -s HIGHRES_IMU -r 250
|
||
|
mavlink stream -d /dev/ttyS5 -s CAMERA_TRIGGER -r 100
|
||
|
mavlink stream -d /dev/ttyS5 -s LOCAL_POSITION_NED -r 50
|
||
|
|
||
6 years ago
|
|
||
|
# AV-X: start MAVLink UDP port 14570
|
||
|
mavlink start -x -u 14570
|