arduino_board.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2019 Inria
3  *
4  * This file is subject to the terms and conditions of the GNU Lesser
5  * General Public License v2.1. See the file LICENSE in the top level
6  * directory for more details.
7  */
8 
19 #ifndef ARDUINO_BOARD_H
20 #define ARDUINO_BOARD_H
21 
22 #include "arduino_pinmap.h"
23 
24 #ifdef __cplusplus
25 extern "C" {
26 #endif
27 
31 #define ARDUINO_LED (6)
32 
36 static const gpio_t arduino_pinmap[] = {
37  ARDUINO_PIN_0,
38  ARDUINO_PIN_1,
39  ARDUINO_PIN_2,
40  ARDUINO_PIN_3,
41  ARDUINO_PIN_4,
42  ARDUINO_PIN_5,
43  ARDUINO_PIN_6,
44  ARDUINO_PIN_7,
45  ARDUINO_PIN_8,
46  ARDUINO_PIN_9,
47  ARDUINO_PIN_10,
48  ARDUINO_PIN_11,
49  ARDUINO_PIN_12,
50  ARDUINO_PIN_13,
51  ARDUINO_PIN_14,
52  ARDUINO_PIN_15,
53  ARDUINO_PIN_16,
54  ARDUINO_PIN_17,
55  ARDUINO_PIN_18,
56  ARDUINO_PIN_19,
57 };
58 
59 #ifdef __cplusplus
60 }
61 #endif
62 
63 #endif /* ARDUINO_BOARD_H */
64 
arduino_pinmap
static const gpio_t arduino_pinmap[]
Look-up table for the Arduino's digital pins.
Definition: arduino_board.h:36
arduino_pinmap.h
Mapping from MCU pins to Arduino pins for the SiFive HiFive1b board.