PSRAM WROVER-KIT_V3

osalexandeko
Posts: 3
Joined: Thu Mar 21, 2019 11:45 am

PSRAM WROVER-KIT_V3

Postby osalexandeko » Thu Mar 21, 2019 12:04 pm

Hi all,
I have 2 questions, may be you can help me
1. when I connect TDK using jumper, PSRAM does not work, if TDK is not connected it does work, but obviously I cannot use debugger which I need, is there solution?
2.I am new to ESP32 and we want to test next design : write 2.5Mbytes to the PSRAM, using FPGA then get the data to ESP32 for transmitting over WiFi, but to this I need pins: GPI016, SDO0-3,SRAM CLK at high impedance, when FPGA writes to psram, is there way doing so at run time (enabling disabling psram on the fly)?

thanks

ESP_Sprite
Posts: 8926
Joined: Thu Nov 26, 2015 4:08 am

Re: PSRAM WROVER-KIT_V3

Postby ESP_Sprite » Thu Mar 21, 2019 12:37 pm

1. What do you mean by 'TDK'?
2. That's pretty hard... the ESP32 accesses flash and PSRAM through more-or-less the same lines, so if you need to write directly to PSRAM, you either have to stop just about all processes in the ESP32, or you need to somehow disconnect the PSRAM chip from the ESP32. As an alternative, can you perhaps send the data to the SDIO or SPI slave port of the ESP32 and write it to RAM (or directly send it) from there?

WiFive
Posts: 3529
Joined: Tue Dec 01, 2015 7:35 am

Re: PSRAM WROVER-KIT_V3

Postby WiFive » Fri Mar 22, 2019 2:37 am

It would make more sense to have separate psram connected to fpga only and connect fpga to esp32 with hspi/vspi.

osalexandeko
Posts: 3
Joined: Thu Mar 21, 2019 11:45 am

Re: PSRAM WROVER-KIT_V3

Postby osalexandeko » Tue Apr 23, 2019 3:32 pm

thanks for replies
we would like to :
1.put ESP32 to light sleep
2. transfer data to psram from FPGA (quad spi 200 Mbit/sec, 0.1sec).
3. switch FPGA off, (saves a lot of battery time life)
4. then transfer the data from PSRAM over WiFi (TCP, 2sec)
we did not success yet, on logic analizer we see the FPGA is writing to PSRAM, but when ESP32 returns from sleep, the data is not there.
:(

ESP_Sprite
Posts: 8926
Joined: Thu Nov 26, 2015 4:08 am

Re: PSRAM WROVER-KIT_V3

Postby ESP_Sprite » Wed Apr 24, 2019 5:06 am

That's possibly because the ESP32 employs a cache for flash and PSRAM; you're reading data from the cache instead of from psram. I'd suggest you to call esp_spiram_writeback_cache() before going to light sleep to flush data to psram, and call it again after waking up again to make sure any data from the FPGA gets picked up correctly.

Who is online

Users browsing this forum: Baidu [Spider] and 57 guests