handle versioning of ihx files (poorly) by just wildcarding the file name,
[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(TIDONGLE)
80         #define HAS_SERIAL_1            0
81         #define HAS_ADC                 0
82         #define HAS_DBG                 1
83         #define HAS_EEPROM              0
84         #define DBG_ON_P1               0
85         #define DBG_ON_P0               1
86         #define PACKET_HAS_MASTER       1
87         #define PACKET_HAS_SLAVE        0
88         #define AO_LED_RED              2
89         #define LEDS_AVAILABLE          (AO_LED_RED)
90 #endif
91
92 #if DBG_ON_P1
93
94         #define DBG_CLOCK       (1 << 4)        /* mi0 */
95         #define DBG_DATA        (1 << 5)        /* mo0 */
96         #define DBG_RESET_N     (1 << 3)        /* c0 */
97
98         #define DBG_CLOCK_PIN   (P1_4)
99         #define DBG_DATA_PIN    (P1_5)
100         #define DBG_RESET_N_PIN (P1_3)
101
102         #define DBG_PORT_NUM    1
103         #define DBG_PORT        P1
104         #define DBG_PORT_SEL    P1SEL
105         #define DBG_PORT_INP    P1INP
106         #define DBG_PORT_DIR    P1DIR
107
108 #endif /* DBG_ON_P1 */
109
110 #if DBG_ON_P0
111
112         #define DBG_CLOCK       (1 << 3)
113         #define DBG_DATA        (1 << 4)
114         #define DBG_RESET_N     (1 << 5)
115
116         #define DBG_CLOCK_PIN   (P0_3)
117         #define DBG_DATA_PIN    (P0_4)
118         #define DBG_RESET_N_PIN (P0_5)
119
120         #define DBG_PORT_NUM    0
121         #define DBG_PORT        P0
122         #define DBG_PORT_SEL    P0SEL
123         #define DBG_PORT_INP    P0INP
124         #define DBG_PORT_DIR    P0DIR
125
126 #endif /* DBG_ON_P0 */
127
128 #ifndef HAS_SERIAL_1
129 #error Please define HAS_SERIAL_1
130 #endif
131
132 #ifndef HAS_ADC
133 #error Please define HAS_ADC
134 #endif
135
136 #ifndef HAS_EEPROM
137 #error Please define HAS_EEPROM
138 #endif
139
140 #ifndef HAS_DBG
141 #error Please define HAS_DBG
142 #endif
143
144 #ifndef PACKET_HAS_MASTER
145 #error Please define PACKET_HAS_MASTER
146 #endif
147
148 #ifndef PACKET_HAS_SLAVE
149 #error Please define PACKET_HAS_SLAVE
150 #endif
151
152 #endif /* _AO_PINS_H_ */