mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2026-08-25 11:29:15 +08:00
2010-06-07 Bharath Suri <bharath.s.jois@gmail.com>
* spfifo01/main.c: New file.
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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 */
|
||||
Reference in New Issue
Block a user