2021-05-21 11:56 PM
Is it possible to communicate between MCUs with quad-spi? Has anyone succeeded?
Or could you tell me about high-speed communication?
2021-05-22 06:38 AM
Not really designed for inbound, might be able to fab something with FPGA/CPLD
Could use external FIFO or Dual Ported RAM.
Both could share the same measurements and work them independently.
How much data really needs to move? High speed serial works for command/control.
Consider refactoring on dual or quad core with common memories.
2021-05-22 04:02 PM
Thank you for your prompt response.
I want to send 6 bytes (3 sets of 2 bytes) of data every 2 seconds.
And I want to output from 3ch of the 12-bit DAC of the received MCU.
2021-05-23 11:00 PM
the data rate is really low to send 6 bytes (3 sets of 2 bytes) of data every 2 seconds.
QSPI (quad-spi) can work in 1-bit mode too, which is similar to SPI, and 1-bit mode should be easier to use.
2021-05-26 02:39 AM
Thank you for your advice. I proceed with standard SPI. Is the maximum frequency of SCK possible up to 75MHz of Datasheet(STM32G473CB) when the wiring length is the shortest?
2021-05-26 07:12 PM
standard SPI in Master mode can work up to 75MHz CLK, but standard SPI in Slave mode is 50MHz MAX. As data rate is really low for your application, 10~20MHz CLK seems fast enough.
2021-05-28 12:11 AM
I was disappointed. Isn't there the fastest communication method?
2021-05-28 01:35 AM
In reality, I suppose you can make standard SPI work at 50MHz on both sides of MCUs.
2021-05-28 09:43 PM
Thank you.