mirror of
https://gitee.com/xiaohuolufeihua/bizhang_-obav.git
synced 2026-05-22 01:12:31 +00:00
- remove script dependency on hard coded tone numbers - fix bug restarting repeating tone after stop
24 lines
344 B
Io
24 lines
344 B
Io
#
|
|
# 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 error
|
|
fi
|