What is the fastest interface between an STM32 and an FPGA?
I am designing a system with an STM32 and an FPGA(Xilinx 7 series).
STM32 is in charge of the user interface and the FPGA is in charge of driving the LCD to show images.
Information needs to be exchanged between the STM32 and the FPGA. (STM32 send a command to the FPGA to choose which image to display or to stop displaying. STM32 also need to write all logs to the SD card through the FPGA. FPGA needs to report to the STM32 how many images are displayed and how many remain.)
After some research, I found SPI seems to be fast and easy to implement.(I am not sure which interface is commonly used for communication between STM32 and FPGA?). I wonder if there is another interface that is faster or easier to implement?
