/* * Simple main wrapper for RTEMS with configuration * * $Id$ */ #include #include rtems_task Init( rtems_task_argument ignored ) { extern int main( int, char ** ); main( 0, NULL ); exit( 0 ); } /* configuration information */ /* NOTICE: the clock driver is explicitly disabled */ #define CONFIGURE_APPLICATION_DOES_NOT_NEED_CLOCK_DRIVER #define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER #define CONFIGURE_RTEMS_INIT_TASKS_TABLE #define CONFIGURE_MAXIMUM_TASKS 1 #define CONFIGURE_INIT #include /* end of file */