Question
Issue with External addressable flash
Hello folks,
I am using a STM32F469i-disco board and trying to read the stored variable from the on-board flash. I did use BSP package to init the QSPI and set it to memory mapped mode. Now, I am facing a weird situation.
printf("%x\n", (EXTERNAL[0])); -> print the expected value (0xb3)
int i = 0;
printf("%x\n", (EXTERNAL[i])); -> print some "random" number (0x99)
Is there anything here that I am missing?
Thanks
