Skip to content
Snippets Groups Projects
Commit 52c19875 authored by Paul Sokolovsky's avatar Paul Sokolovsky
Browse files

esp8266/general: Add "Scarcity of runtime resources" section.

With warnings of need to close files, sockets, etc.
parent 54ea10a7
No related branches found
No related tags found
No related merge requests found
...@@ -58,6 +58,17 @@ For your convenience, some of technical specifications are provided below: ...@@ -58,6 +58,17 @@ For your convenience, some of technical specifications are provided below:
and always-available BootROM bootloader, ESP8266 is not brickable. and always-available BootROM bootloader, ESP8266 is not brickable.
Scarcity of runtime resources
-----------------------------
ESP8266 has very modest resources (first of all, RAM memory). So, please
avoid allocating too big container objects (lists, dictionaries) and
buffers. There is also no full-fledged OS to keep track of resources
and automatically clean them up, so that's the task of a user/user
application: please be sure to close open files, sockets, etc. as soon
as possible after use.
Boot process Boot process
------------ ------------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment