Peripheral MCU configuration for the STM32F0discovery board.
More...
Peripheral MCU configuration for the STM32F0discovery board.
- Author
- Hauke Petersen hauke.nosp@m..pet.nosp@m.ersen.nosp@m.@fu-.nosp@m.berli.nosp@m.n.de
Definition in file periph_conf.h.
#include "periph_cpu.h"
#include "f0/cfg_clock_default.h"
Go to the source code of this file.
#define | CONFIG_BOARD_HAS_HSE 1 |
|
|
#define | TIMER_0_ISR isr_tim2 |
|
#define | TIMER_NUMOF ARRAY_SIZE(timer_config) |
|
static const timer_conf_t | timer_config [] |
|
|
We need to configure the following values: [ pin, channel ]
|
#define | ADC_NUMOF ARRAY_SIZE(adc_config) |
|
static const adc_conf_t | adc_config [] |
|
◆ adc_config
◆ spi_config
Initial value:= {
{
.dev = SPI1,
.rccmask = RCC_APB2ENR_SPI1EN,
},
{
.dev = SPI2,
.rccmask = RCC_APB1ENR_SPI2EN,
}
}
Definition at line 109 of file periph_conf.h.
◆ timer_config
Initial value:= {
{
.dev = TIM2,
.max = 0xffffffff,
.rcc_mask = RCC_APB1ENR_TIM2EN,
.irqn = TIM2_IRQn
}
}
Definition at line 38 of file periph_conf.h.
◆ uart_config
Initial value:= {
{
.dev = USART1,
.rcc_mask = RCC_APB2ENR_USART1EN,
.irqn = USART1_IRQn,
},
{
.dev = USART2,
.rcc_mask = RCC_APB1ENR_USART2EN,
.irqn = USART2_IRQn
}
}
Definition at line 57 of file periph_conf.h.