18 #include "periph_cpu.h" 
   33         .rcc_mask = RCC_APB1ENR_TIM2EN,
 
   40         .rcc_mask = RCC_APB1ENR_TIM3EN,
 
   46 #define TIMER_0_ISR         isr_tim2 
   47 #define TIMER_1_ISR         isr_tim3 
   49 #define TIMER_NUMOF         ARRAY_SIZE(timer_config) 
   59         .rcc_mask = RCC_APB1ENR_USART2EN,
 
   67         .rcc_mask = RCC_APB2ENR_USART1EN,
 
   75         .rcc_mask = RCC_APB1ENR_USART3EN,
 
   83 #define UART_0_ISR          isr_usart2 
   84 #define UART_1_ISR          isr_usart1 
   85 #define UART_2_ISR          isr_usart3 
   87 #define UART_NUMOF          ARRAY_SIZE(uart_config) 
  101         .rcc_mask       = RCC_APB1ENR_I2C1EN,
 
  111         .rcc_mask       = RCC_APB1ENR_I2C2EN,
 
  117 #define I2C_0_ISR           isr_i2c1_ev 
  118 #define I2C_1_ISR           isr_i2c2_ev 
  120 #define I2C_NUMOF           ARRAY_SIZE(i2c_config) 
  134         .rccmask  = RCC_APB2ENR_SPI1EN,
 
  143         .rccmask  = RCC_APB1ENR_SPI2EN,
 
  148 #define SPI_NUMOF           ARRAY_SIZE(spi_config) 
#define GPIO_PIN(x, y)
Define a CPU specific GPIO pin generator macro.
 
static const uart_conf_t uart_config[]
UART configuration.
 
static const spi_conf_t spi_config[]
SPI configuration.
 
static const i2c_conf_t i2c_config[]
I2C configuration.
 
static const timer_conf_t timer_config[]
All timers on board.
 
#define SPI_CS_UNDEF
Define value for unused CS line.
 
@ APB1
Advanced Peripheral Bus 1
 
@ APB2
Advanced Peripheral Bus 2
 
@ I2C_SPEED_NORMAL
normal mode: ~100 kbit/s
 
#define CLOCK_APB1
Half AHB clock.
 
I2C configuration structure.
 
TWI_t * dev
Pointer to hardware module registers.
 
SPI device configuration.
 
SPI_t * dev
pointer to the used SPI device
 
Timer device configuration.
 
TC0_t * dev
Pointer to the used as Timer device.
 
UART device configuration.
 
USART_t * dev
pointer to the used UART device