Question
STM32F427 - No SPI4 Communication
Currently, I am seeing no signals on the SCLK and MISO/MOSI lines on the SPI4 lines from a STM32F427 chip to a SPI flash during an attempted read/write. At the moment, I've done the following:
- Enable GPIO clock (HB1) and SPI clock (PB2)
- Configure CS:
- pin = PE2
- speed = 100MHz
- mode = output
- output type = push pull
- pull up pull down = no pull
- Configure SCLK, MISO, MOSI:
- pins = 2, 5, 6
- speed = 100MHz
- mode = alternate function
- output type = push pull
- pull up pull down = no pull
- configure all three pins for alternate function (SPI4 maps to AF5)
I've also confirmed that it's not a hardware issue by configuring the four pins as GPIO output rather than for SPI and am seeing signals when I pull the pins high and low.
