Loading...
Searching...
No Matches
periph_conf.h
Go to the documentation of this file.
1/*
2 * Copyright (C) 2017 Freie Universität Berlin
3 * 2017 Inria
4 *
5 * This file is subject to the terms and conditions of the GNU Lesser
6 * General Public License v2.1. See the file LICENSE in the top level
7 * directory for more details.
8 */
9
21#ifndef PERIPH_CONF_H
22#define PERIPH_CONF_H
23
24/* Add specific clock configuration (HSE, LSE) for this board here */
25#ifndef CONFIG_BOARD_HAS_LSE
26#define CONFIG_BOARD_HAS_LSE 1
27#endif
28
29#include "periph_cpu.h"
30#include "clk_conf.h"
31#include "cfg_rtt_default.h"
32#include "cfg_timer_tim2.h"
33
34#ifdef __cplusplus
35extern "C" {
36#endif
37
42static const uart_conf_t uart_config[] = {
43 {
44 .dev = USART2,
45 .rcc_mask = RCC_APB1ENR_USART2EN,
46 .rx_pin = GPIO_PIN(PORT_A, 3),
47 .tx_pin = GPIO_PIN(PORT_A, 2),
48 .rx_af = GPIO_AF4,
49 .tx_af = GPIO_AF4,
50 .bus = APB1,
51 .irqn = USART2_IRQn,
52 .type = STM32_USART,
53 .clk_src = 0, /* Use APB clock */
54 },
55 {
56 .dev = USART1,
57 .rcc_mask = RCC_APB2ENR_USART1EN,
58 .rx_pin = GPIO_PIN(PORT_A, 10),
59 .tx_pin = GPIO_PIN(PORT_A, 9),
60 .rx_af = GPIO_AF4,
61 .tx_af = GPIO_AF4,
62 .bus = APB2,
63 .irqn = USART1_IRQn,
64 .type = STM32_USART,
65 .clk_src = 0, /* Use APB clock */
66 }
67};
68
69#define UART_0_ISR (isr_usart2)
70#define UART_1_ISR (isr_usart1)
71
72#define UART_NUMOF ARRAY_SIZE(uart_config)
79static const pwm_conf_t pwm_config[] = {
80 {
81 .dev = TIM22,
82 .rcc_mask = RCC_APB2ENR_TIM22EN,
83 .chan = { { .pin = GPIO_PIN(PORT_B, 4) /* D5 */, .cc_chan = 0 },
84 { .pin = GPIO_PIN(PORT_B, 5), .cc_chan = 1 },
85 { .pin = GPIO_UNDEF, .cc_chan = 0 },
86 { .pin = GPIO_UNDEF, .cc_chan = 0 } },
87 .af = GPIO_AF4,
88 .bus = APB2
89 }
90};
91
92#define PWM_NUMOF ARRAY_SIZE(pwm_config)
99static const spi_conf_t spi_config[] = {
100 {
101 .dev = SPI1,
102 .mosi_pin = GPIO_PIN(PORT_A, 7),
103 .miso_pin = GPIO_PIN(PORT_A, 6),
104 .sclk_pin = GPIO_PIN(PORT_A, 5),
105 .cs_pin = SPI_CS_UNDEF,
106 .mosi_af = GPIO_AF0,
107 .miso_af = GPIO_AF0,
108 .sclk_af = GPIO_AF0,
109 .cs_af = GPIO_AF0,
110 .rccmask = RCC_APB2ENR_SPI1EN,
111 .apbbus = APB2
112 }
113};
114
115#define SPI_NUMOF ARRAY_SIZE(spi_config)
118#ifdef __cplusplus
119}
120#endif
121
122#endif /* PERIPH_CONF_H */
@ PORT_B
port B
Definition periph_cpu.h:48
@ 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.
Common configuration for STM32 Timer peripheral based on TIM2.
@ GPIO_AF4
use alternate function 4
Definition cpu_gpio.h:106
@ GPIO_AF0
use alternate function 0
Definition cpu_gpio.h:102
@ STM32_USART
STM32 USART module type.
Definition cpu_uart.h:38
#define SPI_CS_UNDEF
Define value for unused CS line.
Definition periph_cpu.h:363
@ APB1
Advanced Peripheral Bus 1
Definition periph_cpu.h:79
@ APB2
Advanced Peripheral Bus 2
Definition periph_cpu.h:80
PWM device configuration.
mini_timer_t * dev
Timer used.
SPI device configuration.
Definition periph_cpu.h:337
SPI_t * dev
pointer to the used SPI device
Definition periph_cpu.h:338
UART device configuration.
Definition periph_cpu.h:218
USART_t * dev
pointer to the used UART device
Definition periph_cpu.h:219