Loading...
Searching...
No Matches
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
9#pragma once
10
20
21/* Add specific clock configuration (HSE, LSE) for this board here */
22#ifndef CONFIG_BOARD_HAS_LSE
23#define CONFIG_BOARD_HAS_LSE 1
24#endif
25
26#include "clk_conf.h"
27#include "cfg_i2c1_pb8_pb9.h"
28#include "cfg_rtt_default.h"
29
30#ifdef __cplusplus
31extern "C" {
32#endif
33
38static const timer_conf_t timer_config[] = {
39 {
40 .dev = TIM3,
41 .max = 0x0000ffff,
42 .rcc_mask = RCC_APBENR1_TIM3EN,
43 .bus = APB1,
44 .irqn = TIM3_IRQn
45 }
46};
47
48#define TIMER_0_ISR isr_tim3
49
50#define TIMER_NUMOF ARRAY_SIZE(timer_config)
52
57static const uart_conf_t uart_config[] = {
58 {
59 .dev = USART2,
60 .rcc_mask = RCC_APBENR1_USART2EN,
61 .rx_pin = GPIO_PIN(PORT_A, 3),
62 .tx_pin = GPIO_PIN(PORT_A, 2),
63 .rx_af = GPIO_AF1,
64 .tx_af = GPIO_AF1,
65 .bus = APB1,
66 .irqn = USART2_IRQn,
67 },
68 { /* Arduino pinout on D0/D1 */
69 .dev = USART1,
70 .rcc_mask = RCC_APBENR2_USART1EN,
71 .rx_pin = GPIO_PIN(PORT_C, 5),
72 .tx_pin = GPIO_PIN(PORT_C, 4),
73 .rx_af = GPIO_AF1,
74 .tx_af = GPIO_AF1,
75 .bus = APB12,
76 .irqn = USART1_IRQn,
77 },
78};
79
80#define UART_0_ISR (isr_usart2)
81#define UART_1_ISR (isr_usart1)
82
83#define UART_NUMOF ARRAY_SIZE(uart_config)
85
114static const adc_conf_t adc_config[] = {
115 { .pin = GPIO_PIN(PORT_A, 0), .dev = 0, .chan = 0 }, /* ARD_A0_IN0 */
116 { .pin = GPIO_PIN(PORT_A, 1), .dev = 0, .chan = 1 }, /* ARD_A1_IN1 */
117 { .pin = GPIO_PIN(PORT_A, 4), .dev = 0, .chan = 4 }, /* ARD_A2_IN4 */
118 { .pin = GPIO_PIN(PORT_B, 1), .dev = 0, .chan = 9 }, /* ARD_A3_IN9 */
119 { .pin = GPIO_PIN(PORT_B, 11), .dev = 0, .chan = 15 }, /* ARD_A4_IN15 */
120 { .pin = GPIO_PIN(PORT_B, 12), .dev = 0, .chan = 16 }, /* ARD_A5_IN16 */
121 { .pin = GPIO_UNDEF, .dev = 0, .chan = 14}, /* VBAT */
122};
123
124#define VBAT_ADC ADC_LINE(6)
125#define ADC_NUMOF ARRAY_SIZE(adc_config)
127
132static const spi_conf_t spi_config[] = {
133 {
134 .dev = SPI1,
135 .mosi_pin = GPIO_PIN(PORT_A, 7), /* Arduino D11 */
136 .miso_pin = GPIO_PIN(PORT_A, 6), /* Arduino D12 */
137 .sclk_pin = GPIO_PIN(PORT_A, 5), /* Arduino D13 */
138 .cs_pin = GPIO_UNDEF,
139 .mosi_af = GPIO_AF0,
140 .miso_af = GPIO_AF0,
141 .sclk_af = GPIO_AF0,
142 .cs_af = GPIO_AF0,
143 .rccmask = RCC_APBENR2_SPI1EN,
144 .apbbus = APB12,
145 },
146};
147
148#define SPI_NUMOF ARRAY_SIZE(spi_config)
150
151#ifdef __cplusplus
152}
153#endif
154
@ PORT_B
port B
Definition periph_cpu.h:47
@ PORT_C
port C
Definition periph_cpu.h:48
@ PORT_A
port A
Definition periph_cpu.h:46
#define GPIO_PIN(x, y)
Define a CPU specific GPIO pin generator macro.
Definition periph_cpu.h:45
#define GPIO_UNDEF
Definition of a fitting UNDEF value.
Common configuration for STM32 I2C.
@ GPIO_AF1
use alternate function 1
Definition cpu_gpio.h:102
@ GPIO_AF0
use alternate function 0
Definition cpu_gpio.h:101
@ APB1
Advanced Peripheral Bus 1.
Definition periph_cpu.h:78
ADC device configuration.
Definition periph_cpu.h:377
SPI device configuration.
Definition periph_cpu.h:336
Timer device configuration.
Definition periph_cpu.h:263
UART device configuration.
Definition periph_cpu.h:217