Question
STM32H745 FMC PSRAM 16-bit always sends 64-bit
Hello,
I am trying to get the FMC to work in 16-bit synchronous mode but I only get an output with 4 clocks (64-bit) instead.
In other threads [1], [2] I found that I should either switch the address from 0x60000000 to 0xC0000000 or enable the MPU, but neither approach works for me.
This is my config:
FMC:
MPU:
Usage:
uint16_t * psram16 = (uint16_t *)0x60000000;
psram16[0] = 0x00AA;
Output:

What am I missing?
