FreeCalypso > hg > fc-magnetite
comparison src/gpf2/tst/tst_primitives.h @ 294:cd37d228dae0
src/gpf2/{misc,tst}: import from TCS211 semi-src
with CRLF line endings and directory name capitalization cleaned up
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sat, 21 Oct 2017 01:12:15 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
293:5b2ebc94cae4 | 294:cd37d228dae0 |
---|---|
1 /* | |
2 +------------------------------------------------------------------------------ | |
3 | File: tst_primitives.h | |
4 +------------------------------------------------------------------------------ | |
5 | Copyright Texas Instruments 2002 | |
6 | All rights reserved. | |
7 | | |
8 +------------------------------------------------------------------------------ | |
9 | Purpose: Definitions for the IDLE entity. | |
10 | $Identity:$ | |
11 +------------------------------------------------------------------------------ | |
12 */ | |
13 | |
14 #ifndef TST_PRIMITIVES | |
15 #define TST_PRIMITIVES | |
16 | |
17 /*==== INCLUDES ==============================================================*/ | |
18 | |
19 /*==== CONSTS ================================================================*/ | |
20 | |
21 #define IDLE_REQ 0x00000010 | |
22 #define IDLE_CNF 0x00010010 | |
23 | |
24 #define SYSPRIM_EXT_TICK_MODE_REQ "EXT_TICK_MODE_REQ" | |
25 #define SYSPRIM_EXT_TICK_MODE_CNF "EXT_TICK_MODE_CNF" | |
26 #define SYSPRIM_INT_TICK_MODE_REQ "INT_TICK_MODE_REQ" | |
27 #define SYSPRIM_INT_TICK_MODE_CNF "INT_TICK_MODE_CNF" | |
28 #define SYSPRIM_TIMER_TICK_REQ "TIMER_TICK_REQ" | |
29 #define SYSPRIM_TIMER_TICK_CNF "TIMER_TICK_CNF" | |
30 | |
31 #define SYSPRIM_IDLE_REQ "IDLE_REQ" | |
32 #define SYSPRIM_IDLE_CNF "IDLE_CNF" | |
33 | |
34 | |
35 /*==== TYPES =================================================================*/ | |
36 | |
37 #ifndef __T_IDLE_CNF__ | |
38 #define __T_IDLE_CNF__ | |
39 typedef struct | |
40 { | |
41 U8 dummy; /*< 0: 1> */ | |
42 } T_IDLE_CNF; | |
43 #endif | |
44 | |
45 #ifndef __T_IDLE_REQ__ | |
46 #define __T_IDLE_REQ__ | |
47 typedef struct | |
48 { | |
49 U8 dummy; /*< 0: 1> */ | |
50 } T_IDLE_REQ; | |
51 #endif | |
52 | |
53 | |
54 /*==== EXPORTS ===============================================================*/ | |
55 | |
56 #endif /* TST_PRIMITIVES */ | |
57 /*==== END OF FILE ===========================================================*/ |