6 years, 2 months ago.

how can i use 2 spi in one code for stm32F767ZI ?

Hi i would like to read data from AD9833 and save it in cardSD for nucleo 144 board STM32F767ZI, so that's why i need to 2 spi in the same programme , could you please help me in that ?

for more favore can i reach to 4 spi if yes , can u say how ? i will appreciate that !! thank you in advance.

Question relating to:

STM32 Nucleo-144 development board with STM32F767ZIT6 MCU, supports Arduino, ST Zio and morpho connectivity

1 Answer

5 years, 11 months ago.

Hi Matine ,

you can use 2 or more spis' or i2cs' by using spi class, or i2c class respectively and see PeripheralPins.c PinNames.h for details.

Also, see the pinout of NucleoF767ZI.

PeripheralPins.c PinNames.h

eg.

SPI m_spi(SPI_MOSI, SPI_MISO, SPI_SCK);

SPI spi4(PE_14,PE_13,PE_12,PE_11); which includes slave select also