summaryrefslogtreecommitdiffstats
path: root/testsuites/samples/nsecs/system.h
diff options
context:
space:
mode:
Diffstat (limited to 'testsuites/samples/nsecs/system.h')
-rw-r--r--testsuites/samples/nsecs/system.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/testsuites/samples/nsecs/system.h b/testsuites/samples/nsecs/system.h
new file mode 100644
index 0000000000..a9d2ac6c86
--- /dev/null
+++ b/testsuites/samples/nsecs/system.h
@@ -0,0 +1,16 @@
+#ifndef SYSTEM_H
+#define SYSTEM_H
+
+#include <bsp.h> /* for device driver prototypes */
+
+extern void dummy_function_empty_body_to_force_call(void);
+
+#define CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
+#define CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER
+
+#define CONFIGURE_MICROSECONDS_PER_TICK 1000
+#define CONFIGURE_MAXIMUM_TASKS 1
+#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
+
+#include <rtems/confdefs.h>
+#endif