Add initial teleterra implementation.
[fw/altos] / src / ao_pins.h
1 /*
2  * Copyright © 2010 Keith Packard <keithp@keithp.com>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; version 2 of the License.
7  *
8  * This program is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11  * General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License along
14  * with this program; if not, write to the Free Software Foundation, Inc.,
15  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
16  */
17
18 #ifndef _AO_PINS_H_
19 #define _AO_PINS_H_
20
21 #if defined(TELEMETRUM_V_1_0)
22         #define HAS_SERIAL_1            1
23         #define HAS_ADC                 1
24         #define HAS_EEPROM              1
25         #define HAS_DBG                 1
26         #define DBG_ON_P1               1
27         #define DBG_ON_P0               0
28         #define PACKET_HAS_MASTER       0
29         #define PACKET_HAS_SLAVE        1
30
31         #define AO_LED_RED              1
32         #define LEDS_AVAILABLE          (AO_LED_RED)
33         #define HAS_EXTERNAL_TEMP       0
34 #endif
35
36 #if defined(TELEDONGLE_V_0_2)
37         #define HAS_SERIAL_1            0
38         #define HAS_ADC                 0
39         #define HAS_DBG                 1
40         #define HAS_EEPROM              0
41         #define DBG_ON_P1               1
42         #define DBG_ON_P0               0
43         #define PACKET_HAS_MASTER       1
44         #define PACKET_HAS_SLAVE        0
45         #define AO_LED_RED              1
46         #define AO_LED_GREEN            2
47         #define LEDS_AVAILABLE          (AO_LED_RED|AO_LED_GREEN)
48 #endif
49
50 #if defined(TELEMETRUM_V_0_1)
51         #define HAS_SERIAL_1            1
52         #define HAS_ADC                 1
53         #define HAS_DBG                 0
54         #define HAS_EEPROM              1
55         #define DBG_ON_P1               0
56         #define DBG_ON_P0               1
57         #define PACKET_HAS_MASTER       0
58         #define PACKET_HAS_SLAVE        1
59         #define AO_LED_RED              2
60         #define AO_LED_GREEN            1
61         #define LEDS_AVAILABLE          (AO_LED_RED|AO_LED_GREEN)
62         #define HAS_EXTERNAL_TEMP       1
63 #endif
64
65 #if defined(TELEDONGLE_V_0_1)
66         #define HAS_SERIAL_1            0
67         #define HAS_ADC                 0
68         #define HAS_DBG                 0
69         #define HAS_EEPROM              0
70         #define DBG_ON_P1               0
71         #define DBG_ON_P0               1
72         #define PACKET_HAS_MASTER       1
73         #define PACKET_HAS_SLAVE        0
74         #define AO_LED_RED              2
75         #define AO_LED_GREEN            1
76         #define LEDS_AVAILABLE          (AO_LED_RED|AO_LED_GREEN)
77 #endif
78
79 #if defined(TELETERRA_V_0_1)
80         #define HAS_SERIAL_1            1
81         #define HAS_ADC                 0
82         #define HAS_DBG                 1
83         #define HAS_EEPROM              0
84         #define DBG_ON_P1               1
85         #define DBG_ON_P0               0
86         #define PACKET_HAS_MASTER       1
87         #define PACKET_HAS_SLAVE        0
88         #define AO_LED_RED              1
89         #define AO_LED_GREEN            2
90         #define LEDS_AVAILABLE          (AO_LED_RED|AO_LED_GREEN)
91 #endif
92
93 #if defined(TIDONGLE)
94         #define HAS_SERIAL_1            0
95         #define HAS_ADC                 0
96         #define HAS_DBG                 1
97         #define HAS_EEPROM              0
98         #define DBG_ON_P1               0
99         #define DBG_ON_P0               1
100         #define PACKET_HAS_MASTER       1
101         #define PACKET_HAS_SLAVE        0
102         #define AO_LED_RED              2
103         #define LEDS_AVAILABLE          (AO_LED_RED)
104 #endif
105
106 #if DBG_ON_P1
107
108         #define DBG_CLOCK       (1 << 4)        /* mi0 */
109         #define DBG_DATA        (1 << 5)        /* mo0 */
110         #define DBG_RESET_N     (1 << 3)        /* c0 */
111
112         #define DBG_CLOCK_PIN   (P1_4)
113         #define DBG_DATA_PIN    (P1_5)
114         #define DBG_RESET_N_PIN (P1_3)
115
116         #define DBG_PORT_NUM    1
117         #define DBG_PORT        P1
118         #define DBG_PORT_SEL    P1SEL
119         #define DBG_PORT_INP    P1INP
120         #define DBG_PORT_DIR    P1DIR
121
122 #endif /* DBG_ON_P1 */
123
124 #if DBG_ON_P0
125
126         #define DBG_CLOCK       (1 << 3)
127         #define DBG_DATA        (1 << 4)
128         #define DBG_RESET_N     (1 << 5)
129
130         #define DBG_CLOCK_PIN   (P0_3)
131         #define DBG_DATA_PIN    (P0_4)
132         #define DBG_RESET_N_PIN (P0_5)
133
134         #define DBG_PORT_NUM    0
135         #define DBG_PORT        P0
136         #define DBG_PORT_SEL    P0SEL
137         #define DBG_PORT_INP    P0INP
138         #define DBG_PORT_DIR    P0DIR
139
140 #endif /* DBG_ON_P0 */
141
142 #ifndef HAS_SERIAL_1
143 #error Please define HAS_SERIAL_1
144 #endif
145
146 #ifndef HAS_ADC
147 #error Please define HAS_ADC
148 #endif
149
150 #ifndef HAS_EEPROM
151 #error Please define HAS_EEPROM
152 #endif
153
154 #ifndef HAS_DBG
155 #error Please define HAS_DBG
156 #endif
157
158 #ifndef PACKET_HAS_MASTER
159 #error Please define PACKET_HAS_MASTER
160 #endif
161
162 #ifndef PACKET_HAS_SLAVE
163 #error Please define PACKET_HAS_SLAVE
164 #endif
165
166 #endif /* _AO_PINS_H_ */