Important changes to forums and questions
All forums and questions are now archived. To start a new conversation or read the latest updates go to forums.mbed.com.
6 years, 9 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:
1 Answer
6 years, 6 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