save() not work on ESP32 #7080
Replies: 1 comment
-
Posted at 2017-09-27 by @allObjects ...try with the 'old' Posted at 2017-09-28 by user81716 not work, after save(), log is printed. but reset the board, cannot see the hello string except boot messages. function setup_sim800c() { function onInit() {setup_sim800c();}
Posted at 2017-09-29 by Wilberforce Have you got saved code from previous firmware? If you erase the flash and then reflash the firmware, and upload the code, I think it will be ok..... Posted at 2017-09-29 by Wilberforce Which firmware version are you running? Posted at 2018-03-15 by Will I am having same problem with the save(). I have my own onInit() called in the save. Posted at 2018-03-16 by barbiani Mine was not working also... and a full reflash makes it save again. I believe that the flash gets corrupted when the core crashes... and it does a lot. Posted at 2018-03-16 by jugglingcats I find mine crashes a lot too. Does anyone have any insight why it's so unstable? Is it issues with the Espruino port or something else. Does it depend on the specific board -- are some more stable than others. Posted at 2018-04-03 by Wilberforce
I think the powersupply has a lot to do with it. Posted at 2018-04-09 by hungryforcodes Yeah this has happened to me too a few times. If I see anything that reproduces it reliably I'll post something. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Posted at 2017-09-27 by user81716
A simple code like this:
function setup_sim800c() {
console.log("Hello, SIM800C!");
}
E.on('init', function(){setup_sim800c();});
then click send to Espruino button, after done, enter "save()" in left IDE window:
things seams OK, but reset the board, nothing printed. setup_sim800c symbol is not found either.
...
Loading 3036 bytes from flash..
Beta Was this translation helpful? Give feedback.
All reactions