2014-07-28 22:41:55 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2014 Freie Universität Berlin
|
|
|
|
*
|
|
|
|
* 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-02-12 13:39:47 +01:00
|
|
|
* @ingroup boards_msbiot
|
2014-07-28 22:41:55 +02:00
|
|
|
* @{
|
|
|
|
*
|
|
|
|
* @file
|
|
|
|
* @name Peripheral MCU configuration for the MSB-IoT board
|
|
|
|
*
|
|
|
|
* @author Fabian Nack <nack@inf.fu-berlin.de>
|
|
|
|
*/
|
|
|
|
|
2017-01-18 13:00:05 +01:00
|
|
|
#ifndef PERIPH_CONF_H
|
|
|
|
#define PERIPH_CONF_H
|
2014-07-28 22:41:55 +02:00
|
|
|
|
2015-10-28 11:57:04 +01:00
|
|
|
#include "periph_cpu.h"
|
2018-02-13 11:25:32 +01:00
|
|
|
#include "f4/cfg_clock_168_16_0.h"
|
|
|
|
#include "cfg_spi_divtable.h"
|
2015-10-28 11:57:04 +01:00
|
|
|
|
2014-10-13 15:25:50 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2014-07-28 22:41:55 +02:00
|
|
|
/**
|
2017-04-10 19:04:32 +02:00
|
|
|
* @name Timer configuration
|
2014-07-28 22:41:55 +02:00
|
|
|
* @{
|
|
|
|
*/
|
2016-12-07 12:56:24 +01:00
|
|
|
static const timer_conf_t timer_config[] = {
|
|
|
|
{
|
|
|
|
.dev = TIM2,
|
|
|
|
.max = 0xffffffff,
|
|
|
|
.rcc_mask = RCC_APB1ENR_TIM2EN,
|
|
|
|
.bus = APB1,
|
|
|
|
.irqn = TIM2_IRQn
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.dev = TIM5,
|
|
|
|
.max = 0xffffffff,
|
|
|
|
.rcc_mask = RCC_APB1ENR_TIM5EN,
|
|
|
|
.bus = APB1,
|
|
|
|
.irqn = TIM5_IRQn
|
|
|
|
}
|
|
|
|
};
|
2014-07-28 22:41:55 +02:00
|
|
|
|
|
|
|
#define TIMER_0_ISR isr_tim2
|
|
|
|
#define TIMER_1_ISR isr_tim5
|
2016-12-07 12:56:24 +01:00
|
|
|
|
|
|
|
#define TIMER_NUMOF (sizeof(timer_config) / sizeof(timer_config[0]))
|
2014-07-28 22:41:55 +02:00
|
|
|
/** @} */
|
|
|
|
|
2015-01-22 02:03:42 +01:00
|
|
|
/**
|
2017-02-16 17:59:21 +01:00
|
|
|
* @name PWM configuration
|
2015-01-22 02:03:42 +01:00
|
|
|
* @{
|
|
|
|
*/
|
2016-12-07 14:58:28 +01:00
|
|
|
static const pwm_conf_t pwm_config[] = {
|
|
|
|
{
|
|
|
|
.dev = TIM11,
|
|
|
|
.rcc_mask = RCC_APB2ENR_TIM11EN,
|
2017-01-17 14:08:39 +01:00
|
|
|
.chan = { { .pin = GPIO_PIN(PORT_B, 9), .cc_chan = 0 },
|
|
|
|
{ .pin = GPIO_UNDEF, .cc_chan = 0 },
|
|
|
|
{ .pin = GPIO_UNDEF, .cc_chan = 0 },
|
|
|
|
{ .pin = GPIO_UNDEF, .cc_chan = 0 } },
|
2016-12-07 14:58:28 +01:00
|
|
|
.af = GPIO_AF3,
|
|
|
|
.bus = APB2
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
#define PWM_NUMOF (sizeof(pwm_config) / sizeof(pwm_config[0]))
|
2015-01-22 02:03:42 +01:00
|
|
|
/** @} */
|
2014-07-28 22:41:55 +02:00
|
|
|
|
2015-03-11 13:32:39 +01:00
|
|
|
/**
|
2017-04-10 19:04:32 +02:00
|
|
|
* @name ADC configuration
|
2016-01-26 23:42:46 +01:00
|
|
|
*
|
|
|
|
* We need to define the following fields:
|
|
|
|
* PIN, device (ADCx), channel
|
2015-03-11 13:32:39 +01:00
|
|
|
* @{
|
|
|
|
*/
|
2016-01-26 23:42:46 +01:00
|
|
|
#define ADC_CONFIG { \
|
|
|
|
{GPIO_PIN(PORT_B, 0), 0, 8}, \
|
|
|
|
{GPIO_PIN(PORT_B, 1), 0, 9} \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define ADC_NUMOF (2)
|
2015-03-11 13:32:39 +01:00
|
|
|
/** @} */
|
|
|
|
|
2015-03-11 13:52:22 +01:00
|
|
|
/**
|
2017-06-27 12:45:50 +02:00
|
|
|
* @name DAC configuration
|
2015-03-11 13:52:22 +01:00
|
|
|
* @{
|
|
|
|
*/
|
2017-06-27 12:45:50 +02:00
|
|
|
static const dac_conf_t dac_config[] = {
|
|
|
|
{ .pin = GPIO_PIN(PORT_A, 4), .chan = 0 },
|
|
|
|
{ .pin = GPIO_PIN(PORT_A, 5), .chan = 1 }
|
|
|
|
};
|
2016-03-14 20:14:58 +01:00
|
|
|
|
2017-06-27 12:45:50 +02:00
|
|
|
#define DAC_NUMOF (sizeof(dac_config) / sizeof(dac_config[0]))
|
2015-03-11 13:52:22 +01:00
|
|
|
/** @} */
|
|
|
|
|
2014-07-28 22:41:55 +02:00
|
|
|
/**
|
2017-04-10 19:04:32 +02:00
|
|
|
* @name UART configuration
|
2014-07-28 22:41:55 +02:00
|
|
|
* @{
|
|
|
|
*/
|
2015-10-28 11:57:04 +01:00
|
|
|
static const uart_conf_t uart_config[] = {
|
|
|
|
{
|
2016-03-16 12:16:32 +01:00
|
|
|
.dev = USART2,
|
|
|
|
.rcc_mask = RCC_APB1ENR_USART2EN,
|
2016-12-07 17:03:52 +01:00
|
|
|
.rx_pin = GPIO_PIN(PORT_A, 3),
|
|
|
|
.tx_pin = GPIO_PIN(PORT_A, 2),
|
|
|
|
.rx_af = GPIO_AF7,
|
|
|
|
.tx_af = GPIO_AF7,
|
2016-03-16 12:16:32 +01:00
|
|
|
.bus = APB1,
|
|
|
|
.irqn = USART2_IRQn,
|
2016-12-07 17:03:52 +01:00
|
|
|
#ifdef UART_USE_DMA
|
2016-03-16 12:16:32 +01:00
|
|
|
.dma_stream = 6,
|
|
|
|
.dma_chan = 4
|
2016-12-07 17:03:52 +01:00
|
|
|
#endif
|
2015-10-28 11:57:04 +01:00
|
|
|
},
|
|
|
|
{
|
2016-03-16 12:16:32 +01:00
|
|
|
.dev = USART1,
|
|
|
|
.rcc_mask = RCC_APB2ENR_USART1EN,
|
2016-12-07 17:03:52 +01:00
|
|
|
.rx_pin = GPIO_PIN(PORT_A, 10),
|
|
|
|
.tx_pin = GPIO_PIN(PORT_A, 9),
|
|
|
|
.rx_af = GPIO_AF7,
|
|
|
|
.tx_af = GPIO_AF7,
|
2016-03-16 12:16:32 +01:00
|
|
|
.bus = APB2,
|
|
|
|
.irqn = USART1_IRQn,
|
2016-12-07 17:03:52 +01:00
|
|
|
#ifdef UART_USE_DMA
|
2016-03-16 12:16:32 +01:00
|
|
|
.dma_stream = 15,
|
|
|
|
.dma_chan = 4
|
2016-12-07 17:03:52 +01:00
|
|
|
#endif
|
2015-10-28 11:57:04 +01:00
|
|
|
},
|
|
|
|
{
|
2016-03-16 12:16:32 +01:00
|
|
|
.dev = USART3,
|
|
|
|
.rcc_mask = RCC_APB1ENR_USART3EN,
|
2016-12-07 17:03:52 +01:00
|
|
|
.rx_pin = GPIO_PIN(PORT_D, 9),
|
|
|
|
.tx_pin = GPIO_PIN(PORT_D, 8),
|
|
|
|
.rx_af = GPIO_AF7,
|
|
|
|
.tx_af = GPIO_AF7,
|
2016-03-16 12:16:32 +01:00
|
|
|
.bus = APB1,
|
|
|
|
.irqn = USART3_IRQn,
|
2016-12-07 17:03:52 +01:00
|
|
|
#ifdef UART_USE_DMA
|
2016-03-16 12:16:32 +01:00
|
|
|
.dma_stream = 3,
|
|
|
|
.dma_chan = 4
|
2016-12-07 17:03:52 +01:00
|
|
|
#endif
|
2015-10-28 11:57:04 +01:00
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
/* assign ISR vector names */
|
2016-12-07 17:03:52 +01:00
|
|
|
#define UART_0_ISR (isr_usart2)
|
|
|
|
#define UART_0_DMA_ISR (isr_dma1_stream6)
|
|
|
|
#define UART_1_ISR (isr_usart1)
|
|
|
|
#define UART_1_DMA_ISR (isr_dma2_stream7)
|
|
|
|
#define UART_2_ISR (isr_usart3)
|
|
|
|
#define UART_2_DMA_ISR (isr_dma1_stream3)
|
2015-10-28 11:57:04 +01:00
|
|
|
|
|
|
|
/* deduct number of defined UART interfaces */
|
|
|
|
#define UART_NUMOF (sizeof(uart_config) / sizeof(uart_config[0]))
|
2014-07-28 22:41:55 +02:00
|
|
|
/** @} */
|
|
|
|
|
2014-09-23 01:33:45 +02:00
|
|
|
/**
|
2017-04-10 19:04:32 +02:00
|
|
|
* @name SPI configuration
|
2014-09-23 01:33:45 +02:00
|
|
|
* @{
|
|
|
|
*/
|
2016-11-08 18:28:32 +01:00
|
|
|
static const spi_conf_t spi_config[] = {
|
|
|
|
{
|
|
|
|
.dev = SPI1,
|
|
|
|
.mosi_pin = GPIO_PIN(PORT_A, 7),
|
|
|
|
.miso_pin = GPIO_PIN(PORT_A, 6),
|
|
|
|
.sclk_pin = GPIO_PIN(PORT_A, 5),
|
|
|
|
.cs_pin = GPIO_PIN(PORT_A, 4),
|
|
|
|
.af = GPIO_AF5,
|
|
|
|
.rccmask = RCC_APB2ENR_SPI1EN,
|
|
|
|
.apbbus = APB2
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
#define SPI_NUMOF (sizeof(spi_config) / sizeof(spi_config[0]))
|
2014-09-23 01:33:45 +02:00
|
|
|
/** @} */
|
2014-07-28 22:41:55 +02:00
|
|
|
|
2015-01-28 09:17:18 +01:00
|
|
|
/**
|
2017-04-10 19:04:32 +02:00
|
|
|
* @name I2C configuration
|
2015-01-28 09:17:18 +01:00
|
|
|
* @{
|
|
|
|
*/
|
2018-05-31 15:57:31 +02:00
|
|
|
static const i2c_conf_t i2c_config[] = {
|
|
|
|
{
|
|
|
|
.dev = I2C1,
|
|
|
|
.speed = I2C_SPEED_NORMAL,
|
|
|
|
.scl_pin = GPIO_PIN(PORT_B, 6),
|
|
|
|
.sda_pin = GPIO_PIN(PORT_B, 7),
|
|
|
|
.scl_af = GPIO_AF4,
|
|
|
|
.sda_af = GPIO_AF4,
|
|
|
|
.bus = APB1,
|
|
|
|
.rcc_mask = RCC_APB1ENR_I2C1EN,
|
|
|
|
.clk = CLOCK_APB1,
|
|
|
|
.irqn = I2C1_EV_IRQn
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
#define I2C_0_ISR isr_i2c1_ev
|
|
|
|
|
|
|
|
#define I2C_NUMOF (sizeof(i2c_config) / sizeof(i2c_config[0]))
|
|
|
|
/** @} */
|
2015-01-28 09:17:18 +01:00
|
|
|
|
2014-10-13 15:25:50 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2017-01-18 13:00:05 +01:00
|
|
|
#endif /* PERIPH_CONF_H */
|
2014-07-28 22:41:55 +02:00
|
|
|
/** @} */
|