Loading...
Searching...
No Matches
arduino_iomap.h
Go to the documentation of this file.
1/*
2 * Copyright (C) 2015 Freie Universität Berlin
3 * 2016 Laurent Navet <laurent.navet@gmail.com>
4 * 2017 Thomas Perrot <thomas.perrot@tupi.fr>
5 *
6 * This file is subject to the terms and conditions of the GNU Lesser
7 * General Public License v2.1. See the file LICENSE in the top level
8 * directory for more details.
9 */
10
27#ifndef ARDUINO_IOMAP_H
28#define ARDUINO_IOMAP_H
29
30#include "periph/adc.h"
31#include "periph/gpio.h"
32#include "periph/i2c.h"
33#include "periph/pwm.h"
34#include "periph/spi.h"
35#include "periph/uart.h"
36#include "periph_conf.h" /* For ADC_NUMOF */
37
38#ifdef __cplusplus
39extern "C" {
40#endif
41
46#define ARDUINO_UART_D0D1 UART_DEV(0)
56#define ARDUINO_SPI_ISP SPI_DEV(0)
66#ifndef BOARD_ARDUINO_NANO
67#define ARDUINO_I2C_UNO I2C_DEV(0)
68#else
69#define ARDUINO_I2C_NANO I2C_DEV(0)
70#endif
80/* Digital pins */
81#ifdef CPU_ATMEGA328P
82# define ARDUINO_PIN_0 GPIO_PIN(PORT_D, 0)
83# define ARDUINO_PIN_1 GPIO_PIN(PORT_D, 1)
84# define ARDUINO_PIN_2 GPIO_PIN(PORT_D, 2)
85# define ARDUINO_PIN_3 GPIO_PIN(PORT_D, 3)
86# define ARDUINO_PIN_4 GPIO_PIN(PORT_D, 4)
87# define ARDUINO_PIN_5 GPIO_PIN(PORT_D, 5)
88# define ARDUINO_PIN_6 GPIO_PIN(PORT_D, 6)
89# define ARDUINO_PIN_7 GPIO_PIN(PORT_D, 7)
90# define ARDUINO_PIN_8 GPIO_PIN(PORT_B, 0)
91# define ARDUINO_PIN_9 GPIO_PIN(PORT_B, 1)
92# define ARDUINO_PIN_10 GPIO_PIN(PORT_B, 2)
93# define ARDUINO_PIN_11 GPIO_PIN(PORT_B, 3)
94# define ARDUINO_PIN_12 GPIO_PIN(PORT_B, 4)
95# define ARDUINO_PIN_13 GPIO_PIN(PORT_B, 5)
96/* Analog pins as digital pins: */
97# define ARDUINO_PIN_14 GPIO_PIN(PORT_C, 0)
98# define ARDUINO_PIN_15 GPIO_PIN(PORT_C, 1)
99# define ARDUINO_PIN_16 GPIO_PIN(PORT_C, 2)
100# define ARDUINO_PIN_17 GPIO_PIN(PORT_C, 3)
101# define ARDUINO_PIN_18 GPIO_PIN(PORT_C, 4)
102# define ARDUINO_PIN_19 GPIO_PIN(PORT_C, 5)
103
104# define ARDUINO_PIN_LAST 19
105
106/* Analog aliases */
107# define ARDUINO_PIN_A0 ARDUINO_PIN_14
108# define ARDUINO_PIN_A1 ARDUINO_PIN_15
109# define ARDUINO_PIN_A2 ARDUINO_PIN_16
110# define ARDUINO_PIN_A3 ARDUINO_PIN_17
111# define ARDUINO_PIN_A4 ARDUINO_PIN_18
112# define ARDUINO_PIN_A5 ARDUINO_PIN_19
113#endif
114
115#ifdef CPU_ATMEGA32U4
116/* Digital pins */
117# define ARDUINO_PIN_0 GPIO_PIN(PORT_D, 2)
118# define ARDUINO_PIN_1 GPIO_PIN(PORT_D, 3)
119# define ARDUINO_PIN_2 GPIO_PIN(PORT_D, 1)
120# define ARDUINO_PIN_3 GPIO_PIN(PORT_D, 0)
121# define ARDUINO_PIN_5 GPIO_PIN(PORT_C, 6)
122# define ARDUINO_PIN_7 GPIO_PIN(PORT_E, 6)
123# define ARDUINO_PIN_11 GPIO_PIN(PORT_B, 7)
124# define ARDUINO_PIN_13 GPIO_PIN(PORT_C, 7)
125# define ARDUINO_PIN_14 GPIO_PIN(PORT_B, 3)
126# define ARDUINO_PIN_15 GPIO_PIN(PORT_B, 1)
127# define ARDUINO_PIN_16 GPIO_PIN(PORT_B, 2)
128# define ARDUINO_PIN_17 GPIO_PIN(PORT_B, 0)
129# define ARDUINO_PIN_30 GPIO_PIN(PORT_D, 5)
130
131/* Analog pins as digital pins: */
132# define ARDUINO_PIN_4 GPIO_PIN(PORT_D, 4)
133# define ARDUINO_PIN_6 GPIO_PIN(PORT_D, 7)
134# define ARDUINO_PIN_8 GPIO_PIN(PORT_B, 4)
135# define ARDUINO_PIN_9 GPIO_PIN(PORT_B, 5)
136# define ARDUINO_PIN_10 GPIO_PIN(PORT_B, 6)
137# define ARDUINO_PIN_12 GPIO_PIN(PORT_D, 6)
138# define ARDUINO_PIN_18 GPIO_PIN(PORT_F, 7)
139# define ARDUINO_PIN_19 GPIO_PIN(PORT_F, 6)
140# define ARDUINO_PIN_20 GPIO_PIN(PORT_F, 5)
141# define ARDUINO_PIN_21 GPIO_PIN(PORT_F, 4)
142# define ARDUINO_PIN_22 GPIO_PIN(PORT_F, 3)
143# define ARDUINO_PIN_23 GPIO_PIN(PORT_F, 2)
144
145# define ARDUINO_PIN_LAST 23
146
147/* Analog aliases */
148# define ARDUINO_PIN_A0 ARDUINO_PIN_18
149# define ARDUINO_PIN_A1 ARDUINO_PIN_19
150# define ARDUINO_PIN_A2 ARDUINO_PIN_20
151# define ARDUINO_PIN_A3 ARDUINO_PIN_21
152# define ARDUINO_PIN_A4 ARDUINO_PIN_22
153# define ARDUINO_PIN_A5 ARDUINO_PIN_23
154# define ARDUINO_PIN_A6 ARDUINO_PIN_4
155# define ARDUINO_PIN_A7 ARDUINO_PIN_6
156# define ARDUINO_PIN_A8 ARDUINO_PIN_8
157# define ARDUINO_PIN_A9 ARDUINO_PIN_9
158# define ARDUINO_PIN_A10 ARDUINO_PIN_10
159# define ARDUINO_PIN_A11 ARDUINO_PIN_12
160#endif
161
162#ifdef CPU_ATMEGA2560
163/* Digital pins */
164# define ARDUINO_PIN_0 GPIO_PIN(PORT_E, 0)
165# define ARDUINO_PIN_1 GPIO_PIN(PORT_E, 1)
166# define ARDUINO_PIN_2 GPIO_PIN(PORT_E, 4)
167# define ARDUINO_PIN_3 GPIO_PIN(PORT_E, 5)
168# define ARDUINO_PIN_4 GPIO_PIN(PORT_G, 5)
169# define ARDUINO_PIN_5 GPIO_PIN(PORT_E, 3)
170# define ARDUINO_PIN_6 GPIO_PIN(PORT_H, 3)
171# define ARDUINO_PIN_7 GPIO_PIN(PORT_H, 4)
172# define ARDUINO_PIN_8 GPIO_PIN(PORT_H, 5)
173# define ARDUINO_PIN_9 GPIO_PIN(PORT_H, 6)
174# define ARDUINO_PIN_10 GPIO_PIN(PORT_B, 4)
175# define ARDUINO_PIN_11 GPIO_PIN(PORT_B, 5)
176# define ARDUINO_PIN_12 GPIO_PIN(PORT_B, 6)
177# define ARDUINO_PIN_13 GPIO_PIN(PORT_B, 7)
178# define ARDUINO_PIN_14 GPIO_PIN(PORT_J, 1)
179# define ARDUINO_PIN_15 GPIO_PIN(PORT_J, 0)
180# define ARDUINO_PIN_16 GPIO_PIN(PORT_H, 1)
181# define ARDUINO_PIN_17 GPIO_PIN(PORT_H, 0)
182# define ARDUINO_PIN_18 GPIO_PIN(PORT_D, 3)
183# define ARDUINO_PIN_19 GPIO_PIN(PORT_D, 2)
184# define ARDUINO_PIN_20 GPIO_PIN(PORT_D, 1)
185# define ARDUINO_PIN_21 GPIO_PIN(PORT_D, 0)
186# define ARDUINO_PIN_22 GPIO_PIN(PORT_A, 0)
187# define ARDUINO_PIN_23 GPIO_PIN(PORT_A, 1)
188# define ARDUINO_PIN_24 GPIO_PIN(PORT_A, 2)
189# define ARDUINO_PIN_25 GPIO_PIN(PORT_A, 3)
190# define ARDUINO_PIN_26 GPIO_PIN(PORT_A, 4)
191# define ARDUINO_PIN_27 GPIO_PIN(PORT_A, 5)
192# define ARDUINO_PIN_28 GPIO_PIN(PORT_A, 6)
193# define ARDUINO_PIN_29 GPIO_PIN(PORT_A, 7)
194# define ARDUINO_PIN_30 GPIO_PIN(PORT_C, 7)
195# define ARDUINO_PIN_31 GPIO_PIN(PORT_C, 6)
196# define ARDUINO_PIN_32 GPIO_PIN(PORT_C, 5)
197# define ARDUINO_PIN_33 GPIO_PIN(PORT_C, 4)
198# define ARDUINO_PIN_34 GPIO_PIN(PORT_C, 3)
199# define ARDUINO_PIN_35 GPIO_PIN(PORT_C, 2)
200# define ARDUINO_PIN_36 GPIO_PIN(PORT_C, 1)
201# define ARDUINO_PIN_37 GPIO_PIN(PORT_E, 0)
202# define ARDUINO_PIN_38 GPIO_PIN(PORT_D, 7)
203# define ARDUINO_PIN_39 GPIO_PIN(PORT_G, 2)
204# define ARDUINO_PIN_40 GPIO_PIN(PORT_G, 1)
205# define ARDUINO_PIN_41 GPIO_PIN(PORT_G, 0)
206# define ARDUINO_PIN_42 GPIO_PIN(PORT_L, 7)
207# define ARDUINO_PIN_43 GPIO_PIN(PORT_L, 6)
208# define ARDUINO_PIN_44 GPIO_PIN(PORT_L, 5)
209# define ARDUINO_PIN_45 GPIO_PIN(PORT_L, 4)
210# define ARDUINO_PIN_46 GPIO_PIN(PORT_L, 3)
211# define ARDUINO_PIN_47 GPIO_PIN(PORT_L, 2)
212# define ARDUINO_PIN_48 GPIO_PIN(PORT_L, 1)
213# define ARDUINO_PIN_49 GPIO_PIN(PORT_L, 0)
214# define ARDUINO_PIN_50 GPIO_PIN(PORT_B, 3)
215# define ARDUINO_PIN_51 GPIO_PIN(PORT_B, 2)
216# define ARDUINO_PIN_52 GPIO_PIN(PORT_B, 1)
217# define ARDUINO_PIN_53 GPIO_PIN(PORT_B, 0)
218
219/* Analog pins as digital pins: */
220# define ARDUINO_PIN_54 GPIO_PIN(PORT_F, 0)
221# define ARDUINO_PIN_55 GPIO_PIN(PORT_F, 1)
222# define ARDUINO_PIN_56 GPIO_PIN(PORT_F, 2)
223# define ARDUINO_PIN_57 GPIO_PIN(PORT_F, 3)
224# define ARDUINO_PIN_58 GPIO_PIN(PORT_F, 4)
225# define ARDUINO_PIN_59 GPIO_PIN(PORT_F, 5)
226# define ARDUINO_PIN_60 GPIO_PIN(PORT_F, 6)
227# define ARDUINO_PIN_61 GPIO_PIN(PORT_F, 7)
228# define ARDUINO_PIN_62 GPIO_PIN(PORT_K, 0)
229# define ARDUINO_PIN_63 GPIO_PIN(PORT_K, 1)
230# define ARDUINO_PIN_64 GPIO_PIN(PORT_K, 2)
231# define ARDUINO_PIN_65 GPIO_PIN(PORT_K, 3)
232# define ARDUINO_PIN_66 GPIO_PIN(PORT_K, 4)
233# define ARDUINO_PIN_67 GPIO_PIN(PORT_K, 5)
234# define ARDUINO_PIN_68 GPIO_PIN(PORT_K, 6)
235# define ARDUINO_PIN_69 GPIO_PIN(PORT_K, 7)
236
237# define ARDUINO_PIN_LAST 69
238
239/* Analog aliases */
240# define ARDUINO_PIN_A0 ARDUINO_PIN_54
241# define ARDUINO_PIN_A1 ARDUINO_PIN_55
242# define ARDUINO_PIN_A2 ARDUINO_PIN_56
243# define ARDUINO_PIN_A3 ARDUINO_PIN_57
244# define ARDUINO_PIN_A4 ARDUINO_PIN_58
245# define ARDUINO_PIN_A5 ARDUINO_PIN_59
246# define ARDUINO_PIN_A6 ARDUINO_PIN_60
247# define ARDUINO_PIN_A7 ARDUINO_PIN_61
248# define ARDUINO_PIN_A8 ARDUINO_PIN_62
249# define ARDUINO_PIN_A9 ARDUINO_PIN_63
250# define ARDUINO_PIN_A10 ARDUINO_PIN_64
251# define ARDUINO_PIN_A11 ARDUINO_PIN_65
252# define ARDUINO_PIN_A12 ARDUINO_PIN_66
253# define ARDUINO_PIN_A13 ARDUINO_PIN_67
254# define ARDUINO_PIN_A14 ARDUINO_PIN_68
255# define ARDUINO_PIN_A15 ARDUINO_PIN_69
256#endif
257
258#if ADC_NUMOF >= 8
259# define ARDUINO_A0 ADC_LINE(0)
260# define ARDUINO_A1 ADC_LINE(1)
261# define ARDUINO_A2 ADC_LINE(2)
262# define ARDUINO_A3 ADC_LINE(3)
263# define ARDUINO_A4 ADC_LINE(4)
264# define ARDUINO_A5 ADC_LINE(5)
265# define ARDUINO_A6 ADC_LINE(6)
266# define ARDUINO_A7 ADC_LINE(7)
267#endif
268#if ADC_NUMOF >= 16
269# define ARDUINO_A8 ADC_LINE(8)
270# define ARDUINO_A9 ADC_LINE(9)
271# define ARDUINO_A10 ADC_LINE(10)
272# define ARDUINO_A11 ADC_LINE(11)
273# define ARDUINO_A12 ADC_LINE(12)
274# define ARDUINO_A13 ADC_LINE(13)
275# define ARDUINO_A14 ADC_LINE(14)
276# define ARDUINO_A15 ADC_LINE(15)
277#endif
278
279/* Either 8, 16 or 0 ADC lines are configured by all ATmega boards */
280#if ADC_NUMOF == 8
281# define ARDUINO_ANALOG_PIN_LAST 7
282#elif ADC_NUMOF == 16
283# define ARDUINO_ANALOG_PIN_LAST 15
284#endif
294#define ARDUINO_PWM_FREQU (490U)
295
296/* keep in sync with PWM config in boards/common/atmega/include/periph_conf_atmega_common.h */
297#if defined(CPU_ATMEGA328P)
298# define ARDUINO_PIN_6_PWM_DEV PWM_DEV(0)
299# define ARDUINO_PIN_6_PWM_CHAN 0
300
301# define ARDUINO_PIN_5_PWM_DEV PWM_DEV(0)
302# define ARDUINO_PIN_5_PWM_CHAN 1
303
304# define ARDUINO_PIN_11_PWM_DEV PWM_DEV(1)
305# define ARDUINO_PIN_11_PWM_CHAN 0
306
307# define ARDUINO_PIN_3_PWM_DEV PWM_DEV(1)
308# define ARDUINO_PIN_3_PWM_CHAN 1
309#elif defined(CPU_ATMEGA2560)
310# define ARDUINO_PIN_13_PWM_DEV PWM_DEV(0)
311# define ARDUINO_PIN_13_PWM_CHAN 0
312
313# define ARDUINO_PIN_4_PWM_DEV PWM_DEV(0)
314# define ARDUINO_PIN_4_PWM_CHAN 1
315
316# define ARDUINO_PIN_10_PWM_DEV PWM_DEV(1)
317# define ARDUINO_PIN_10_PWM_CHAN 0
318
319# define ARDUINO_PIN_9_PWM_DEV PWM_DEV(1)
320# define ARDUINO_PIN_9_PWM_CHAN 1
321#elif defined(CPU_ATMEGA32U4)
322# define ARDUINO_PIN_11_PWM_DEV PWM_DEV(0)
323# define ARDUINO_PIN_11_PWM_CHAN 0
324
325# define ARDUINO_PIN_3_PWM_DEV PWM_DEV(0)
326# define ARDUINO_PIN_3_PWM_CHAN 1
327#endif
328
331#ifdef __cplusplus
332}
333#endif
334
335#endif /* ARDUINO_IOMAP_H */
Low-level ADC peripheral driver interface definitions.
Native CPU peripheral configuration.
Low-level GPIO peripheral driver interface definitions.
Low-level UART peripheral driver interface definition.
Low-level I2C peripheral driver interface definition.
Low-level PWM peripheral driver interface definitions.
Low-level SPI peripheral driver interface definition.