source: rtems/testsuites/samples/nsecs/system.h @ 9391f6d

4.115
Last change on this file since 9391f6d was 9391f6d, checked in by Sebastian Huber <sebastian.huber@…>, on 03/10/14 at 15:31:43

tests/samples: Use <rtems/test.h>

  • Property mode set to 100644
File size: 508 bytes
Line 
1#ifndef SYSTEM_H
2#define SYSTEM_H
3
4#include <rtems/test.h>
5
6#include <bsp.h> /* for device driver prototypes */
7
8extern void dummy_function_empty_body_to_force_call(void);
9
10#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
11#define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER
12
13#define CONFIGURE_MICROSECONDS_PER_TICK 1000
14#define CONFIGURE_MAXIMUM_TASKS            1
15#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
16
17#define CONFIGURE_INITIAL_EXTENSIONS RTEMS_TEST_INITIAL_EXTENSION
18
19#include <rtems/confdefs.h>
20#endif
Note: See TracBrowser for help on using the repository browser.