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.
24 lines
340 B
24 lines
340 B
12 years ago
|
#
|
||
|
# Start PX4IO interface (depends on orb, commander)
|
||
|
#
|
||
|
if px4io start
|
||
|
then
|
||
|
#
|
||
|
# Allow PX4IO to recover from midair restarts.
|
||
|
# this is very unlikely, but quite safe and robust.
|
||
|
px4io recovery
|
||
|
|
||
|
#
|
||
|
# Disable px4io topic limiting
|
||
|
#
|
||
|
if [ $BOARD == fmuv1 ]
|
||
|
then
|
||
|
px4io limit 200
|
||
|
else
|
||
|
px4io limit 400
|
||
|
fi
|
||
|
else
|
||
|
# SOS
|
||
|
tone_alarm 6
|
||
|
fi
|