Peripheral MCU configuration for the iotlab-m3 board.
More...
#include "periph_cpu.h"
#include "clk_conf.h"
Go to the source code of this file.
◆ ADC_NUMOF
◆ CONFIG_BOARD_HAS_HSE
#define CONFIG_BOARD_HAS_HSE 1 |
◆ CONFIG_BOARD_HAS_LSE
#define CONFIG_BOARD_HAS_LSE 1 |
◆ CONFIG_CLOCK_HSE
#define CONFIG_CLOCK_HSE MHZ(16) |
◆ DMA_0_ISR
#define DMA_0_ISR isr_dma1_channel4 |
◆ DMA_1_ISR
#define DMA_1_ISR isr_dma1_channel6 |
◆ DMA_NUMOF
◆ I2C_0_ISR
#define I2C_0_ISR isr_i2c1_ev |
◆ I2C_NUMOF
◆ RTT_FREQUENCY
#define RTT_FREQUENCY (RTT_MAX_FREQUENCY) /* in Hz */ |
◆ TIMER_0_ISR
#define TIMER_0_ISR isr_tim2 |
◆ TIMER_1_ISR
#define TIMER_1_ISR isr_tim3 |
◆ TIMER_NUMOF
◆ UART_0_ISR
#define UART_0_ISR (isr_usart1) |
◆ UART_1_ISR
#define UART_1_ISR (isr_usart2) |
◆ UART_NUMOF
◆ adc_config
Initial value:= {
}
#define GPIO_PIN(x, y)
Define a CPU specific GPIO pin generator macro.
#define GPIO_UNDEF
Definition of a fitting UNDEF value.
Definition at line 48 of file periph_conf_common.h.
◆ dma_config
◆ i2c_config
Initial value:= {
{
.dev = I2C1,
.rcc_mask = RCC_APB1ENR_I2C1EN,
.clk = CLOCK_APB1,
.irqn = I2C1_EV_IRQn
}
}
@ I2C_SPEED_NORMAL
normal mode: ~100 kbit/s
@ APB1
Advanced Peripheral Bus 1
Definition at line 149 of file periph_conf_common.h.
◆ timer_config
Initial value:= {
{
.dev = TIM2,
.max = 0x0000ffff,
.rcc_mask = RCC_APB1ENR_TIM2EN,
.irqn = TIM2_IRQn
},
{
.dev = TIM3,
.max = 0x0000ffff,
.rcc_mask = RCC_APB1ENR_TIM3EN,
.irqn = TIM3_IRQn
}
}
Definition at line 76 of file periph_conf_common.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,
}
}
@ APB2
Advanced Peripheral Bus 2
Definition at line 103 of file periph_conf_common.h.