Check discussion here https://github.com/espressif/esp-idf/issues/8306 about wroom vs PSRAM.
when searching now in espruino code, PSRAM is enabled here https://github.com/espruino/Espruino/blob/6df01b93404975befd5ff12a02e2625fe2f88808/targets/esp32/Changes_V3.1/sdkconfig#L180 since year 2018
however that flag about ignoring missing PSAM is set to yes https://github.com/espruino/Espruino/blob/6df01b93404975befd5ff12a02e2625fe2f88808/targets/esp32/Changes_V3.1/sdkconfig#L184 so it should boot
sorry I don't use espruino with esp32 very much and I am not sure I have wroom32 module to check this error, will check
also I am not familiar with state of PSRAM support in espruino, here is some comment that is a bit cryptic https://github.com/espruino/Espruino/blob/6df01b93404975befd5ff12a02e2625fe2f88808/boards/ESP32.py#L28 maybe your variables are too large so it tries to use missing PSRAM, so reducing the size of variables may help? but I am just guessing really, someone more familiar with ESP32 should better comment
variables
These items were also useless, however, thank you
@fanoush started
Espruino is a JavaScript interpreter for low-power Microcontrollers. This site is both a support community for Espruino and a place to share what you are working on.
Check discussion here https://github.com/espressif/esp-idf/issues/8306 about wroom vs PSRAM.
when searching now in espruino code, PSRAM is enabled here https://github.com/espruino/Espruino/blob/6df01b93404975befd5ff12a02e2625fe2f88808/targets/esp32/Changes_V3.1/sdkconfig#L180 since year 2018
however that flag about ignoring missing PSAM is set to yes https://github.com/espruino/Espruino/blob/6df01b93404975befd5ff12a02e2625fe2f88808/targets/esp32/Changes_V3.1/sdkconfig#L184 so it should boot
sorry I don't use espruino with esp32 very much and I am not sure I have wroom32 module to check this error, will check
also I am not familiar with state of PSRAM support in espruino, here is some comment that is a bit cryptic https://github.com/espruino/Espruino/blob/6df01b93404975befd5ff12a02e2625fe2f88808/boards/ESP32.py#L28
maybe your
variables
are too large so it tries to use missing PSRAM, so reducing the size of variables may help? but I am just guessing really, someone more familiar with ESP32 should better comment