Resolved! SPI1 setting up problem on STM32F09x
Posted on January 30, 2017 at 12:53Hi all,I'm trying to setting up the SPI interface on my STM32F091, I would use the SPI1 on the PB3&PB5 pin.This is my simple code:RCC->APB2ENR |= (1<<12); GPIOB->MODER |= 0x880;GPIOB->OSPEEDR |= 0xCC0;SPI1->CR1 = S...