mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
98 lines
1.9 KiB
C
98 lines
1.9 KiB
C
/*
|
|
* Copyright (C) 2016 Freie Universität Berlin
|
|
* 2016-2017 Inria
|
|
*
|
|
* 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_arduino-mkr
|
|
* @{
|
|
*
|
|
* @file
|
|
* @brief Board specific configuration for the Arduino API
|
|
*
|
|
* @author Hauke Petersen <hauke.petersen@fu-berlin.de>
|
|
* @author Alexandre Abadie <alexandre.abadie@inria.fr>
|
|
*/
|
|
|
|
#ifndef ARDUINO_BOARD_H
|
|
#define ARDUINO_BOARD_H
|
|
|
|
#include "arduino_pinmap.h"
|
|
#include "periph/pwm.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/**
|
|
* @brief On-board serial port mapping, stdio is used for Serial
|
|
*/
|
|
#ifndef ARDUINO_UART_DEV
|
|
#define ARDUINO_UART_DEV UART_UNDEF
|
|
#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_14,
|
|
ARDUINO_PIN_A0,
|
|
ARDUINO_PIN_A1,
|
|
ARDUINO_PIN_A2,
|
|
ARDUINO_PIN_A3,
|
|
ARDUINO_PIN_A4,
|
|
ARDUINO_PIN_A5,
|
|
ARDUINO_PIN_A6,
|
|
};
|
|
|
|
/**
|
|
* @brief Look-up table for the Arduino's analog pins
|
|
*/
|
|
static const adc_t arduino_analog_map[] = {
|
|
ARDUINO_A0,
|
|
ARDUINO_A1,
|
|
ARDUINO_A2,
|
|
ARDUINO_A3,
|
|
ARDUINO_A4,
|
|
ARDUINO_A5,
|
|
ARDUINO_A6,
|
|
};
|
|
|
|
/**
|
|
* @brief PWM frequency
|
|
*/
|
|
#define ARDUINO_PWM_FREQU (732U)
|
|
|
|
/**
|
|
* @brief List of PWM GPIO mappings
|
|
*/
|
|
static const arduino_pwm_t arduino_pwm_list[] = {
|
|
{ .pin = 2, .dev = PWM_DEV(0), .chan = 0 },
|
|
{ .pin = 3, .dev = PWM_DEV(0), .chan = 1 },
|
|
};
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* ARDUINO_BOARD_H */
|
|
/** @} */
|