Search found 1 match

by johnsonjeven
Fri Mar 31, 2017 7:49 am
Forum: ESP-IDF
Topic: Storage allocation puzzles ... heap vs static ...
Replies: 4
Views: 9804

Re: Storage allocation puzzles ... heap vs static ...

Variables allocated on the stack are stored directly to the memory and access to this memory is very fast, and it's allocation is dealt with when the program is compiled. When a function or a method calls another function which in turns calls another function etc., the execution of all those functio...