aboutsummaryrefslogtreecommitdiff
path: root/apps/README.txt
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2013-01-06 17:00:08 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2013-01-06 17:00:08 +0000
commit0d86268de677a844efa345638650dcaa6bf12764 (patch)
treec6e57e765f7e596480a82217fd49cd3528ee0b58 /apps/README.txt
parent362d3bb5d2257092e30c5ff9c27cd713403a87df (diff)
downloadpx4-firmware-0d86268de677a844efa345638650dcaa6bf12764.tar.gz
px4-firmware-0d86268de677a844efa345638650dcaa6bf12764.tar.bz2
px4-firmware-0d86268de677a844efa345638650dcaa6bf12764.zip
Remove CONFIG_BUILTIN_APPS_START
git-svn-id: http://svn.code.sf.net/p/nuttx/code/trunk@5482 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'apps/README.txt')
-rw-r--r--apps/README.txt15
1 files changed, 0 insertions, 15 deletions
diff --git a/apps/README.txt b/apps/README.txt
index 328126905..4a336abdb 100644
--- a/apps/README.txt
+++ b/apps/README.txt
@@ -141,21 +141,6 @@ This will select the apps/examples/hello in the following way:
Thus accomplishing the same thing with no apps/.config file.
-Built-In Start-Up main() function
-------------------------------
-A builtin application can even be used as the main, start-up entry point
-into your embedded software. When the user defines this option in
-the NuttX configuration file:
-
- CONFIG_BUILTIN_APP_START=<application name>
-
-that application shall be invoked immediately after system starts
-*instead* of the default "user_start" entry point.
-Note that <application name> must be provided as: "hello",
-will call:
-
- int hello_main(int argc, char *argv[])
-
Example Built-In Application
----------------------------
An example application skeleton can be found under the examples/hello