Search found 1 match
- Sat Aug 05, 2023 8:11 pm
- Forum: ESP-IDF
- Topic: Invalidate cache
- Replies: 1
- Views: 2054
Invalidate cache
I am trying to understand a way to invalidate the cache whenever i want to read some data from PSRAM. for example. byte *memory = (byte *)ps_malloc(1024*64); loop: memcpy(memory, memory, 1024); goto loop: The first access takes around ~600us and consequent memcpy takes only 80us. I think the value i...