mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
cpu/esp32: define ARDUINO_PIN_*
This commit is contained in:
parent
4c516aa1ad
commit
8e0d69c807
72
boards/common/esp32/include/arduino_board_common.h
Normal file
72
boards/common/esp32/include/arduino_board_common.h
Normal file
@ -0,0 +1,72 @@
|
||||
/*
|
||||
* Copyright (C) 2018 Gunar Schorcht
|
||||
*
|
||||
* This file is subject to the terms and conditions of the GNU Lesser
|
||||
* General Public License v2.1. See the file LICENSE in the top level
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @ingroup boards_common_esp32
|
||||
* @{
|
||||
*
|
||||
* @file
|
||||
* @brief Common board for the Arduino API
|
||||
*
|
||||
* @author Gunar Schorcht <gunar@schorcht.net>
|
||||
*/
|
||||
|
||||
#ifndef ARDUINO_BOARD_COMMON_H
|
||||
#define ARDUINO_BOARD_COMMON_H
|
||||
|
||||
#include "arduino_pinmap.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C"
|
||||
{
|
||||
#endif
|
||||
|
||||
/**
|
||||
* @brief Look-up table for the Arduino's digital pins
|
||||
*/
|
||||
static const gpio_t arduino_pinmap[] = {
|
||||
ARDUINO_PIN_0,
|
||||
ARDUINO_PIN_1,
|
||||
ARDUINO_PIN_2,
|
||||
ARDUINO_PIN_3,
|
||||
ARDUINO_PIN_4,
|
||||
ARDUINO_PIN_5,
|
||||
ARDUINO_PIN_6,
|
||||
ARDUINO_PIN_7,
|
||||
ARDUINO_PIN_8,
|
||||
ARDUINO_PIN_9,
|
||||
ARDUINO_PIN_10,
|
||||
ARDUINO_PIN_11,
|
||||
ARDUINO_PIN_12,
|
||||
ARDUINO_PIN_13,
|
||||
ARDUINO_PIN_A0,
|
||||
ARDUINO_PIN_A1,
|
||||
ARDUINO_PIN_A2,
|
||||
ARDUINO_PIN_A3,
|
||||
ARDUINO_PIN_A4,
|
||||
ARDUINO_PIN_A5
|
||||
};
|
||||
|
||||
/**
|
||||
* @brief Look-up table for the Arduino's analog pins
|
||||
*/
|
||||
static const adc_t arduino_analog_map[] = {
|
||||
ARDUINO_PIN_A0,
|
||||
ARDUINO_PIN_A1,
|
||||
ARDUINO_PIN_A2,
|
||||
ARDUINO_PIN_A3,
|
||||
ARDUINO_PIN_A4,
|
||||
ARDUINO_PIN_A5
|
||||
};
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* ARDUINO_BOARD_COMMON_H */
|
||||
/** @} */
|
@ -27,6 +27,7 @@
|
||||
|
||||
#include "cpu.h"
|
||||
#include "periph_conf.h"
|
||||
#include "arduino_pinmap.h"
|
||||
|
||||
#include "periph/gpio.h"
|
||||
#include "sdk_conf.h"
|
||||
|
@ -19,8 +19,7 @@
|
||||
#ifndef ARDUINO_BOARD_H
|
||||
#define ARDUINO_BOARD_H
|
||||
|
||||
#include "periph/gpio.h"
|
||||
#include "periph/adc.h"
|
||||
#include "arduino_board_common.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
@ -31,49 +30,6 @@ extern "C" {
|
||||
*/
|
||||
#define ARDUINO_LED (3)
|
||||
|
||||
/**
|
||||
* @brief Look-up table for the Arduino's digital pins
|
||||
*/
|
||||
static const gpio_t arduino_pinmap[] = {
|
||||
GPIO3, /* ARDUINO_PIN_0 (RxD) */
|
||||
GPIO1, /* ARDUINO_PIN_1 (TxD) */
|
||||
|
||||
GPIO32, /* ARDUINO_PIN_2 */
|
||||
GPIO2, /* ARDUINO_PIN_3 (PWM) */
|
||||
GPIO27, /* ARDUINO_PIN_4 */
|
||||
GPIO0, /* ARDUINO_PIN_5 (PWM) */
|
||||
GPIO4, /* ARDUINO_PIN_6 (PWM) */
|
||||
GPIO33, /* ARDUINO_PIN_7 */
|
||||
GPIO25, /* ARDUINO_PIN_8 */
|
||||
GPIO15, /* ARDUINO_PIN_9 (PWM) */
|
||||
|
||||
GPIO5, /* ARDUINO_PIN_10 (CS0 / PWM) */
|
||||
GPIO23, /* ARDUINO_PIN_11 (MOSI / PWM) */
|
||||
GPIO19, /* ARDUINO_PIN_12 (MISO) */
|
||||
GPIO18, /* ARDUINO_PIN_13 (SCK) */
|
||||
|
||||
GPIO34, /* ARDUINO_PIN_A0 */
|
||||
GPIO35, /* ARDUINO_PIN_A1 */
|
||||
GPIO36, /* ARDUINO_PIN_A2 */
|
||||
GPIO39, /* ARDUINO_PIN_A3 */
|
||||
|
||||
GPIO21, /* ARDUINO_PIN_A4 (SDA) */
|
||||
GPIO22, /* ARDUINO_PIN_A5 (SCL) */
|
||||
};
|
||||
|
||||
/**
|
||||
* @brief Look-up table for the Arduino's analog pins
|
||||
*/
|
||||
static const adc_t arduino_analog_map[] = {
|
||||
GPIO34, /* ARDUINO_PIN_A0 */
|
||||
GPIO35, /* ARDUINO_PIN_A1 */
|
||||
GPIO36, /* ARDUINO_PIN_A2 */
|
||||
GPIO39, /* ARDUINO_PIN_A3 */
|
||||
|
||||
GPIO13, /* ARDUINO_PIN_A4 (SDA) */
|
||||
GPIO26, /* ARDUINO_PIN_A5 (SCL) */
|
||||
};
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
64
boards/esp32-mh-et-live-minikit/include/arduino_pinmap.h
Normal file
64
boards/esp32-mh-et-live-minikit/include/arduino_pinmap.h
Normal file
@ -0,0 +1,64 @@
|
||||
/*
|
||||
* Copyright (C) 2018 Gunar Schorcht
|
||||
*
|
||||
* This file is subject to the terms and conditions of the GNU Lesser
|
||||
* General Public License v2.1. See the file LICENSE in the top level
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @ingroup boards_esp32_mh-et-live-minikit
|
||||
* @{
|
||||
*
|
||||
* @file
|
||||
* @brief Mapping from MCU pins to Arduino pins
|
||||
*
|
||||
* @author Gunar Schorcht <gunar@schorcht.net>
|
||||
*/
|
||||
|
||||
#ifndef ARDUINO_PINMAP_H
|
||||
#define ARDUINO_PINMAP_H
|
||||
|
||||
#include "periph/gpio.h"
|
||||
#include "periph/adc.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
/**
|
||||
* @name Mapping of MCU pins to Arduino pins
|
||||
* @{
|
||||
*/
|
||||
#define ARDUINO_PIN_0 GPIO3 /**< Arduino Uno pin 0 (RxD) */
|
||||
#define ARDUINO_PIN_1 GPIO1 /**< Arduino Uno pin 1 (TxD) */
|
||||
|
||||
#define ARDUINO_PIN_2 GPIO32 /**< Arduino Uno pin 2 */
|
||||
#define ARDUINO_PIN_3 GPIO2 /**< Arduino Uno pin 3 (PWM) */
|
||||
#define ARDUINO_PIN_4 GPIO27 /**< Arduino Uno pin 4 */
|
||||
#define ARDUINO_PIN_5 GPIO0 /**< Arduino Uno pin 5 (PWM) */
|
||||
#define ARDUINO_PIN_6 GPIO4 /**< Arduino Uno pin 6 (PWM) */
|
||||
#define ARDUINO_PIN_7 GPIO33 /**< Arduino Uno pin 7 */
|
||||
#define ARDUINO_PIN_8 GPIO25 /**< Arduino Uno pin 8 */
|
||||
#define ARDUINO_PIN_9 GPIO15 /**< Arduino Uno pin 9 (PWM) */
|
||||
|
||||
#define ARDUINO_PIN_10 GPIO5 /**< Arduino Uno pin 10 (CS0 / PWM) */
|
||||
#define ARDUINO_PIN_11 GPIO23 /**< Arduino Uno pin 11 (MOSI / PWM) */
|
||||
#define ARDUINO_PIN_12 GPIO19 /**< Arduino Uno pin 12 (MISO) */
|
||||
#define ARDUINO_PIN_13 GPIO18 /**< Arduino Uno pin 13 (SCK) */
|
||||
|
||||
#define ARDUINO_PIN_A0 GPIO34 /**< Arduino Uno pin A0 */
|
||||
#define ARDUINO_PIN_A1 GPIO35 /**< Arduino Uno pin A1 */
|
||||
#define ARDUINO_PIN_A2 GPIO36 /**< Arduino Uno pin A2 */
|
||||
#define ARDUINO_PIN_A3 GPIO39 /**< Arduino Uno pin A3 */
|
||||
|
||||
#define ARDUINO_PIN_A4 GPIO21 /**< Arduino Uno pin A4 (SDA) */
|
||||
#define ARDUINO_PIN_A5 GPIO22 /**< Arduino Uno pin A5 (SCL) */
|
||||
/** @ */
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* ARDUINO_PINMAP_H */
|
||||
/** @} */
|
@ -19,8 +19,7 @@
|
||||
#ifndef ARDUINO_BOARD_H
|
||||
#define ARDUINO_BOARD_H
|
||||
|
||||
#include "periph/gpio.h"
|
||||
#include "periph/adc.h"
|
||||
#include "arduino_board_common.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
@ -31,49 +30,6 @@ extern "C" {
|
||||
*/
|
||||
#define ARDUINO_LED (0)
|
||||
|
||||
/**
|
||||
* @brief Look-up table for the Arduino's digital pins
|
||||
*/
|
||||
static const gpio_t arduino_pinmap[] = {
|
||||
GPIO3, /* ARDUINO_PIN_0 (RxD) */
|
||||
GPIO1, /* ARDUINO_PIN_1 (TxD) */
|
||||
|
||||
GPIO32, /* ARDUINO_PIN_2 */
|
||||
GPIO33, /* ARDUINO_PIN_3 (PWM) */
|
||||
GPIO4, /* ARDUINO_PIN_4 */
|
||||
GPIO9, /* ARDUINO_PIN_5 (PWM) */
|
||||
GPIO10, /* ARDUINO_PIN_6 (PWM) */
|
||||
GPIO7, /* ARDUINO_PIN_7 */
|
||||
GPIO8, /* ARDUINO_PIN_8 */
|
||||
GPIO_UNDEF, /* ARDUINO_PIN_9 (PWM) */
|
||||
|
||||
GPIO17, /* ARDUINO_PIN_10 (CS0 / PWM) */
|
||||
GPIO15, /* ARDUINO_PIN_11 (MOSI / PWM) */
|
||||
GPIO2, /* ARDUINO_PIN_12 (MISO) */
|
||||
GPIO14, /* ARDUINO_PIN_13 (SCK) */
|
||||
|
||||
GPIO34, /* ARDUINO_PIN_A0 */
|
||||
GPIO35, /* ARDUINO_PIN_A1 */
|
||||
GPIO36, /* ARDUINO_PIN_A2 */
|
||||
GPIO39, /* ARDUINO_PIN_A3 */
|
||||
|
||||
GPIO13, /* ARDUINO_PIN_A4 (SDA) */
|
||||
GPIO16, /* ARDUINO_PIN_A5 (SCL) */
|
||||
};
|
||||
|
||||
/**
|
||||
* @brief Look-up table for the Arduino's analog pins
|
||||
*/
|
||||
static const adc_t arduino_analog_map[] = {
|
||||
GPIO34, /* ARDUINO_PIN_A0 */
|
||||
GPIO35, /* ARDUINO_PIN_A1 */
|
||||
GPIO36, /* ARDUINO_PIN_A2 */
|
||||
GPIO39, /* ARDUINO_PIN_A3 */
|
||||
|
||||
GPIO13, /* ARDUINO_PIN_A4 (SDA) */
|
||||
GPIO16, /* ARDUINO_PIN_A5 (SCL) */
|
||||
};
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
64
boards/esp32-olimex-evb/include/arduino_pinmap.h
Normal file
64
boards/esp32-olimex-evb/include/arduino_pinmap.h
Normal file
@ -0,0 +1,64 @@
|
||||
/*
|
||||
* Copyright (C) 2018 Gunar Schorcht
|
||||
*
|
||||
* This file is subject to the terms and conditions of the GNU Lesser
|
||||
* General Public License v2.1. See the file LICENSE in the top level
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @ingroup boards_esp32_olimex-esp32-evb
|
||||
* @{
|
||||
*
|
||||
* @file
|
||||
* @brief Mapping from MCU pins to Arduino pins
|
||||
*
|
||||
* @author Gunar Schorcht <gunar@schorcht.net>
|
||||
*/
|
||||
|
||||
#ifndef ARDUINO_PINMAP_H
|
||||
#define ARDUINO_PINMAP_H
|
||||
|
||||
#include "periph/gpio.h"
|
||||
#include "periph/adc.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
/**
|
||||
* @name Mapping of MCU pins to Arduino pins
|
||||
* @{
|
||||
*/
|
||||
#define ARDUINO_PIN_0 GPIO3 /**< Arduino Uno pin 0 (RxD) */
|
||||
#define ARDUINO_PIN_1 GPIO1 /**< Arduino Uno pin 1 (TxD) */
|
||||
|
||||
#define ARDUINO_PIN_2 GPIO32 /**< Arduino Uno pin 2 */
|
||||
#define ARDUINO_PIN_3 GPIO33 /**< Arduino Uno pin 3 (PWM) */
|
||||
#define ARDUINO_PIN_4 GPIO4 /**< Arduino Uno pin 4 */
|
||||
#define ARDUINO_PIN_5 GPIO9 /**< Arduino Uno pin 5 (PWM) */
|
||||
#define ARDUINO_PIN_6 GPIO10 /**< Arduino Uno pin 6 (PWM) */
|
||||
#define ARDUINO_PIN_7 GPIO7 /**< Arduino Uno pin 7 */
|
||||
#define ARDUINO_PIN_8 GPIO8 /**< Arduino Uno pin 8 */
|
||||
#define ARDUINO_PIN_9 GPIO_UNDEF /**< Arduino Uno pin 9 (PWM) */
|
||||
|
||||
#define ARDUINO_PIN_10 GPIO17 /**< Arduino Uno pin 10 (CS0 / PWM) */
|
||||
#define ARDUINO_PIN_11 GPIO15 /**< Arduino Uno pin 11 (MOSI / PWM) */
|
||||
#define ARDUINO_PIN_12 GPIO2 /**< Arduino Uno pin 12 (MISO) */
|
||||
#define ARDUINO_PIN_13 GPIO14 /**< Arduino Uno pin 13 (SCK) */
|
||||
|
||||
#define ARDUINO_PIN_A0 GPIO34 /**< Arduino Uno pin A0 */
|
||||
#define ARDUINO_PIN_A1 GPIO35 /**< Arduino Uno pin A1 */
|
||||
#define ARDUINO_PIN_A2 GPIO36 /**< Arduino Uno pin A2 */
|
||||
#define ARDUINO_PIN_A3 GPIO39 /**< Arduino Uno pin A3 */
|
||||
|
||||
#define ARDUINO_PIN_A4 GPIO13 /**< Arduino Uno pin A4 (SDA) */
|
||||
#define ARDUINO_PIN_A5 GPIO16 /**< Arduino Uno pin A5 (SCL) */
|
||||
/** @ */
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* ARDUINO_PINMAP_H */
|
||||
/** @} */
|
@ -19,6 +19,8 @@
|
||||
#ifndef ARDUINO_BOARD_H
|
||||
#define ARDUINO_BOARD_H
|
||||
|
||||
#include "arduino_board_common.h"
|
||||
|
||||
#include "periph/gpio.h"
|
||||
#include "periph/adc.h"
|
||||
|
||||
@ -31,49 +33,6 @@ extern "C" {
|
||||
*/
|
||||
#define ARDUINO_LED (10)
|
||||
|
||||
/**
|
||||
* @brief Look-up table for the Arduino's digital pins
|
||||
*/
|
||||
static const gpio_t arduino_pinmap[] = {
|
||||
GPIO3, /* ARDUINO_PIN_0 (RxD) */
|
||||
GPIO1, /* ARDUINO_PIN_1 (TxD) */
|
||||
|
||||
GPIO4, /* ARDUINO_PIN_2 */
|
||||
GPIO0, /* ARDUINO_PIN_3 (PWM) */
|
||||
GPIO13, /* ARDUINO_PIN_4 */
|
||||
GPIO2, /* ARDUINO_PIN_5 (PWM) */
|
||||
GPIO15, /* ARDUINO_PIN_6 (PWM) */
|
||||
GPIO25, /* ARDUINO_PIN_7 */
|
||||
GPIO26, /* ARDUINO_PIN_8 */
|
||||
GPIO32, /* ARDUINO_PIN_9 (PWM) */
|
||||
|
||||
GPIO5, /* ARDUINO_PIN_10 (CS0 / PWM) */
|
||||
GPIO23, /* ARDUINO_PIN_11 (MOSI / PWM) */
|
||||
GPIO19, /* ARDUINO_PIN_12 (MISO) */
|
||||
GPIO18, /* ARDUINO_PIN_13 (SCK) */
|
||||
|
||||
GPIO36, /* ARDUINO_PIN_A0 */
|
||||
GPIO39, /* ARDUINO_PIN_A1 */
|
||||
GPIO34, /* ARDUINO_PIN_A2 */
|
||||
GPIO35, /* ARDUINO_PIN_A3 */
|
||||
|
||||
GPIO21, /* ARDUINO_PIN_A4 (SDA) */
|
||||
GPIO22, /* ARDUINO_PIN_A5 (SCL) */
|
||||
};
|
||||
|
||||
/**
|
||||
* @brief Look-up table for the Arduino's analog pins
|
||||
*/
|
||||
static const adc_t arduino_analog_map[] = {
|
||||
GPIO36, /* ARDUINO_PIN_A0 */
|
||||
GPIO39, /* ARDUINO_PIN_A1 */
|
||||
GPIO34, /* ARDUINO_PIN_A2 */
|
||||
GPIO35, /* ARDUINO_PIN_A3 */
|
||||
|
||||
GPIO27, /* ARDUINO_PIN_A4 (SDA) */
|
||||
GPIO33, /* ARDUINO_PIN_A5 (SCL) */
|
||||
};
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
64
boards/esp32-wemos-lolin-d32-pro/include/arduino_pinmap.h
Normal file
64
boards/esp32-wemos-lolin-d32-pro/include/arduino_pinmap.h
Normal file
@ -0,0 +1,64 @@
|
||||
/*
|
||||
* Copyright (C) 2018 Gunar Schorcht
|
||||
*
|
||||
* This file is subject to the terms and conditions of the GNU Lesser
|
||||
* General Public License v2.1. See the file LICENSE in the top level
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @ingroup boards_esp32_wemos-lolin-d32-pro
|
||||
* @{
|
||||
*
|
||||
* @file
|
||||
* @brief Mapping from MCU pins to Arduino pins
|
||||
*
|
||||
* @author Gunar Schorcht <gunar@schorcht.net>
|
||||
*/
|
||||
|
||||
#ifndef ARDUINO_PINMAP_H
|
||||
#define ARDUINO_PINMAP_H
|
||||
|
||||
#include "periph/gpio.h"
|
||||
#include "periph/adc.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
/**
|
||||
* @name Mapping of MCU pins to Arduino pins
|
||||
* @{
|
||||
*/
|
||||
#define ARDUINO_PIN_0 GPIO3 /**< Arduino Uno pin 0 (RxD) */
|
||||
#define ARDUINO_PIN_1 GPIO1 /**< Arduino Uno pin 1 (TxD) */
|
||||
|
||||
#define ARDUINO_PIN_2 GPIO4 /**< Arduino Uno pin 2 */
|
||||
#define ARDUINO_PIN_3 GPIO0 /**< Arduino Uno pin 3 (PWM) */
|
||||
#define ARDUINO_PIN_4 GPIO13 /**< Arduino Uno pin 4 */
|
||||
#define ARDUINO_PIN_5 GPIO2 /**< Arduino Uno pin 5 (PWM) */
|
||||
#define ARDUINO_PIN_6 GPIO15 /**< Arduino Uno pin 6 (PWM) */
|
||||
#define ARDUINO_PIN_7 GPIO25 /**< Arduino Uno pin 7 */
|
||||
#define ARDUINO_PIN_8 GPIO26 /**< Arduino Uno pin 8 */
|
||||
#define ARDUINO_PIN_9 GPIO32 /**< Arduino Uno pin 9 (PWM) */
|
||||
|
||||
#define ARDUINO_PIN_10 GPIO5 /**< Arduino Uno pin 10 (CS0 / PWM) */
|
||||
#define ARDUINO_PIN_11 GPIO23 /**< Arduino Uno pin 11 (MOSI / PWM) */
|
||||
#define ARDUINO_PIN_12 GPIO19 /**< Arduino Uno pin 12 (MISO) */
|
||||
#define ARDUINO_PIN_13 GPIO18 /**< Arduino Uno pin 13 (SCK) */
|
||||
|
||||
#define ARDUINO_PIN_A0 GPIO36 /**< Arduino Uno pin A0 */
|
||||
#define ARDUINO_PIN_A1 GPIO39 /**< Arduino Uno pin A1 */
|
||||
#define ARDUINO_PIN_A2 GPIO34 /**< Arduino Uno pin A2 */
|
||||
#define ARDUINO_PIN_A3 GPIO35 /**< Arduino Uno pin A3 */
|
||||
|
||||
#define ARDUINO_PIN_A4 GPIO21 /**< Arduino Uno pin A4 (SDA) */
|
||||
#define ARDUINO_PIN_A5 GPIO22 /**< Arduino Uno pin A5 (SCL) */
|
||||
/** @ */
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* ARDUINO_PINMAP_H */
|
||||
/** @} */
|
@ -19,8 +19,7 @@
|
||||
#ifndef ARDUINO_BOARD_H
|
||||
#define ARDUINO_BOARD_H
|
||||
|
||||
#include "periph/gpio.h"
|
||||
#include "periph/adc.h"
|
||||
#include "arduino_board_common.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
@ -31,49 +30,6 @@ extern "C" {
|
||||
*/
|
||||
#define ARDUINO_LED (0)
|
||||
|
||||
/**
|
||||
* @brief Look-up table for the Arduino's digital pins
|
||||
*/
|
||||
static const gpio_t arduino_pinmap[] = {
|
||||
GPIO3, /* ARDUINO_PIN_0 (RxD) */
|
||||
GPIO1, /* ARDUINO_PIN_1 (TxD) */
|
||||
|
||||
GPIO12, /* ARDUINO_PIN_2 */
|
||||
GPIO27, /* ARDUINO_PIN_3 (PWM) */
|
||||
GPIO2, /* ARDUINO_PIN_4 */
|
||||
GPIO32, /* ARDUINO_PIN_5 (PWM) */
|
||||
GPIO33, /* ARDUINO_PIN_6 (PWM) */
|
||||
GPIO13, /* ARDUINO_PIN_7 */
|
||||
GPIO14, /* ARDUINO_PIN_8 */
|
||||
GPIO0, /* ARDUINO_PIN_9 (PWM) */
|
||||
|
||||
GPIO5, /* ARDUINO_PIN_10 (CS0 / PWM) */
|
||||
GPIO23, /* ARDUINO_PIN_11 (MOSI / PWM) */
|
||||
GPIO19, /* ARDUINO_PIN_12 (MISO) */
|
||||
GPIO18, /* ARDUINO_PIN_13 (SCK) */
|
||||
|
||||
GPIO25, /* ARDUINO_PIN_A0 */
|
||||
GPIO26, /* ARDUINO_PIN_A1 */
|
||||
GPIO4, /* ARDUINO_PIN_A2 */
|
||||
GPIO15, /* ARDUINO_PIN_A3 */
|
||||
|
||||
GPIO21, /* ARDUINO_PIN_A4 (SDA) */
|
||||
GPIO22, /* ARDUINO_PIN_A5 (SCL) */
|
||||
};
|
||||
|
||||
/**
|
||||
* @brief Look-up table for the Arduino's analog pins
|
||||
*/
|
||||
static const adc_t arduino_analog_map[] = {
|
||||
GPIO25, /* ARDUINO_PIN_A0 */
|
||||
GPIO26, /* ARDUINO_PIN_A1 */
|
||||
GPIO4, /* ARDUINO_PIN_A2 */
|
||||
GPIO15, /* ARDUINO_PIN_A3 */
|
||||
|
||||
GPIO34, /* ARDUINO_PIN_A4 (SDA) */
|
||||
GPIO35, /* ARDUINO_PIN_A5 (SCL) */
|
||||
};
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
64
boards/esp32-wroom-32/include/arduino_pinmap.h
Normal file
64
boards/esp32-wroom-32/include/arduino_pinmap.h
Normal file
@ -0,0 +1,64 @@
|
||||
/*
|
||||
* Copyright (C) 2018 Gunar Schorcht
|
||||
*
|
||||
* This file is subject to the terms and conditions of the GNU Lesser
|
||||
* General Public License v2.1. See the file LICENSE in the top level
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @ingroup boards_esp32_wroom-32
|
||||
* @{
|
||||
*
|
||||
* @file
|
||||
* @brief Mapping from MCU pins to Arduino pins
|
||||
*
|
||||
* @author Gunar Schorcht <gunar@schorcht.net>
|
||||
*/
|
||||
|
||||
#ifndef ARDUINO_PINMAP_H
|
||||
#define ARDUINO_PINMAP_H
|
||||
|
||||
#include "periph/gpio.h"
|
||||
#include "periph/adc.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
/**
|
||||
* @name Mapping of MCU pins to Arduino pins
|
||||
* @{
|
||||
*/
|
||||
#define ARDUINO_PIN_0 GPIO3 /**< Arduino Uno pin 0 (RxD) */
|
||||
#define ARDUINO_PIN_1 GPIO1 /**< Arduino Uno pin 1 (TxD) */
|
||||
|
||||
#define ARDUINO_PIN_2 GPIO12 /**< Arduino Uno pin 2 */
|
||||
#define ARDUINO_PIN_3 GPIO27 /**< Arduino Uno pin 3 (PWM) */
|
||||
#define ARDUINO_PIN_4 GPIO2 /**< Arduino Uno pin 4 */
|
||||
#define ARDUINO_PIN_5 GPIO32 /**< Arduino Uno pin 5 (PWM) */
|
||||
#define ARDUINO_PIN_6 GPIO33 /**< Arduino Uno pin 6 (PWM) */
|
||||
#define ARDUINO_PIN_7 GPIO13 /**< Arduino Uno pin 7 */
|
||||
#define ARDUINO_PIN_8 GPIO14 /**< Arduino Uno pin 8 */
|
||||
#define ARDUINO_PIN_9 GPIO0 /**< Arduino Uno pin 9 (PWM) */
|
||||
|
||||
#define ARDUINO_PIN_10 GPIO5 /**< Arduino Uno pin 10 (CS0 / PWM) */
|
||||
#define ARDUINO_PIN_11 GPIO23 /**< Arduino Uno pin 11 (MOSI / PWM) */
|
||||
#define ARDUINO_PIN_12 GPI19O /**< Arduino Uno pin 12 (MISO) */
|
||||
#define ARDUINO_PIN_13 GPIO18 /**< Arduino Uno pin 13 (SCK) */
|
||||
|
||||
#define ARDUINO_PIN_A0 GPIO25 /**< Arduino Uno pin A0 */
|
||||
#define ARDUINO_PIN_A1 GPIO26 /**< Arduino Uno pin A1 */
|
||||
#define ARDUINO_PIN_A2 GPIO4 /**< Arduino Uno pin A2 */
|
||||
#define ARDUINO_PIN_A3 GPIO15 /**< Arduino Uno pin A3 */
|
||||
|
||||
#define ARDUINO_PIN_A4 GPIO21 /**< Arduino Uno pin A4 (SDA) */
|
||||
#define ARDUINO_PIN_A5 GPIO22 /**< Arduino Uno pin A5 (SCL) */
|
||||
/** @ */
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* ARDUINO_PINMAP_H */
|
||||
/** @} */
|
@ -19,8 +19,7 @@
|
||||
#ifndef ARDUINO_BOARD_H
|
||||
#define ARDUINO_BOARD_H
|
||||
|
||||
#include "periph/gpio.h"
|
||||
#include "periph/adc.h"
|
||||
#include "arduino_board_common.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
@ -31,49 +30,6 @@ extern "C" {
|
||||
*/
|
||||
#define ARDUINO_LED (0)
|
||||
|
||||
/**
|
||||
* @brief Look-up table for the Arduino's digital pins
|
||||
*/
|
||||
static const gpio_t arduino_pinmap[] = {
|
||||
GPIO3, /* ARDUINO_PIN_0 (RxD) */
|
||||
GPIO1, /* ARDUINO_PIN_1 (TxD) */
|
||||
|
||||
GPIO19, /* ARDUINO_PIN_2 */
|
||||
GPIO0, /* ARDUINO_PIN_3 (PWM) */
|
||||
GPIO22, /* ARDUINO_PIN_4 */
|
||||
GPIO4, /* ARDUINO_PIN_5 (PWM) */
|
||||
GPIO23, /* ARDUINO_PIN_6 (PWM) */
|
||||
GPIO25, /* ARDUINO_PIN_7 */
|
||||
GPIO9, /* ARDUINO_PIN_8 */
|
||||
GPIO10, /* ARDUINO_PIN_9 (PWM) */
|
||||
|
||||
GPIO13, /* ARDUINO_PIN_10 (CS0 / PWM) */
|
||||
GPIO15, /* ARDUINO_PIN_11 (MOSI / PWM) */
|
||||
GPIO2, /* ARDUINO_PIN_12 (MISO) */
|
||||
GPIO14, /* ARDUINO_PIN_13 (SCK) */
|
||||
|
||||
GPIO34, /* ARDUINO_PIN_A0 */
|
||||
GPIO35, /* ARDUINO_PIN_A1 */
|
||||
GPIO36, /* ARDUINO_PIN_A2 */
|
||||
GPIO39, /* ARDUINO_PIN_A3 */
|
||||
|
||||
GPIO26, /* ARDUINO_PIN_A4 (SDA) */
|
||||
GPIO27, /* ARDUINO_PIN_A5 (SCL) */
|
||||
};
|
||||
|
||||
/**
|
||||
* @brief Look-up table for the Arduino's analog pins
|
||||
*/
|
||||
static const adc_t arduino_analog_map[] = {
|
||||
GPIO34, /* ARDUINO_PIN_A0 */
|
||||
GPIO35, /* ARDUINO_PIN_A1 */
|
||||
GPIO36, /* ARDUINO_PIN_A2 */
|
||||
GPIO39, /* ARDUINO_PIN_A3 */
|
||||
|
||||
GPIO26, /* ARDUINO_PIN_A4 (SDA) */
|
||||
GPIO27, /* ARDUINO_PIN_A5 (SCL) */
|
||||
};
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
64
boards/esp32-wrover-kit/include/arduino_pinmap.h
Normal file
64
boards/esp32-wrover-kit/include/arduino_pinmap.h
Normal file
@ -0,0 +1,64 @@
|
||||
/*
|
||||
* Copyright (C) 2018 Gunar Schorcht
|
||||
*
|
||||
* This file is subject to the terms and conditions of the GNU Lesser
|
||||
* General Public License v2.1. See the file LICENSE in the top level
|
||||
* directory for more details.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @ingroup boards_esp32_esp-wrover-kit
|
||||
* @{
|
||||
*
|
||||
* @file
|
||||
* @brief Mapping from MCU pins to Arduino pins
|
||||
*
|
||||
* @author Gunar Schorcht <gunar@schorcht.net>
|
||||
*/
|
||||
|
||||
#ifndef ARDUINO_PINMAP_H
|
||||
#define ARDUINO_PINMAP_H
|
||||
|
||||
#include "periph/gpio.h"
|
||||
#include "periph/adc.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
/**
|
||||
* @name Mapping of MCU pins to Arduino pins
|
||||
* @{
|
||||
*/
|
||||
#define ARDUINO_PIN_0 GPIO3 /**< Arduino Uno pin 0 (RxD) */
|
||||
#define ARDUINO_PIN_1 GPIO1 /**< Arduino Uno pin 1 (TxD) */
|
||||
|
||||
#define ARDUINO_PIN_2 GPIO19 /**< Arduino Uno pin 2 */
|
||||
#define ARDUINO_PIN_3 GPIO0 /**< Arduino Uno pin 3 (PWM) */
|
||||
#define ARDUINO_PIN_4 GPIO22 /**< Arduino Uno pin 4 */
|
||||
#define ARDUINO_PIN_5 GPIO4 /**< Arduino Uno pin 5 (PWM) */
|
||||
#define ARDUINO_PIN_6 GPIO23 /**< Arduino Uno pin 6 (PWM) */
|
||||
#define ARDUINO_PIN_7 GPIO25 /**< Arduino Uno pin 7 */
|
||||
#define ARDUINO_PIN_8 GPIO9 /**< Arduino Uno pin 8 */
|
||||
#define ARDUINO_PIN_9 GPIO10 /**< Arduino Uno pin 9 (PWM) */
|
||||
|
||||
#define ARDUINO_PIN_10 GPIO13 /**< Arduino Uno pin 10 (CS0 / PWM) */
|
||||
#define ARDUINO_PIN_11 GPIO15 /**< Arduino Uno pin 11 (MOSI / PWM) */
|
||||
#define ARDUINO_PIN_12 GPIO2 /**< Arduino Uno pin 12 (MISO) */
|
||||
#define ARDUINO_PIN_13 GPIO14 /**< Arduino Uno pin 13 (SCK) */
|
||||
|
||||
#define ARDUINO_PIN_A0 GPIO34 /**< Arduino Uno pin A0 */
|
||||
#define ARDUINO_PIN_A1 GPIO35 /**< Arduino Uno pin A1 */
|
||||
#define ARDUINO_PIN_A2 GPIO36 /**< Arduino Uno pin A2 */
|
||||
#define ARDUINO_PIN_A3 GPIO39 /**< Arduino Uno pin A3 */
|
||||
|
||||
#define ARDUINO_PIN_A4 GPIO26 /**< Arduino Uno pin A4 (SDA) */
|
||||
#define ARDUINO_PIN_A5 GPIO27 /**< Arduino Uno pin A5 (SCL) */
|
||||
/** @ */
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif /* ARDUINO_PINMAP_H */
|
||||
/** @} */
|
Loading…
Reference in New Issue
Block a user