source: rtems/testsuites/tmtests/tm09/system.h @ 57f96b9

5
Last change on this file since 57f96b9 was c4b8b147, checked in by Sebastian Huber <sebastian.huber@…>, on 11/03/17 at 07:35:38

tests: Use simple console driver

Update #3170.
Update #3199.

  • Property mode set to 100644
File size: 1.1 KB
Line 
1/*  system.h
2 *
3 *  This include file is used by all tests in the Time Suite.
4 *
5 *  COPYRIGHT (c) 1989-1999.
6 *  On-Line Applications Research Corporation (OAR).
7 *
8 *  The license and distribution terms for this file may be
9 *  found in the file LICENSE in this distribution or at
10 *  http://www.rtems.org/license/LICENSE.
11 */
12
13
14#include <coverhd.h>
15#include <tmacros.h>
16
17/* functions */
18
19#define MESSAGE_SIZE (sizeof(long) * 4)
20
21rtems_task Init(
22  rtems_task_argument argument
23);
24
25#include <timesys.h>
26
27rtems_id   Task_id[ OPERATION_COUNT+1 ];   /* array of task ids */
28
29/* configuration information */
30
31#define CONFIGURE_APPLICATION_NEEDS_SIMPLE_CONSOLE_DRIVER
32#define CONFIGURE_APPLICATION_NEEDS_TIMER_DRIVER
33
34#define CONFIGURE_MAXIMUM_TASKS              2
35#define CONFIGURE_MAXIMUM_MESSAGE_QUEUES     1
36#define CONFIGURE_TICKS_PER_TIMESLICE        0
37#define CONFIGURE_MESSAGE_BUFFER_MEMORY \
38  CONFIGURE_MESSAGE_BUFFERS_FOR_QUEUE(OPERATION_COUNT, MESSAGE_SIZE)
39
40#define CONFIGURE_RTEMS_INIT_TASKS_TABLE
41
42#define CONFIGURE_EXTRA_TASK_STACKS         (1 * RTEMS_MINIMUM_STACK_SIZE)
43
44#include <rtems/confdefs.h>
45
46/* end of include file */
Note: See TracBrowser for help on using the repository browser.