2 * Copyright © 2010 Keith Packard <keithp@keithp.com>
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.
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.
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.
21 #if defined(TELEMETRUM_V_1_0)
22 #define HAS_SERIAL_1 1
28 #define PACKET_HAS_MASTER 0
29 #define PACKET_HAS_SLAVE 1
32 #define LEDS_AVAILABLE (AO_LED_RED)
33 #define HAS_EXTERNAL_TEMP 0
36 #if defined(TELEDONGLE_V_0_2)
37 #define HAS_SERIAL_1 0
43 #define PACKET_HAS_MASTER 1
44 #define PACKET_HAS_SLAVE 0
46 #define AO_LED_GREEN 2
47 #define LEDS_AVAILABLE (AO_LED_RED|AO_LED_GREEN)
50 #if defined(TELEMETRUM_V_0_1)
51 #define HAS_SERIAL_1 1
57 #define PACKET_HAS_MASTER 0
58 #define PACKET_HAS_SLAVE 1
60 #define AO_LED_GREEN 1
61 #define LEDS_AVAILABLE (AO_LED_RED|AO_LED_GREEN)
62 #define HAS_EXTERNAL_TEMP 1
65 #if defined(TELEDONGLE_V_0_1)
66 #define HAS_SERIAL_1 0
72 #define PACKET_HAS_MASTER 1
73 #define PACKET_HAS_SLAVE 0
75 #define AO_LED_GREEN 1
76 #define LEDS_AVAILABLE (AO_LED_RED|AO_LED_GREEN)
80 #define HAS_SERIAL_1 0
86 #define PACKET_HAS_MASTER 1
87 #define PACKET_HAS_SLAVE 0
89 #define LEDS_AVAILABLE (AO_LED_RED)
94 #define DBG_CLOCK (1 << 4) /* mi0 */
95 #define DBG_DATA (1 << 5) /* mo0 */
96 #define DBG_RESET_N (1 << 3) /* c0 */
98 #define DBG_CLOCK_PIN (P1_4)
99 #define DBG_DATA_PIN (P1_5)
100 #define DBG_RESET_N_PIN (P1_3)
102 #define DBG_PORT_NUM 1
104 #define DBG_PORT_SEL P1SEL
105 #define DBG_PORT_INP P1INP
106 #define DBG_PORT_DIR P1DIR
108 #endif /* DBG_ON_P1 */
112 #define DBG_CLOCK (1 << 3)
113 #define DBG_DATA (1 << 4)
114 #define DBG_RESET_N (1 << 5)
116 #define DBG_CLOCK_PIN (P0_3)
117 #define DBG_DATA_PIN (P0_4)
118 #define DBG_RESET_N_PIN (P0_5)
120 #define DBG_PORT_NUM 0
122 #define DBG_PORT_SEL P0SEL
123 #define DBG_PORT_INP P0INP
124 #define DBG_PORT_DIR P0DIR
126 #endif /* DBG_ON_P0 */
129 #error Please define HAS_SERIAL_1
133 #error Please define HAS_ADC
137 #error Please define HAS_EEPROM
141 #error Please define HAS_DBG
144 #ifndef PACKET_HAS_MASTER
145 #error Please define PACKET_HAS_MASTER
148 #ifndef PACKET_HAS_SLAVE
149 #error Please define PACKET_HAS_SLAVE
152 #endif /* _AO_PINS_H_ */