Peripheral MCU configuration for the STM32L0538-DISCO board.  
More...
Peripheral MCU configuration for the STM32L0538-DISCO 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"
Go to the source code of this file.
◆ spi_config
Initial value:= {
    {
        .dev      = SPI1,
        .rccmask  = RCC_APB2ENR_SPI1EN,
    },
    {
        .dev      = SPI2,
        .rccmask  = RCC_APB1ENR_SPI2EN,
    },
}
#define GPIO_PIN(x, y)
Define a CPU specific GPIO pin generator macro.
 
@ GPIO_AF0
use alternate function 0
 
#define SPI_CS_UNDEF
Define value for unused CS line.
 
@ APB1
Advanced Peripheral Bus 1
 
@ APB2
Advanced Peripheral Bus 2
 
 
Definition at line 72 of file periph_conf.h.
 
 
◆ timer_config
Initial value:= {
    {
        .dev      = TIM2,
        .max      = 0x0000ffff,
        .rcc_mask = RCC_APB1ENR_TIM2EN,
        .irqn     = TIM2_IRQn
    }
}
 
Definition at line 29 of file periph_conf.h.
 
 
◆ uart_config
Initial value:= {
    {
        .dev        = USART1,
        .rcc_mask   = RCC_APB2ENR_USART1EN,
        .irqn       = USART1_IRQn,
        .clk_src    = 0, 
    }
}
@ GPIO_AF4
use alternate function 4
 
@ STM32_USART
STM32 USART module type.
 
 
Definition at line 48 of file periph_conf.h.