Search found 1 match

by isaque
Sun May 26, 2019 5:26 pm
Forum: General Discussion
Topic: ESP32 crashes when try to execute code from IRAM
Replies: 2
Views: 3711

ESP32 crashes when try to execute code from IRAM

I am trying to find a way to execute code (for exemple, load a code from SD card to RAM) without re-flashing esp32. I know ESP32 can execute instructions from IRAM, but when I try to do it, esp32 crashes. int main() { int c = 0; for (int i = 0; i < 1000; i ++) { for (int j = 0; j < 1000; j ++) { c++...