esp8266 - reentrancy for callbacks

Callbacks from the network stack and alarm handlers
can damage the stacks of foreground applications, because
while the inner interpreter is running, the stack pointers
are in local variables that are not visible to the callback.
The solution is to switch to private stacks during callbacks.
4 files changed
tree: b1f9f5e740c735e1ede351b50e097bfb876e44fb
  1. build/
  2. src/
  3. .gitattributes
  4. .gitignore
  5. LICENSE
  6. README
  7. README.md
README.md

cforth

This is Mitch Bradley's CForth implementation.

This version was derived from the version at One Laptop Per Child, then it was improved as follows:

a) Host version now has line editing b) Host version catches exceptions c) key and key? implemented property in host versions for Linux and Windows d) Makefile fragments factored better, and use pattern rules extensively e) Makefiles in build directories simplified