2015-03-09 11:27 AM
I configured SPI1 as a full duplex master.
I put MISO on PE14Cube configured the GPIO as a standard input.It wouldn't let me set it to Alternate function.I was able to overcome the problem with:// Set GPIOE14 as MISO
GPIOE->AFR[1] |= 0x05 << (14 - 8) * 4; GPIOE->MODER |= 0x02 << 28;2015-03-18 03:03 AM