diff --git a/Documentation/NuttShell.html b/Documentation/NuttShell.html index cc3f078ddfd..7ad96da79b6 100644 --- a/Documentation/NuttShell.html +++ b/Documentation/NuttShell.html @@ -3349,11 +3349,7 @@ int hello_main(int argc, char *argv[])
- And finally, the apps/examples/Makefilewill execute the context target in all configured examplesub-directores, getting us finally to apps/examples/Makefile (which is covered below).
- At the conclusion of the context phase, the apps/Makefile will touch a file called .context in the apps/ directory, preventing any further configurations during any subsequent context phase build attempts.
-
apps/examples/Makefile will execute the context target in all configured examplesub-directores, getting us finally to apps/examples/Makefile which is covered below.
@@ -3417,9 +3413,8 @@ STACKSIZE = 2048
When the hello command is executed, it will start the task with entry point hello_main() with the default priority and with a stack size of 2K.
-.context: +context: $(call REGISTER,$(APPNAME),$(PRIORITY),$(STACKSIZE),$(APPNAME)_main) - @touch $@