Search found 4 matches
- Wed Oct 23, 2019 2:41 pm
- Forum: ESP-IDF
- Topic: Building and running a module beyond the original image file
- Replies: 13
- Views: 26528
Re: Building and running a module beyond the original image file
Also waiting to see if the code is available
- Wed Jan 30, 2019 7:52 am
- Forum: General Discussion
- Topic: Configuring ESP32 to execute from SPI RAM
- Replies: 8
- Views: 12476
Re: Configuring ESP32 to execute from SPI RAM
Psram is mapped into dram and the CPU cannot execute instructions from dram Thanks for the reply! Would you happen to know if it is possible to move code from dram to IRAM on demand? Probably my moving chunks of code at a time? Or at the very least short codes? I really want to be able to load apps...
- Sat Jan 26, 2019 10:47 pm
- Forum: General Discussion
- Topic: Load_ram esptool
- Replies: 5
- Views: 7855
Re: Load_ram esptool
So it is possible to execute code from ram?
- Sun Jan 20, 2019 4:33 pm
- Forum: General Discussion
- Topic: Configuring ESP32 to execute from SPI RAM
- Replies: 8
- Views: 12476
Re: Configuring ESP32 to execute from SPI RAM
I've been trying to do this for a while too. My attempt was to make a text file interpreter, which works perfectly. The one problem with this method was "slow" for time sensitive functions due to interpretation time. Regardless, I also want to have the option to upload code in pSRAM. I bet we can wo...