mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-05-22 17:07:34 +08:00
Allow to disable USB interface (but leave it enabled as default), give uORB more stack space
This commit is contained in:
+9
-4
@@ -18,7 +18,7 @@
|
||||
# can change this to prevent automatic startup of the flight script.
|
||||
#
|
||||
set MODE autostart
|
||||
set USB no
|
||||
set USB autoconnect
|
||||
|
||||
#
|
||||
# Try to mount the microSD card.
|
||||
@@ -46,11 +46,16 @@ fi
|
||||
#
|
||||
# Check for USB host
|
||||
#
|
||||
if sercon
|
||||
if [ $USB != autoconnect ]
|
||||
then
|
||||
echo "[init] USB interface connected"
|
||||
echo "[init] not connecting USB"
|
||||
else
|
||||
echo "[init] No USB connected"
|
||||
if sercon
|
||||
then
|
||||
echo "[init] USB interface connected"
|
||||
else
|
||||
echo "[init] No USB connected"
|
||||
fi
|
||||
fi
|
||||
|
||||
#
|
||||
|
||||
Reference in New Issue
Block a user