Peripheral MCU configuration for the nucleo-l552ze-q board.
More...
Peripheral MCU configuration for the nucleo-l552ze-q board.
- Author
- Alexandre Abadie alexa.nosp@m.ndre.nosp@m..abad.nosp@m.ie@i.nosp@m.nria..nosp@m.fr
Definition in file periph_conf.h.
#include "periph_cpu.h"
#include "clk_conf.h"
#include "cfg_i2c1_pb8_pb9.h"
#include "cfg_rtt_default.h"
#include "cfg_timer_tim5.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-L552ZE-Q this information is in the datasheet, Table 22, page 122.
|
#define | PWM_NUMOF ARRAY_SIZE(pwm_config) |
|
static const pwm_conf_t | pwm_config [] |
|
◆ CONFIG_BOARD_HAS_LSE
#define CONFIG_BOARD_HAS_LSE 1 |
◆ PWM_NUMOF
◆ SPI_NUMOF
◆ UART_0_ISR
◆ UART_1_ISR
#define UART_1_ISR (isr_usart3) |
◆ UART_NUMOF
◆ pwm_config
◆ spi_config
Initial value:= {
{
.dev = SPI1,
.rccmask = RCC_APB2ENR_SPI1EN,
},
}
#define GPIO_PIN(x, y)
Define a CPU specific GPIO pin generator macro.
#define GPIO_UNDEF
Definition of a fitting UNDEF value.
@ GPIO_AF5
use alternate function 5
@ APB2
Advanced Peripheral Bus 2
Definition at line 78 of file periph_conf.h.
◆ uart_config
Initial value:= {
{
.dev = LPUART1,
.rcc_mask = RCC_APB1ENR2_LPUART1EN,
.bus = APB12,
.irqn = LPUART1_IRQn,
.clk_src = 0,
},
{
.dev = USART3,
.rcc_mask = RCC_APB1ENR1_USART3EN,
.irqn = USART3_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.
@ APB1
Advanced Peripheral Bus 1
Definition at line 41 of file periph_conf.h.