Skip to content
Snippets Groups Projects
Commit 821306bc authored by Lorenz Meier's avatar Lorenz Meier
Browse files

Allow to disable USB interface (but leave it enabled as default), give uORB more stack space

parent 801697c5
No related branches found
No related tags found
No related merge requests found
......@@ -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
#
......
......@@ -37,6 +37,6 @@
APPNAME = uorb
PRIORITY = SCHED_PRIORITY_DEFAULT
STACKSIZE = 2048
STACKSIZE = 4096
include $(APPDIR)/mk/app.mk
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment