mirror of
https://gitee.com/xiaohuolufeihua/bizhang_-obav.git
synced 2026-05-22 01:12:31 +00:00
17 lines
261 B
Io
17 lines
261 B
Io
#!nsh
|
|
#
|
|
# PX4IO interface init script.
|
|
#
|
|
|
|
if px4io start
|
|
then
|
|
# Allow PX4IO to recover from midair restarts.
|
|
px4io recovery
|
|
|
|
# Adjust PX4IO update rate limit.
|
|
px4io limit 400
|
|
else
|
|
echo "PX4IO start failed" >> $LOG_FILE
|
|
tune_control play -m ${TUNE_ERR}
|
|
fi
|