9
0
Fork 0
nuttx-bb/nuttx/examples
patacongo fefb295d62 Debug UDP send logic
git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@401 7fd9a85b-ad96-42d3-883c-3090e2eb8679
2007-11-23 13:31:28 +00:00
..
mount Add a test of statfs 2007-05-30 00:00:04 +00:00
nettest Added UDP test/example 2007-11-22 21:59:30 +00:00
nsh add set and unset 2007-07-01 20:05:11 +00:00
null Initial release of the null example 2007-03-21 19:53:12 +00:00
ostest Added network init; refactored some header files 2007-09-09 11:58:50 +00:00
udp Debug UDP send logic 2007-11-23 13:31:28 +00:00
uip uIP webserver now uses listen/accept 2007-11-19 18:17:23 +00:00
README.txt Debug UDP send logic 2007-11-23 13:31:28 +00:00

README.txt

examples
^^^^^^^^

  The examples directory contains several sample applications that
  can be linked with nuttx.  The specific example is selected in the
  configs/<board-name>/defconfig file via the CONFIG_EXAMPLE setting.
  For example,

    CONFIG_EXAMPLE=ostest

  Selects the examples/ostest example.

examples/ostest
^^^^^^^^^^^^^^^

  This is the NuttX 'qualification' suite.  It attempts to exercise
  a broad set of OS functionality.  Its coverage is not very extensive
  as of this writing, but it is used to qualify each NuttX release.

  The behavior of the ostest can be modified with the following
  settings in the configs/<board-name>/defconfig file:

  * CONFIG_OSTEST_STACKSIZE
      Used to create the ostest task.  Default is 8192.

examples/nsh
^^^^^^^^^^^^

  This directory containst the NuttShell (NSH).  This is a primitive
  shell-like application.  With some additional development, NSH will
  someday be a great NuttX application debugger.

  The behavior of NSH can be modified with the following settings in
  the configs/<board-name>/defconfig file:

  * CONFIG_NSH_IOBUFFERSIZE
      Size of a static I/O buffer used for file access (ignored if
      there is no filesystem).

examples/mount
^^^^^^^^^^^^^^

  This contains a simple test of filesystem mountpoints.

examples/null
^^^^^^^^^^^^^

  This is the do nothing application.  It is only used for bringing
  up new NuttX architectures.

examples/uip
^^^^^^^^^^^^

  This is a port of uIP example application.  It includes
  conditionally compiled logic to exercise the uIP webserver,
  webclient, telnet, smtp, dncpc, and resolver.

examples/netttest
^^^^^^^^^^^^^^^^^

  This is a simple network test for verifying client- and server-
  functionality in a TCP/IP connection.

examples/udp
^^^^^^^^^^^^

  This is a simple network test for verifying client- and server-
  functionality over UDP.