-
Notifications
You must be signed in to change notification settings - Fork 0
/
Board.hh
306 lines (285 loc) · 7.78 KB
/
Board.hh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
/**
* @file LowPowerLab/Moteino/Board.hh
* @version 1.0
*
* @section License
* Copyright (C) 2014-2015, Mikael Patel
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* This file is part of the Arduino Che Cosa project.
*/
#ifndef COSA_LOWPOWERLAB_MOTEINO_HH
#define COSA_LOWPOWERLAB_MOTEINO_HH
/* This board is based on ATmega328P */
#define BOARD_ATMEGA328P
/**
* Compiler warning on unused varable.
*/
#if !defined(UNUSED)
#define UNUSED(x) (void) (x)
#endif
/**
* Cosa pin symbol and hardware definitions for the ATmega328P based
* board Lowpowerlab Moteino. Cosa does not use pin numbers as
* Arduino/Wiring, instead strong data type is used (enum types) for
* the specific pin classes; DigitalPin, AnalogPin, PWMPin, etc.
*
* The pin numbers for ATmega328P are mapped as in Arduino. The static
* inline functions, SFR, BIT and UART, rely on compiler optimizations
* to be reduced.
*
* @section Board
* @code
* LowPowerLab Moteino
*
* GND VCC RX TX DTR
* \ \ | | / /
* \ \ | | / /
* +---------------+
* RST |o o o o o o o o| GND
* EXT0/D2 |o o| VIN
* PWM0/EXT1/D3 |o o| 3V3
* D4 |o o| D1/TX
* PWM1/D5 |o o| D0/RX
* PWM2/D6 |o o| A7
* D7 |o o| A6
* D8 |o o| A5/D19/SCL
* PWM3/D9 |o o| A4/D18/SDA
* PWM4/D10 |o o| A3/D17
* PWM5/MOSI/D11 |o o| A2/D16
* MISO/D12 |o AR 3V3 GND o| A1/D15
* SCK/D13 |o o o o o| A0/D14
* +---------------+
*
* @endcode
*/
class Board {
friend class Pin;
friend class GPIO;
friend class UART;
private:
/**
* Do not allow instances. This is a static singleton; name space.
*/
Board() {}
/**
* Return Special Function Register for given Arduino pin number.
* @param[in] pin number.
* @return special register pointer.
*/
static volatile uint8_t* SFR(uint8_t pin)
__attribute__((always_inline))
{
return (pin < 8 ? &PIND :
pin < 14 ? &PINB :
&PINC);
}
/**
* Return bit position for given Arduino pin number in Special
* Function Register.
* @param[in] pin number.
* @return pin bit position.
*/
static uint8_t BIT(uint8_t pin)
__attribute__((always_inline))
{
return (pin < 8 ? pin :
pin < 14 ? pin - 8 :
pin - 14);
}
/**
* Return Pin Change Mask Register for given Arduino pin number.
* @param[in] pin number.
* @return pin change mask register pointer.
*/
static volatile uint8_t* PCIMR(uint8_t pin)
__attribute__((always_inline))
{
return (pin < 8 ? &PCMSK2 :
pin < 14 ? &PCMSK0 :
&PCMSK1);
}
/**
* Return UART Register for given Arduino serial port.
* @param[in] port number.
* @return UART register pointer.
*/
static volatile uint8_t* UART(uint8_t port)
__attribute__((always_inline))
{
UNUSED(port);
return (&UCSR0A);
}
public:
/**
* Initiate board ports. Disable SPI chip select pins, i.e.
* defined as output pins and set high.
*/
static void init();
/**
* Digital pin symbols
*/
enum DigitalPin {
D0 = 0, // PD0
D1, // PD1
D2, // PD2
D3, // PD3
D4, // PD4
D5, // PD5
D6, // PD6
D7, // PD7
D8, // PB0 => Flash CS
D9, // PB1
D10, // PB2 => RFMXX CS
D11, // PB3
D12, // PB4
D13, // PB5
D14, // PC0
D15, // PC1
D16, // PC2
D17, // PC3
D18, // PC4
D19, // PC5
LED = D9
} __attribute__((packed));
/**
* Analog pin symbols (ADC channel numbers)
*/
enum AnalogPin {
A0 = 0, // PC0/D14
A1, // PC1/D15
A2, // PC2/D16
A3, // PC3/D17
A4, // PC4/D18
A5, // PC5/D19
A6, // D20
A7 // D21
} __attribute__((packed));
/**
* Reference voltage; ARef pin, Vcc or internal 1V1.
*/
enum Reference {
APIN_REFERENCE = 0,
AVCC_REFERENCE = _BV(REFS0),
A1V1_REFERENCE = (_BV(REFS1) | _BV(REFS0))
} __attribute__((packed));
/**
* PWM pin symbols; sub-set of digital pins to allow compile
* time checking
*/
enum PWMPin {
PWM0 = D3, // PD3 => OCR2B
PWM1 = D5, // PD5 => OCR0B
PWM2 = D6, // PD6 => OCR0A
PWM3 = D9, // PB1 => OCR1A
PWM4 = D10, // PB2 => OCR1B
PWM5 = D11 // PB3 => OCR2A
} __attribute__((packed));
/**
* External interrupt pin symbols; sub-set of digital pins
* to allow compile time checking.
*/
enum ExternalInterruptPin {
EXT0 = D2, // PD2
EXT1 = D3 // PD3
} __attribute__((packed));
/**
* Pin change interrupt (PCI) pins.
*/
enum InterruptPin {
PCI0 = D0, // PD0
PCI1 = D1, // PD1
PCI2 = D2, // PD2
PCI3 = D3, // PD3
PCI4 = D4, // PD4
PCI5 = D5, // PD5
PCI6 = D6, // PD6
PCI7 = D7, // PD7
PCI8 = D8, // PB0
PCI9 = D9, // PB1
PCI10 = D10, // PB2
PCI11 = D11, // PB3
PCI12 = D12, // PB4
PCI13 = D13, // PB5
PCI14 = D14, // PC0
PCI15 = D15, // PC1
PCI16 = D16, // PC2
PCI17 = D17, // PC3
PCI18 = D18, // PC4
PCI19 = D19 // PC5
} __attribute__((packed));
/**
* Size of pin maps.
*/
enum {
ANALOG_PIN_MAX = 8,
DIGITAL_PIN_MAX = 20,
EXT_PIN_MAX = 2,
PCI_PIN_MAX = 20,
PWM_PIN_MAX = 6
};
/**
* Pins used for TWI interface (port C, analog pins A4-A5).
*/
enum TWIPin {
SDA = 4, // PC4/A4
SCL = 5 // PC5/A5
} __attribute__((packed));
/**
* Pins used for SPI interface (port B, digital pins D10-D13).
*/
enum SPIPin {
SS = 2, // PB2/D10
MOSI = 3, // PB3/D11
MISO = 4, // PB4/D12
SCK = 5 // PB5/D13
} __attribute__((packed));
/**
* Auxiliary
*/
enum {
VBG = (_BV(MUX3) | _BV(MUX2) | _BV(MUX1)),
UART_MAX = 1,
EXT_MAX = 2,
PCMSK_MAX = 3,
PCINT_MAX = 24
} __attribute__((packed));
};
/**
* Forward declare interrupt service routines to allow them as friends.
*/
extern "C" {
void ADC_vect(void) __attribute__ ((signal));
void ANALOG_COMP_vect(void) __attribute__ ((signal));
void INT0_vect(void) __attribute__ ((signal));
void INT1_vect(void) __attribute__ ((signal));
void PCINT0_vect(void) __attribute__ ((signal));
void PCINT1_vect(void) __attribute__ ((signal));
void PCINT2_vect(void) __attribute__ ((signal));
void SPI_STC_vect(void) __attribute__ ((signal));
void TIMER0_COMPA_vect(void) __attribute__ ((signal));
void TIMER0_COMPB_vect(void) __attribute__ ((signal));
void TIMER0_OVF_vect(void) __attribute__ ((signal));
void TIMER1_CAPT_vect(void) __attribute__ ((signal));
void TIMER1_COMPA_vect(void) __attribute__ ((signal));
void TIMER1_COMPB_vect(void) __attribute__ ((signal));
void TIMER1_OVF_vect(void) __attribute__ ((signal));
void TIMER2_COMPA_vect(void) __attribute__ ((signal));
void TIMER2_COMPB_vect(void) __attribute__ ((signal));
void TIMER2_OVF_vect(void) __attribute__ ((signal));
void TWI_vect(void) __attribute__ ((signal));
void WDT_vect(void) __attribute__ ((signal));
void USART_RX_vect(void) __attribute__ ((signal));
void USART_TX_vect(void) __attribute__ ((signal));
void USART_UDRE_vect(void) __attribute__ ((signal));
}
#endif