2024-05-09 12:17 PM
Hello. Is the STM32H753 able to directly interface with a slave on the SPI bus, which continuously produces data at a rate of 40 Mbps for several hours? What would be the current consumption rate for such a case?
Thank you
2024-05-09 12:36 PM
Hi,
the 40M speed is no problem, see ds :
100M max , slave or master.
> What would be the current consumption rate for such a case?
Same as if not use SPI , almost. You can check it in Cube -> Tools ...power consumption.
> which continuously produces data at a rate of 40 Mbps for several hours?
So this might be a problem : what you wanna do with these 50 GB on a cpu with 1MB RAM ??
2024-05-09 01:13 PM
@AScha.3 wrote:...
> which continuously produces data at a rate of 40 Mbps for several hours?
So this might be a problem : what you wanna do with these 50 GB on a cpu with 1MB RAM ??
Double-buffer /dev/null. (Those who know, know.) ;)
2024-05-09 01:41 PM
> So this might be a problem : what you wanna do with these 50 GB on a cpu with 1MB RAM ??
I am planning on connecting the STM32 with a wifi 6 chip (through the SDIO interface) which will transmit the data as it is received. This should be fast enough so that it handles the incoming data rate for several hours right?
2024-05-09 01:52 PM
>This should be fast enough so that it handles the incoming data rate for several hours right?
I would say : "could be" .
Try it, then you know.
2024-05-09 02:04 PM
Okay thank you