Peripheral MCU configuration for the nucleo-u575zi-q board.
More...
#include "cfg_timer_tim5.h"
#include "cfg_usb_otg_fs_u5.h"
#include "clk_conf.h"
#include "periph_cpu.h"
Go to the source code of this file.
|
To find appriopate device and channel find in the MCU datasheet table concerning "Alternate function AF0 to AF7" a text similar to TIM[X]_CH[Y], where: TIM[X] - is device, [Y] - describes used channel (indexed from 0), for example TIM2_CH1 is channel 0 in configuration structure (cc_chan - field), Port column in the table describes connected port.
For Nucleo-U575ZI-Q this information is in the datasheet, Table 27, page 127.
|
#define | PWM_NUMOF ARRAY_SIZE(pwm_config) |
|
static const pwm_conf_t | pwm_config [] |
|
◆ CONFIG_BOARD_HAS_LSE
#define CONFIG_BOARD_HAS_LSE 1 |
◆ I2C_0_ISR
#define I2C_0_ISR isr_i2c1_er |
◆ I2C_1_ISR
#define I2C_1_ISR isr_i2c2_er |
◆ I2C_NUMOF
◆ PWM_NUMOF
◆ SPI_NUMOF
◆ UART_0_ISR
#define UART_0_ISR (isr_usart1) |
◆ UART_1_ISR
◆ UART_NUMOF
◆ i2c_config
Initial value:= {
{
.dev = I2C1,
.rcc_mask = RCC_APB1ENR1_I2C1EN,
.rcc_sw_mask = RCC_CCIPR1_I2C1SEL_1,
.irqn = I2C1_ER_IRQn,
},
{
.dev = I2C2,
.rcc_mask = RCC_APB1ENR1_I2C2EN,
.rcc_sw_mask = RCC_CCIPR1_I2C2SEL_1,
.irqn = I2C2_ER_IRQn,
},
}
#define GPIO_PIN(x, y)
Define a CPU specific GPIO pin generator macro.
@ I2C_SPEED_NORMAL
normal mode: ~100 kbit/s
@ GPIO_AF4
use alternate function 4
@ APB1
Advanced Peripheral Bus 1
Definition at line 100 of file periph_conf.h.
◆ pwm_config
Initial value:= {
{ .dev = TIM2,
.rcc_mask = RCC_APB1ENR1_TIM2EN,
{ .dev = TIM3,
.rcc_mask = RCC_APB1ENR1_TIM3EN,
{ .dev = TIM4,
.rcc_mask = RCC_APB1ENR1_TIM4EN,
}
@ GPIO_AF1
use alternate function 1
@ GPIO_AF2
use alternate function 2
Definition at line 147 of file periph_conf.h.
◆ spi_config
Initial value:= {
{
.dev = SPI1,
.rccmask = RCC_APB2ENR_SPI1EN,
},
}
#define GPIO_UNDEF
Definition of a fitting UNDEF value.
@ GPIO_AF5
use alternate function 5
@ APB2
Advanced Peripheral Bus 2
Definition at line 77 of file periph_conf.h.
◆ uart_config
Initial value:= {
{
.dev = USART1,
.rcc_mask = RCC_APB2ENR_USART1EN,
.irqn = USART1_IRQn,
.clk_src = 0,
},
{
.dev = LPUART1,
.rcc_mask = RCC_APB3ENR_LPUART1EN,
.bus = APB3,
.irqn = LPUART1_IRQn,
.clk_src = 0,
},
}
@ GPIO_AF8
use alternate function 8
@ GPIO_AF7
use alternate function 7
@ STM32_LPUART
STM32 Low-power UART (LPUART) module type.
@ STM32_USART
STM32 USART module type.
Definition at line 40 of file periph_conf.h.