hi everyone ,
i work in application application esp32 framework esp idf V4.1 and module WROVER-B, i use LVGL library in my code
https://github.com/lvgl/lv_port_esp32
its use a lot of STATIC DRAM and ISRAM ( 2 buffer 40Kbytes for each ) so iam a 90% of my DRAM
using external PSRAM we have 3 option :
1-Integrate RAM into the ESP32 memory map
2-Add external RAM to the capability allocator
3-Provide external RAM via malloc() (default)
for the first one is good but i need do all management of the external SPI RAM: coordinating buffer usage, preventing corruption, etc.
so iam using 3rd option i add 4mo ram in malloc that work good but i dont know if can use it at same time to store static buffer like 80Kbyte and it will free some internal ram .... and what is fonction used for static variable
best regard ,
PSRAM ESP32 (esp idf)
Re: PSRAM ESP32 (esp idf)
Hi mohasrj,
To place static data into PSRAM, you can enable CONFIG_SPIRAM_ALLOW_BSS_SEG_EXTERNAL_MEMORY option in menuconfig, and then declare your variable with EXT_RAM_ATTR attribute.
To place static data into PSRAM, you can enable CONFIG_SPIRAM_ALLOW_BSS_SEG_EXTERNAL_MEMORY option in menuconfig, and then declare your variable with EXT_RAM_ATTR attribute.
Re: PSRAM ESP32 (esp idf)
hi @ESP_igrr,
Yes, that work well thanks now iam at :
Used static DRAM: 62664 bytes ( 118072 available, 34.7% used)
Used static IRAM: 122746 bytes ( 8326 available, 93.6% used)
so there is another methode de reduces IRAM ?
best regard !
Yes, that work well thanks now iam at :
Used static DRAM: 62664 bytes ( 118072 available, 34.7% used)
Used static IRAM: 122746 bytes ( 8326 available, 93.6% used)
so there is another methode de reduces IRAM ?
best regard !
Re: PSRAM ESP32 (esp idf)
Could you post your sdkconfig file, please?
Re: PSRAM ESP32 (esp idf)
hi @ESP_igrr
yes of course i add it in attachments text file,
yes of course i add it in attachments text file,
- Attachments
-
- sdkconfig.txt
- (56.57 KiB) Downloaded 574 times
Who is online
Users browsing this forum: Usama Masood and 108 guests