2010-06-07 Bharath Suri <bharath.s.jois@gmail.com>

* spfifo01/main.c: New file.
This commit is contained in:
Joel Sherrill
2010-06-08 00:31:53 +00:00
parent 065d65a773
commit 4d39a9015e
2 changed files with 44 additions and 0 deletions
+4
View File
@@ -1,3 +1,7 @@
2010-06-07 Bharath Suri <bharath.s.jois@gmail.com>
* spfifo01/main.c: New file.
2010-06-07 Bharath Suri <bharath.s.jois@gmail.com>
PR PR1542
+40
View File
@@ -0,0 +1,40 @@
/*
* COPYRIGHT (c) 1989-2010.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
* found in the file LICENSE in this distribution or at
* http://www.rtems.com/license/LICENSE.
*
* $Id$
*/
/* Includes */
#include <bsp.h>
#include <tmacros.h>
void test_main(void);
rtems_task Init(
rtems_task_argument not_used
)
{
test_main();
rtems_test_exit(0);
}
#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
#define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER
#define CONFIGURE_USE_IMFS_AS_BASE_FILESYSTEM
#define CONFIGURE_LIBIO_MAXIMUM_FILE_DESCRIPTORS 6
#define CONFIGURE_MAXIMUM_TASKS 1
#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
#define CONFIGURE_INIT
#include <rtems/confdefs.h>
/* end of file */