SPI too slow
Hi,
I am using SPI on STM32H74II MCU
First I am using a software NSS and not a Hardware NSS because it doesn't work.
I need to transmit 1 byte and receive 1 byte, the two commands one after another see the simple code below :
RFID_SS_ENABLE;
status = HAL_SPI_Transmit(&hspi3, buffer, 1, 1);
status = HAL_SPI_Receive(&hspi3, buffer, 1, 1);
RFID_SS_DISABLE;I am monitoring the SPI lines by a scope and I monitor 900 us between the NSS enable and the MISO data.
I need all this to run and end in sub 30 us.
what I can do to run this simple code in the required timing ?
Best regards
Jawad Khaleel
