- Thu Apr 28, 2016 12:27 pm
#46411
Great FAQ, TerryE... I'll have to read it more completely when I get back to esp8266 development.
To answer the question, the functions are stored in flash, yes, and they are loaded into memory for execution. However, they are only returned from the __index metamethod (the method that is called whenever the key does not exist in the table), and never assigned to any variable, so they are out of scope and available for GC as soon as they finish executing. The flashMod function saves the function to disk (string.dump) and then sets the key to nil in the table, so that it will hit the __index metamethod to load the function.
Looks like NodeMCU has come a long way since I left off... I look forward to trying it out again (though with a Pi Zero as the primary node in the network and the ESP8266 as a programmable slave rather than trying to make the tiny ESP8266 the entire system).