summaryrefslogtreecommitdiff
path: root/apps/README.txt
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-03-14 14:14:54 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-03-14 14:14:54 +0000
commitee2220174467b0e456446f5faaef1bd1660f786e (patch)
tree61937f54d7558e15f984b0450c2958e9ed45b5bd /apps/README.txt
parent38121cceb67b2408c5aab1d3e9998accef0d83c8 (diff)
downloadnuttx-ee2220174467b0e456446f5faaef1bd1660f786e.tar.gz
nuttx-ee2220174467b0e456446f5faaef1bd1660f786e.tar.bz2
nuttx-ee2220174467b0e456446f5faaef1bd1660f786e.zip
VSN/apps update
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3378 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'apps/README.txt')
-rw-r--r--apps/README.txt12
1 files changed, 6 insertions, 6 deletions
diff --git a/apps/README.txt b/apps/README.txt
index e7bb212e4..1eda70f9a 100644
--- a/apps/README.txt
+++ b/apps/README.txt
@@ -5,11 +5,11 @@ Application Folder
This folder provides various applications found in sub-directories.
Application entry points with their requirements are gathered together in
-this folder, in two files:
+in two files:
- exec_nuttapp_proto.h Entry points, prototype function
- exec_nuttapp_list.h Application specific information and requirements
-Application information is collected during the make .depend process.
+Information is collected during the make .depend process.
To execute an application function:
exec_nuttapp() is defined in the include/nuttx/nuttapp.h
@@ -19,7 +19,7 @@ following option is enabled:
CONFIG_EXAMPLES_NSH_BUILTIN_APPS=y
To select which application to be included in the build process set your
-preferences the nuttx/.config file as:
+preferences in the nuttx/.config file as:
To include applications under the nuttx apps directory:
CONFIG_BUILTIN_APPS_NUTTX=y/n
@@ -30,9 +30,9 @@ where each application can be controlled as:
When the user defines an option:
CONFIG_BUILTIN_APP_START=<application name>
-Note that application name must be provided in ".." as: "hello"
-for the hello application, which starts the immediately after system
-starts:
+that application shall be invoked immediately after system starts.
+Note that application name must be provided in ".." as: "hello",
+will call:
int hello_main(int argc, char *argv[])
Application skeleton can be found under the hello sub-directory,