source: rtems/c/src/tests/samples/README @ 254b4450

4.104.114.84.95
Last change on this file since 254b4450 was eb5a7e07, checked in by Joel Sherrill <joel.sherrill@…>, on 10/06/95 at 20:48:38

fixed missing CVS IDs

  • Property mode set to 100644
File size: 2.5 KB
Line 
1#
2#  COPYRIGHT (c) 1989, 1990, 1991, 1992, 1993, 1994.
3#  On-Line Applications Research Corporation (OAR).
4#  All rights assigned to U.S. Government, 1994.
5#
6#  This material may be reproduced by or for the U.S. Government pursuant
7#  to the copyright license under the clause at DFARS 252.227-7013.  This
8#  notice must appear in all copies of this file and its derivatives.
9#
10#  $Id$
11#
12
13This directory contains the RTEMS Sample Application Suite.
14The tests in this directory perform two functions:
15
16   + provide simple examples of applications which can be
17     used as a starting point for your application.
18
19   + help test a new board support package
20
21The hello and ticker applications are useful when first bringing up
22a new board support package.  The base_mp test is useful when
23performing initial checkout on a new MPCI layer.
24
25The following describes each of the sample applications:
26
27   base_mp
28
29      This is a very simple two node multiprocessor application.  It consists
30      of a single initialization task on each node which print out
31      their respective node numbers and task IDs.  This test can be
32      used as a simple test of a new MPCI layer because it minimizes
33      the number of packets sent by RTEMS.
34
35      This is intended as a starting point for custom developed multiprocessor
36      applications.
37
38   base_sp
39
40      This is a simple single processor application which consists of
41      an initialization task which creates another task.
42
43      This is intended as a starting point for custom developed single
44      processor applications.
45
46   cdtest
47
48      A very simple C++ application which demonstrates that it is
49      possible to use C++ contructors and destructors in an RTEMS
50      application.  Also does a perfunctory iostream test.
51
52   hello
53
54      This is the RTEMS version of the classic hello world program.
55      It consists of single initialization task which prints out
56      a few messages.
57
58      This test does not include a Clock Tick device driver and can
59      be used to test the startup code of the board support package
60      as well as console output.
61
62   paranoia
63
64      A public domain test of the floating point and math library
65      capabilities of a toolset.  It reports discrepancies between
66      actual and expected results.  It is a large test.
67
68   ticker
69
70      This is a simple test of the user's Clock Tick device driver.
71      This test has an initialization task create three application
72      tasks which sleep and periodically wake up and print the time.
73
Note: See TracBrowser for help on using the repository browser.