-
Notifications
You must be signed in to change notification settings - Fork 76
/
Pro_Micro.hh
336 lines (315 loc) · 8.96 KB
/
Pro_Micro.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
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
/**
* @file Cosa/Board/Arduino/Pro_Micro.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_BOARD_ARDUINO_PRO_MICRO_HH
#define COSA_BOARD_ARDUINO_PRO_MICRO_HH
/* This board is based on ATmega32U4 */
#define BOARD_ATMEGA32U4
/**
* Compiler warning on unused varable.
*/
#if !defined(UNUSED)
#define UNUSED(x) (void) (x)
#endif
/**
* Cosa pin symbol and hardware definitions for the ATmega32U4 based
* SparkFun Pro Micro board. 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 ATmega32u4 are mapped as in Arduino. The static
* inline functions, SFR, BIT and UART, rely on compiler optimizations
* to be reduced.
*
* @section Board
* @code
* Arduino Pro Micro
* -----
* +----| V |----+
* EXT3/TX/D1 |o< | | o| RAW
* EXT2/RX/D0 |o> ----- o| GND
* GND |o o| RESET
* GND |o o| VCC
* SDA/EXT1/D2 |o o| D17/A3
* SCL/PWM1/EXT0/D3 |o o| D16/A2
* D4 |o o| D15/A1
* PWM4/D5 |o o| D14/A0
* PWM6/D6 |o o| D21/SCK
* D7 |o o| D23/MISO
* D8 |o o| D22/MOSI
* PWM2/D9 |o o| D10/PWM3
* +-------------+
* @endcode
*
* Note: SPI pins are not numbered as on board as the numbers are
* reserved in Cosa for analog pins (which also may act as digital
* pins).
*/
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 ? &PINB :
pin < 16 ? &PINC :
pin < 24 ? &PIND :
pin < 32 ? &PINE :
&PINF);
}
/**
* 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 & 0x07);
}
/**
* 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))
{
UNUSED(pin);
return (&PCMSK0);
}
/**
* 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 (&UCSR1A);
}
public:
/**
* Initiate board ports. Default void.
*/
static void init() {}
/**
* Digital pin symbols
*/
enum DigitalPin {
D0 = 18, // PD2
D1 = 19, // PD3
D2 = 17, // PD1
D3 = 16, // PD0
D4 = 20, // PD4
D5 = 14, // PC6
D6 = 23, // PD7
D7 = 30, // PE6
D8 = 4, // PB4
D9 = 5, // PB5
D10 = 6, // PB6
D11 = 7, // PB7/Not used
D12 = 22, // PD6/Not used
D13 = 15, // PC7/Not used
D14 = 39, // PF7
D15 = 38, // PF6
D16 = 37, // PF5
D17 = 36, // PF4
D18 = 33, // PF1
D19 = 32, // PF0
D20 = 0, // PB0/SS/RXLED
D21 = 1, // PB1/SCK
D22 = 2, // PB2/MOSI
D23 = 3, // PB3/MISO
LED = 15, // PC7/Not used
RXLED = 0, // PB0/Green
TXLED = 21 // PD5/Yellow
} __attribute__((packed));
/**
* Analog pin symbols (ADC channel numbers)
*/
enum AnalogPin {
A0 = 7, // PF7/D14
A1 = 6, // PF6/D15
A2 = 5, // PF5/D16
A3 = 4, // PF4/D17
A4 = 1, // PF1/D18/Not used
A5 = 0, // PF0/D19/Not used
A6 = 32, // PD4/D4
A7 = 33, // PD6/D12/Not used
A8 = 34, // PD7/D6
A9 = 35, // PB4/D8
A10 = 36, // PB5/D9
A11 = 37 // PB6/D10
} __attribute__((packed));
/**
* Reference voltage; ARef pin, Vcc or internal 2V56
*/
enum Reference {
APIN_REFERENCE = 0,
AVCC_REFERENCE = _BV(REFS0),
A2V56_REFERENCE = (_BV(REFS1) | _BV(REFS0))
} __attribute__((packed));
/**
* PWM pin symbols; sub-set of digital pins to allow compile
* time checking
*/
enum PWMPin {
PWM0 = D11, // PB7 => OCR0A/Not used
PWM1 = D3, // PD0 => OCR0B
PWM2 = D9, // PB5 => OCR1A
PWM3 = D10, // PB6 => OCR1B
PWM4 = D5, // PC6 => OCR3A
PWM5 = D13, // PC7 => OCR4A/Not used
PWM6 = D6 // PD7 => OCR4D
} __attribute__((packed));
/**
* External interrupt pin symbols; sub-set of digital pins
* to allow compile time checking.
*/
enum ExternalInterruptPin {
EXT0 = D3, // PD0
EXT1 = D2, // PD1
EXT2 = D0, // PD2
EXT3 = D1 // PD3
} __attribute__((packed));
/**
* Pin change interrupt (PCI) pins.
*/
enum InterruptPin {
PCI0 = D20, // PB0
PCI1 = D21, // PB1
PCI2 = D22, // PB2
PCI3 = D23, // PB3
PCI4 = D8, // PB4
PCI5 = D9, // PB5
PCI6 = D10, // PB6
PCI7 = D11 // PB7/Not used
} __attribute__((packed));
/**
* Size of pin maps.
*/
enum {
ANALOG_PIN_MAX = 12,
DIGITAL_PIN_MAX = 24,
EXT_PIN_MAX = 4,
PCI_PIN_MAX = 8,
PWM_PIN_MAX = 7
};
/**
* Pins used for TWI interface (port D, bit 0-1, D2-D3)
*/
enum TWIPin {
SDA = 1, // PD1/D2
SCL = 0 // PD0/D3
} __attribute__((packed));
/**
* Pins used for SPI interface (port B, bit 0-3, D20-D21)
* Note: Boards are marked differently.
*/
enum SPIPin {
SS = 0, // PB0/D20
SCK = 1, // PB1/D21
MOSI = 2, // PB2/D22
MISO = 3 // PB3/D23
} __attribute__((packed));
/**
* Auxiliary
*/
enum {
VBG = (_BV(MUX4) | _BV(MUX3) | _BV(MUX2) | _BV(MUX1)),
UART_MAX = 2,
EXT_MAX = 7,
PCMSK_MAX = 1,
PCINT_MAX = 8
} __attribute__((packed));
};
/**
* Redefined symbols to allow generic code.
*/
#define UCSZ00 UCSZ10
#define UCSZ01 UCSZ11
#define UCSZ02 UCSZ12
#define UPM00 UPM10
#define UPM01 UPM11
#define USBS0 USBS1
#define U2X0 U2X1
#define TXC0 TXC1
#define RXCIE0 RXCIE1
#define RXEN0 RXEN1
#define TXEN0 TXEN1
#define UDRE0 UDRE1
#define UDRIE0 UDRIE1
#define TXCIE0 TXCIE1
#if !defined(ADCW)
#define ADCW ADC
#endif
/**
* 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 INT2_vect(void) __attribute__ ((signal));
void INT3_vect(void) __attribute__ ((signal));
void INT6_vect(void) __attribute__ ((signal));
void PCINT0_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_COMPC_vect(void) __attribute__ ((signal));
void TIMER1_OVF_vect(void) __attribute__ ((signal));
void TIMER3_CAPT_vect(void) __attribute__ ((signal));
void TIMER3_COMPA_vect(void) __attribute__ ((signal));
void TIMER3_COMPB_vect(void) __attribute__ ((signal));
void TIMER3_COMPC_vect(void) __attribute__ ((signal));
void TIMER3_OVF_vect(void) __attribute__ ((signal));
void TIMER4_COMPA_vect(void) __attribute__ ((signal));
void TIMER4_COMPB_vect(void) __attribute__ ((signal));
void TIMER4_COMPD_vect(void) __attribute__ ((signal));
void TIMER4_FPF_vect(void) __attribute__ ((signal));
void TIMER4_OVF_vect(void) __attribute__ ((signal));
void TWI_vect(void) __attribute__ ((signal));
void WDT_vect(void) __attribute__ ((signal));
void USART1_RX_vect(void) __attribute__ ((signal));
void USART1_TX_vect(void) __attribute__ ((signal));
void USART1_UDRE_vect(void) __attribute__ ((signal));
void USB_COM_vect(void) __attribute__ ((signal));
void USB_GEN_vect(void) __attribute__ ((signal));
}
#endif