2020-06-17 09:26 AM
Hi all
I have a custom Board with STM32H743 and i would like to add external SRAM and NOR Flash at the QSPI Interface. For example the SRAM at the Bank1 and the Flash at Bank2.
Is this possible?
I' would like to use for SRAM:
https://www.mouser.ch/ProductDetail/ISSI/IS62WVS5128GBLL-45NLI?qs=byeeYqUIh0M7EH7gI3DsmQ%3D%3D
and for Flash:
https://www.mouser.ch/ProductDetail/ISSI/IS25LP032D-JNLE?qs=DXv0QSHKF4z8ea2r8jlMmA%3D%3D
Thanks
#SRAM #[STM32 MCUs] #QSPI #STM32H7
2020-06-18 02:19 AM
Yes, but ...
2020-06-23 02:17 AM
And if i use only SRAM
Is it possible to get the Access to QSPI SRAM like this?
Scatter File:
...
RW_RAM2 0x90000000 0x00080000 {
*.o (ExRAM)
}
...
I would like to access the section ExRAM like this:
...
uint16_t Array[1024] __attribute__((section("ExRAM")));
...
Thanks
2020-06-23 02:23 AM
As I have said, memory mapped mode is read-only, you can't directly write values into the array, but you can read them like that as long as you set up memory-mapped mode again after each write access.