periph_conf.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2020 Inria
3  *
4  * This file is subject to the terms and conditions of the GNU Lesser
5  * General Public License v2.1. See the file LICENSE in the top level
6  * directory for more details.
7  */
8 
19 #ifndef PERIPH_CONF_H
20 #define PERIPH_CONF_H
21 
22 /* Add specific clock configuration (HSE, LSE) for this board here */
23 #ifndef CONFIG_BOARD_HAS_LSE
24 #define CONFIG_BOARD_HAS_LSE 1
25 #endif
26 
27 #include "clk_conf.h"
28 #include "cfg_i2c1_pb8_pb9.h"
29 #include "cfg_rtt_default.h"
30 
31 #ifdef __cplusplus
32 extern "C" {
33 #endif
34 
39 static const timer_conf_t timer_config[] = {
40  {
41  .dev = TIM3,
42  .max = 0x0000ffff,
43  .rcc_mask = RCC_APBENR1_TIM3EN,
44  .bus = APB1,
45  .irqn = TIM3_IRQn
46  }
47 };
48 
49 #define TIMER_0_ISR isr_tim3
50 
51 #define TIMER_NUMOF ARRAY_SIZE(timer_config)
58 static const uart_conf_t uart_config[] = {
59  {
60  .dev = USART2,
61  .rcc_mask = RCC_APBENR1_USART2EN,
62  .rx_pin = GPIO_PIN(PORT_A, 3),
63  .tx_pin = GPIO_PIN(PORT_A, 2),
64  .rx_af = GPIO_AF1,
65  .tx_af = GPIO_AF1,
66  .bus = APB1,
67  .irqn = USART2_IRQn,
68  },
69  { /* Arduino pinout on D0/D1 */
70  .dev = USART1,
71  .rcc_mask = RCC_APBENR2_USART1EN,
72  .rx_pin = GPIO_PIN(PORT_C, 5),
73  .tx_pin = GPIO_PIN(PORT_C, 4),
74  .rx_af = GPIO_AF1,
75  .tx_af = GPIO_AF1,
76  .bus = APB12,
77  .irqn = USART1_IRQn,
78  },
79 };
80 
81 #define UART_0_ISR (isr_usart2)
82 #define UART_1_ISR (isr_usart1)
83 
84 #define UART_NUMOF ARRAY_SIZE(uart_config)
115 static const adc_conf_t adc_config[] = {
116  { .pin = GPIO_PIN(PORT_A, 0), .dev = 0, .chan = 0 }, /* ARD_A0_IN0 */
117  { .pin = GPIO_PIN(PORT_A, 1), .dev = 0, .chan = 1 }, /* ARD_A1_IN1 */
118  { .pin = GPIO_PIN(PORT_A, 4), .dev = 0, .chan = 4 }, /* ARD_A2_IN4 */
119  { .pin = GPIO_PIN(PORT_B, 1), .dev = 0, .chan = 9 }, /* ARD_A3_IN9 */
120  { .pin = GPIO_PIN(PORT_B, 11), .dev = 0, .chan = 15 }, /* ARD_A4_IN15 */
121  { .pin = GPIO_PIN(PORT_B, 12), .dev = 0, .chan = 16 }, /* ARD_A5_IN16 */
122  { .pin = GPIO_UNDEF, .dev = 0, .chan = 14}, /* VBAT */
123 };
124 
125 #define VBAT_ADC ADC_LINE(6)
126 #define ADC_NUMOF ARRAY_SIZE(adc_config)
133 static const spi_conf_t spi_config[] = {
134  {
135  .dev = SPI1,
136  .mosi_pin = GPIO_PIN(PORT_A, 7), /* Arduino D11 */
137  .miso_pin = GPIO_PIN(PORT_A, 6), /* Arduino D12 */
138  .sclk_pin = GPIO_PIN(PORT_A, 5), /* Arduino D13 */
139  .cs_pin = GPIO_UNDEF,
140  .mosi_af = GPIO_AF0,
141  .miso_af = GPIO_AF0,
142  .sclk_af = GPIO_AF0,
143  .cs_af = GPIO_AF0,
144  .rccmask = RCC_APBENR2_SPI1EN,
145  .apbbus = APB12,
146  },
147 };
148 
149 #define SPI_NUMOF ARRAY_SIZE(spi_config)
152 #ifdef __cplusplus
153 }
154 #endif
155 
156 #endif /* PERIPH_CONF_H */
@ PORT_B
port B
Definition: periph_cpu.h:48
@ PORT_C
port C
Definition: periph_cpu.h:49
@ PORT_A
port A
Definition: periph_cpu.h:47
#define GPIO_PIN(x, y)
Define a CPU specific GPIO pin generator macro.
Definition: periph_cpu.h:46
#define GPIO_UNDEF
Definition of a fitting UNDEF value.
static const uart_conf_t uart_config[]
UART configuration.
Definition: periph_conf.h:39
static const spi_conf_t spi_config[]
SPI configuration.
Definition: periph_conf.h:97
static const timer_conf_t timer_config[]
All timers on board.
Definition: periph_conf.h:40
static const adc_conf_t adc_config[]
ADC configuration.
Definition: periph_conf.h:251
Common configuration for STM32 I2C.
@ GPIO_AF1
use alternate function 1
Definition: cpu_gpio.h:103
@ GPIO_AF0
use alternate function 0
Definition: cpu_gpio.h:102
@ APB1
Advanced Peripheral Bus 1
Definition: periph_cpu.h:79
ADC device configuration.
Definition: periph_cpu.h:379
gpio_t pin
pin connected to the channel
Definition: periph_cpu.h:288
SPI device configuration.
Definition: periph_cpu.h:337
SPI_t * dev
pointer to the used SPI device
Definition: periph_cpu.h:338
Timer device configuration.
Definition: periph_cpu.h:264
TC0_t * dev
Pointer to the used as Timer device.
Definition: periph_cpu.h:265
UART device configuration.
Definition: periph_cpu.h:218
USART_t * dev
pointer to the used UART device
Definition: periph_cpu.h:219