]> git.sur5r.net Git - freertos/blob - Demo/CORTEX_LM3S811_KEIL/LuminaryCode/hw_types.h
Start to re-arrange files to include FreeRTOS+ in main download.
[freertos] / Demo / CORTEX_LM3S811_KEIL / LuminaryCode / hw_types.h
1 //*****************************************************************************\r
2 //\r
3 // hw_types.h - Common types and macros.\r
4 //\r
5 // Copyright (c) 2005,2006 Luminary Micro, Inc.  All rights reserved.\r
6 //\r
7 // Software License Agreement\r
8 //\r
9 // Luminary Micro, Inc. (LMI) is supplying this software for use solely and\r
10 // exclusively on LMI's Stellaris Family of microcontroller products.\r
11 //\r
12 // The software is owned by LMI and/or its suppliers, and is protected under\r
13 // applicable copyright laws.  All rights are reserved.  Any use in violation\r
14 // of the foregoing restrictions may subject the user to criminal sanctions\r
15 // under applicable laws, as well as to civil liability for the breach of the\r
16 // terms and conditions of this license.\r
17 //\r
18 // THIS SOFTWARE IS PROVIDED "AS IS".  NO WARRANTIES, WHETHER EXPRESS, IMPLIED\r
19 // OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF\r
20 // MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE APPLY TO THIS SOFTWARE.\r
21 // LMI SHALL NOT, IN ANY CIRCUMSTANCES, BE LIABLE FOR SPECIAL, INCIDENTAL, OR\r
22 // CONSEQUENTIAL DAMAGES, FOR ANY REASON WHATSOEVER.\r
23 //\r
24 // This is part of revision 816 of the Stellaris Driver Library.\r
25 //\r
26 //*****************************************************************************\r
27 \r
28 #ifndef __HW_TYPES_H__\r
29 #define __HW_TYPES_H__\r
30 \r
31 //*****************************************************************************\r
32 //\r
33 // Define a boolean type, and values for true and false.\r
34 //\r
35 //*****************************************************************************\r
36 typedef unsigned char tBoolean;\r
37 \r
38 #ifndef true\r
39 #define true 1\r
40 #endif\r
41 \r
42 #ifndef false\r
43 #define false 0\r
44 #endif\r
45 \r
46 //*****************************************************************************\r
47 //\r
48 // Macros for hardware access, both direct and via the bit-band region.\r
49 //\r
50 //*****************************************************************************\r
51 #define HWREG(x)                                                              \\r
52         (*((volatile unsigned long *)(x)))\r
53 #define HWREGH(x)                                                             \\r
54         (*((volatile unsigned short *)(x)))\r
55 #define HWREGB(x)                                                             \\r
56         (*((volatile unsigned char *)(x)))\r
57 #define HWREGBITW(x, b)                                                       \\r
58         HWREG(((unsigned long)(x) & 0xF0000000) | 0x02000000 |                \\r
59               (((unsigned long)(x) & 0x000FFFFF) << 5) | ((b) << 2))\r
60 #define HWREGBITH(x, b)                                                       \\r
61         HWREGH(((unsigned long)(x) & 0xF0000000) | 0x02000000 |               \\r
62                (((unsigned long)(x) & 0x000FFFFF) << 5) | ((b) << 2))\r
63 #define HWREGBITB(x, b)                                                       \\r
64         HWREGB(((unsigned long)(x) & 0xF0000000) | 0x02000000 |               \\r
65                (((unsigned long)(x) & 0x000FFFFF) << 5) | ((b) << 2))\r
66 \r
67 #endif // __HW_TYPES_H__\r