Skip to content
README.txt 2.31 KiB
Newer Older
patacongo's avatar
patacongo committed
Application Folder
==================

patacongo's avatar
patacongo committed
This folder provides various applications found in sub-directories.
patacongo's avatar
patacongo committed

Application entry points with their requirements are gathered together in 
patacongo's avatar
patacongo committed
in two files:
patacongo's avatar
patacongo committed

	- namedapp/namedapp_proto.h	Entry points, prototype function
	- namedapp/namedapp_list.h	Application specific information and requirements
patacongo's avatar
patacongo committed

The build occurs in several phases as different build targets are executed:
(1) contex, (2) depend, and (3) default (all). Application information is
collected during the make context build phase.
patacongo's avatar
patacongo committed

To execute an application function:
patacongo's avatar
patacongo committed

	exec_namedapp() is defined in the nuttx/include/apps/apps.h 
patacongo's avatar
patacongo committed
	
NuttShell provides transparent method of invoking the command, when the
patacongo's avatar
patacongo committed
following option is enabled:
patacongo's avatar
patacongo committed

	CONFIG_NSH_BUILTIN_APPS=y
patacongo's avatar
patacongo committed

patacongo's avatar
patacongo committed
in the NuttX configuration.

A special configuration file is used to configure which applications
are to be included in the build.  This file is configs/<board>/<configuration>/appconfig.
The existence of the appconfig file in the board configuration directory
is sufficient to enable building of applications.

The appconfig file is copied into the apps/ directory as .config when
NuttX is configured.  .config is included in the toplevel apps/Makefile.
As a minimum, this configuration file must define files to add to the
CONFIGURED_APPS list like:

patacongo's avatar
patacongo committed
  CONFIGURED_APPS  += hello poweroff jvm
patacongo's avatar
patacongo committed

The form of each entry is <dir>=<dependency> when:
patacongo's avatar
patacongo committed

  <dir> is the name of a subdirectory in the apps directory, and

  <dependency> is a make dependency.  This will be "touch"-ed each time
  that the sub-directory is rebuilt.
patacongo's avatar
patacongo committed

patacongo's avatar
patacongo committed
When the user defines an option:
patacongo's avatar
patacongo committed
	CONFIG_BUILTIN_APP_START=<application name>
patacongo's avatar
patacongo committed
	
patacongo's avatar
patacongo committed
that application shall be invoked immediately after system starts.
Note that application name must be provided in ".." as: "hello", 
will call:
patacongo's avatar
patacongo committed
	int hello_main(int argc, char *argv[])
patacongo's avatar
patacongo committed

Application skeleton can be found under the hello sub-directory,
which shows how an application can be added to the project. One must
define:
patacongo's avatar
patacongo committed
 1. create sub-directory as: appname
 2. provide entry point: appname_main()
 3. set the requirements in the file: Makefile, specially the lines:
	APPNAME		= appname
	PRIORITY	= SCHED_PRIORITY_DEFAULT
	STACKSIZE	= 768
	ASRCS		= asm source file list as a.asm b.asm ...
	CSRCS		= C source file list as foo1.c foo2.c ..

patacongo's avatar
patacongo committed
 4. add application in the apps/Makefile