2015-08-08 15:59:25 +02:00
|
|
|
/*
|
2016-11-08 18:17:17 +01:00
|
|
|
* Copyright (C) 2014-2016 Freie Universität Berlin
|
|
|
|
* 2015 Zolertia SL
|
2015-08-08 15:59:25 +02:00
|
|
|
*
|
2016-11-08 18:17:17 +01:00
|
|
|
* 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.
|
2015-08-08 15:59:25 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2017-04-13 17:13:14 +02:00
|
|
|
* @ingroup boards_remote-pa
|
2015-08-08 15:59:25 +02:00
|
|
|
* @{
|
|
|
|
*
|
|
|
|
* @file
|
2016-06-29 16:30:13 +02:00
|
|
|
* @brief Peripheral MCU configuration for the Re-Mote board prototype A
|
2015-08-08 15:59:25 +02:00
|
|
|
*
|
|
|
|
* @author Hauke Petersen <hauke.petersen@fu-berlin.de>
|
2016-11-08 18:17:17 +01:00
|
|
|
* @author Antonio Lignan <alinan@zolertia.com>
|
2017-07-06 13:39:52 +02:00
|
|
|
* @author Sebastian Meiling <s@mlng.net>
|
2015-08-08 15:59:25 +02:00
|
|
|
*/
|
|
|
|
|
2017-01-18 13:00:05 +01:00
|
|
|
#ifndef PERIPH_CONF_H
|
|
|
|
#define PERIPH_CONF_H
|
2015-08-08 15:59:25 +02:00
|
|
|
|
2020-01-08 14:40:20 +01:00
|
|
|
#include "periph_cpu.h"
|
|
|
|
#include "cfg_clk_default.h"
|
|
|
|
#include "cfg_timer_default.h"
|
|
|
|
#include "cfg_uart_default.h"
|
2016-03-03 17:04:39 +01:00
|
|
|
|
2015-08-08 15:59:25 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2016-03-03 17:04:39 +01:00
|
|
|
/**
|
2017-04-10 19:04:32 +02:00
|
|
|
* @name I2C configuration
|
2016-03-03 17:04:39 +01:00
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
#define I2C_IRQ_PRIO 1
|
|
|
|
|
2018-06-14 12:26:00 +02:00
|
|
|
static const i2c_conf_t i2c_config[] = {
|
2016-03-03 17:04:39 +01:00
|
|
|
{
|
2018-06-14 12:26:00 +02:00
|
|
|
.speed = I2C_SPEED_FAST, /**< bus speed */
|
|
|
|
.scl_pin = GPIO_PIN(1, 1), /**< GPIO_PB1 */
|
|
|
|
.sda_pin = GPIO_PIN(1, 0) /**< GPIO_PB0 */
|
2016-03-03 17:04:39 +01:00
|
|
|
},
|
|
|
|
};
|
2018-06-14 12:26:00 +02:00
|
|
|
|
2019-07-18 15:14:29 +02:00
|
|
|
#define I2C_NUMOF ARRAY_SIZE(i2c_config)
|
2016-03-03 17:04:39 +01:00
|
|
|
/** @} */
|
|
|
|
|
2015-09-17 21:11:42 +02:00
|
|
|
/**
|
2017-04-10 19:04:32 +02:00
|
|
|
* @name SPI configuration
|
2015-09-17 21:11:42 +02:00
|
|
|
* @{
|
|
|
|
*/
|
2016-11-08 18:17:17 +01:00
|
|
|
static const spi_conf_t spi_config[] = {
|
2015-09-17 21:11:42 +02:00
|
|
|
{
|
2018-08-03 16:05:53 +02:00
|
|
|
.num = 0,
|
|
|
|
.mosi_pin = GPIO_PIN(3, 0),
|
|
|
|
.miso_pin = GPIO_PIN(2, 4),
|
|
|
|
.sck_pin = GPIO_PIN(3, 1),
|
|
|
|
.cs_pin = GPIO_PIN(3, 3)
|
2015-09-17 21:11:42 +02:00
|
|
|
},
|
|
|
|
{
|
2018-08-03 16:05:53 +02:00
|
|
|
.num = 1,
|
|
|
|
.mosi_pin = GPIO_PIN(2, 7),
|
|
|
|
.miso_pin = GPIO_PIN(0, 4),
|
|
|
|
.sck_pin = GPIO_PIN(1 ,5),
|
2022-01-04 13:00:58 +01:00
|
|
|
.cs_pin = SPI_CS_UNDEF,
|
2016-11-08 18:17:17 +01:00
|
|
|
}
|
2015-09-17 21:11:42 +02:00
|
|
|
};
|
2016-11-08 18:17:17 +01:00
|
|
|
|
2019-07-18 15:14:29 +02:00
|
|
|
#define SPI_NUMOF ARRAY_SIZE(spi_config)
|
2015-08-08 15:59:25 +02:00
|
|
|
/** @} */
|
|
|
|
|
2017-07-06 13:39:52 +02:00
|
|
|
/**
|
|
|
|
* @name ADC configuration
|
|
|
|
* @{
|
|
|
|
*/
|
2018-08-06 21:44:00 +02:00
|
|
|
#define SOC_ADC_ADCCON3_EREF SOC_ADC_ADCCON3_EREF_AVDD5
|
2017-07-06 13:39:52 +02:00
|
|
|
|
|
|
|
static const adc_conf_t adc_config[] = {
|
|
|
|
GPIO_PIN(0, 6), /**< GPIO_PA6 = ADC2_PIN */
|
|
|
|
GPIO_PIN(0, 7), /**< GPIO_PA7 = ADC3_PIN */
|
|
|
|
};
|
|
|
|
|
2019-07-18 15:14:29 +02:00
|
|
|
#define ADC_NUMOF ARRAY_SIZE(adc_config)
|
2017-07-06 13:39:52 +02:00
|
|
|
/** @} */
|
|
|
|
|
2015-08-08 15:59:25 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
} /* end extern "C" */
|
|
|
|
#endif
|
|
|
|
|
2017-01-18 13:00:05 +01:00
|
|
|
#endif /* PERIPH_CONF_H */
|
2015-08-08 15:59:25 +02:00
|
|
|
/** @} */
|