2016-08-29 10:56:13 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2016 Freie Universität Berlin
|
|
|
|
* 2016 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2019-07-07 13:05:43 +02:00
|
|
|
* @ingroup boards_nucleo-f070rb
|
2016-08-29 10:56:13 +02:00
|
|
|
* @{
|
|
|
|
*
|
|
|
|
* @file
|
2018-02-27 14:27:29 +01:00
|
|
|
* @brief Peripheral MCU configuration for the nucleo-f070rb board
|
2016-08-29 10:56:13 +02:00
|
|
|
*
|
|
|
|
* @author Hauke Petersen <hauke.petersen@fu-berlin.de>
|
2017-03-02 13:48:51 +01:00
|
|
|
* @author Alexandre Abadie <alexandre.abadie@inria.fr>
|
2016-08-29 10:56:13 +02:00
|
|
|
*/
|
|
|
|
|
2017-01-18 13:00:05 +01:00
|
|
|
#ifndef PERIPH_CONF_H
|
|
|
|
#define PERIPH_CONF_H
|
2016-08-29 10:56:13 +02:00
|
|
|
|
2020-08-30 16:50:03 +02:00
|
|
|
/* HSE available on this board */
|
|
|
|
#ifndef CONFIG_BOARD_HAS_HSE
|
|
|
|
#define CONFIG_BOARD_HAS_HSE 1
|
|
|
|
#endif
|
|
|
|
|
2020-08-30 13:12:40 +02:00
|
|
|
/* This board provides an LSE */
|
2020-08-30 16:50:03 +02:00
|
|
|
#ifndef CONFIG_BOARD_HAS_LSE
|
|
|
|
#define CONFIG_BOARD_HAS_LSE 1
|
|
|
|
#endif
|
2020-08-30 13:12:40 +02:00
|
|
|
|
2016-12-07 12:56:24 +01:00
|
|
|
#include "periph_cpu.h"
|
2020-12-16 14:43:18 +01:00
|
|
|
#include "clk_conf.h"
|
2019-01-02 14:20:35 +01:00
|
|
|
#include "cfg_i2c1_pb8_pb9.h"
|
2016-12-07 12:56:24 +01:00
|
|
|
|
2016-08-29 10:56:13 +02:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/**
|
2017-01-26 18:14:32 +01:00
|
|
|
* @name Timer configuration
|
2016-08-29 10:56:13 +02:00
|
|
|
* @{
|
|
|
|
*/
|
2016-12-07 12:56:24 +01:00
|
|
|
static const timer_conf_t timer_config[] = {
|
|
|
|
{
|
2017-01-27 10:29:34 +01:00
|
|
|
.dev = TIM1,
|
2017-01-15 19:17:15 +01:00
|
|
|
.max = 0x0000ffff,
|
2017-01-27 10:29:34 +01:00
|
|
|
.rcc_mask = RCC_APB2ENR_TIM1EN,
|
2017-01-15 19:17:15 +01:00
|
|
|
.bus = APB2,
|
2017-01-27 10:29:34 +01:00
|
|
|
.irqn = TIM1_CC_IRQn
|
2016-12-07 12:56:24 +01:00
|
|
|
}
|
|
|
|
};
|
2016-08-29 10:56:13 +02:00
|
|
|
|
2017-01-27 10:29:34 +01:00
|
|
|
#define TIMER_0_ISR isr_tim1_cc
|
2017-01-15 19:17:15 +01:00
|
|
|
|
2019-07-18 15:14:29 +02:00
|
|
|
#define TIMER_NUMOF ARRAY_SIZE(timer_config)
|
2016-08-29 10:56:13 +02:00
|
|
|
/** @} */
|
|
|
|
|
|
|
|
/**
|
2017-01-26 18:14:32 +01:00
|
|
|
* @name UART configuration
|
2016-12-07 17:03:52 +01:00
|
|
|
* @{
|
2016-08-29 10:56:13 +02:00
|
|
|
*/
|
2016-12-07 17:03:52 +01:00
|
|
|
static const uart_conf_t uart_config[] = {
|
|
|
|
{
|
|
|
|
.dev = USART2,
|
|
|
|
.rcc_mask = RCC_APB1ENR_USART2EN,
|
|
|
|
.rx_pin = GPIO_PIN(PORT_A, 3),
|
|
|
|
.tx_pin = GPIO_PIN(PORT_A, 2),
|
|
|
|
.rx_af = GPIO_AF1,
|
|
|
|
.tx_af = GPIO_AF1,
|
|
|
|
.bus = APB1,
|
|
|
|
.irqn = USART2_IRQn
|
|
|
|
},
|
2017-01-15 19:17:15 +01:00
|
|
|
{
|
|
|
|
.dev = USART1,
|
|
|
|
.rcc_mask = RCC_APB2ENR_USART1EN,
|
|
|
|
.rx_pin = GPIO_PIN(PORT_A, 10),
|
|
|
|
.tx_pin = GPIO_PIN(PORT_A, 9),
|
|
|
|
.rx_af = GPIO_AF1,
|
|
|
|
.tx_af = GPIO_AF1,
|
|
|
|
.bus = APB2,
|
|
|
|
.irqn = USART1_IRQn
|
|
|
|
},
|
2016-12-07 17:03:52 +01:00
|
|
|
{
|
|
|
|
.dev = USART3,
|
|
|
|
.rcc_mask = RCC_APB1ENR_USART3EN,
|
|
|
|
.rx_pin = GPIO_PIN(PORT_C, 11),
|
|
|
|
.tx_pin = GPIO_PIN(PORT_C, 10),
|
|
|
|
.rx_af = GPIO_AF1,
|
|
|
|
.tx_af = GPIO_AF1,
|
|
|
|
.bus = APB1,
|
|
|
|
.irqn = USART3_4_IRQn
|
|
|
|
}
|
|
|
|
};
|
2016-08-29 10:56:13 +02:00
|
|
|
|
2016-12-07 17:03:52 +01:00
|
|
|
#define UART_0_ISR (isr_usart2)
|
2017-01-15 19:17:15 +01:00
|
|
|
#define UART_1_ISR (isr_usart1)
|
|
|
|
#define UART_2_ISR (isr_usart3_8)
|
2016-12-07 17:03:52 +01:00
|
|
|
|
2019-07-18 15:14:29 +02:00
|
|
|
#define UART_NUMOF ARRAY_SIZE(uart_config)
|
2016-12-07 17:03:52 +01:00
|
|
|
/** @} */
|
2016-08-29 10:56:13 +02:00
|
|
|
|
2017-01-15 19:17:15 +01:00
|
|
|
/**
|
2017-02-16 17:59:21 +01:00
|
|
|
* @name PWM configuration
|
2017-01-15 19:17:15 +01:00
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
static const pwm_conf_t pwm_config[] = {
|
|
|
|
{
|
|
|
|
.dev = TIM3,
|
|
|
|
.rcc_mask = RCC_APB1ENR_TIM3EN,
|
2017-01-18 12:39:05 +01:00
|
|
|
.chan = { { .pin = GPIO_PIN(PORT_B, 4) /* D5 */, .cc_chan = 0 },
|
|
|
|
{ .pin = GPIO_PIN(PORT_B, 5) /* D4 */, .cc_chan = 1 },
|
|
|
|
{ .pin = GPIO_UNDEF, .cc_chan = 0 },
|
|
|
|
{ .pin = GPIO_UNDEF, .cc_chan = 0 } },
|
2017-01-15 19:17:15 +01:00
|
|
|
.af = GPIO_AF1,
|
|
|
|
.bus = APB1
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.dev = TIM15,
|
|
|
|
.rcc_mask = RCC_APB2ENR_TIM15EN,
|
2017-01-18 12:39:05 +01:00
|
|
|
.chan = { { .pin = GPIO_PIN(PORT_B, 14), .cc_chan = 0 },
|
|
|
|
{ .pin = GPIO_PIN(PORT_B, 15), .cc_chan = 1 },
|
|
|
|
{ .pin = GPIO_UNDEF, .cc_chan = 0 },
|
|
|
|
{ .pin = GPIO_UNDEF, .cc_chan = 0 } },
|
2017-01-15 19:17:15 +01:00
|
|
|
.af = GPIO_AF1,
|
|
|
|
.bus = APB2
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-07-18 15:14:29 +02:00
|
|
|
#define PWM_NUMOF ARRAY_SIZE(pwm_config)
|
2017-01-15 19:17:15 +01:00
|
|
|
/** @} */
|
|
|
|
|
2016-08-29 10:56:13 +02:00
|
|
|
/**
|
2017-01-26 18:14:32 +01:00
|
|
|
* @name ADC configuration
|
2016-08-29 10:56:13 +02:00
|
|
|
* @{
|
|
|
|
*/
|
2020-08-25 12:15:27 +02:00
|
|
|
static const adc_conf_t adc_config[] = {
|
|
|
|
{ GPIO_PIN(PORT_A, 0), 0 },
|
|
|
|
{ GPIO_PIN(PORT_A, 1), 1 },
|
|
|
|
{ GPIO_PIN(PORT_A, 4), 4 },
|
|
|
|
{ GPIO_PIN(PORT_B, 0), 8 },
|
|
|
|
{ GPIO_PIN(PORT_C, 1), 11 },
|
|
|
|
{ GPIO_PIN(PORT_C, 0), 10 }
|
|
|
|
};
|
2016-08-29 10:56:13 +02:00
|
|
|
|
2020-08-25 12:15:27 +02:00
|
|
|
#define ADC_NUMOF ARRAY_SIZE(adc_config)
|
2016-08-29 10:56:13 +02:00
|
|
|
/** @} */
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2017-01-18 13:00:05 +01:00
|
|
|
#endif /* PERIPH_CONF_H */
|
2016-08-29 10:56:13 +02:00
|
|
|
/** @} */
|