It looks like if this option is enabled, then on restart the code gets executed before the network stack is initialised.
Yep, that's what you'd expect I guess. It's executed just before onInit is called - so if you were doing something that required network connectivity in your code, I guess it would error.
Of course if your code didn't do anything with the network, that'd be a bit odd?
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.
Yep, that's what you'd expect I guess. It's executed just before
onInit
is called - so if you were doing something that required network connectivity in your code, I guess it would error.Of course if your code didn't do anything with the network, that'd be a bit odd?