Performance of memcpy (+memset)

When testing memcpy, it seems to handle about 4 MB/sec, running on the 60 MHz app-core.

This seems to be way too slow. Creating our own version of memcpy() that just does a simple

byte-for-byte copy, this also has the same performance, so my guess is that the default implemention

is similar. What kind of performance could be expected? 32 MB/sec? The RAM we use is the first

RAM bank (so fastest for app-core)

Related