STM32H7XX additional RAM #11582
-
|
Hi, I'm planning to develop a custom STM32H74X board but I want to extend the 1024kB of RAM. Anyone experience with this to use with micropython? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
|
aps6404 chip comes up on h723 nucleo board. haven't tried hw spi or actually using memory for anything... |
Beta Was this translation helpful? Give feedback.
-
You just want the SDRAM config from mpconfigport.h. For a simpler example look at |
Beta Was this translation helpful? Give feedback.
You just want the SDRAM config from mpconfigport.h. For a simpler example look at
STM32F429DISC/mpconfigport.h. The point is that you define all theMICROPY_HW_SDRAM_*macros to configure it, and then overrideHEAP_STARTandHEAP_ENDso that the SDRAM gets used for the heap. Everything else happens automaticaly (main.c will call sdram_init() and sdram.c implements the driver).