Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Correction on Heap API available from ISR #8708

Merged
merged 3 commits into from
Nov 4, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 12 additions & 9 deletions doc/reference.rst
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,18 @@ and have several limitations:
or use a scheduled function (which will be called outside of the interrupt
context when it is safe) to do long-running work.

* Memory operations can be dangerous and should be avoided in interrupts.
Calls to ``new`` or ``malloc`` should be minimized because they may require
a long running time if memory is fragmented. Calls to ``realloc`` and
``free`` must NEVER be called. Using any routines or objects which call
``free`` or ``realloc`` themselves is also forbidden for the same reason.
This means that ``String``, ``std::string``, ``std::vector`` and other
classes which use contiguous memory that may be resized must be used with
extreme care (ensuring strings aren't changed, vector elements aren't
added, etc.).
* Heap API operations can be dangerous and should be avoided in interrupts.
Calls to ``malloc`` should be minimized because they may require a long
running time if memory is fragmented. Calls to ``realloc`` and ``free``
must NEVER be called. Using any routines or objects which call ``free`` or
``realloc`` themselves is also forbidden for the same reason. This means
mcspr marked this conversation as resolved.
Show resolved Hide resolved
that ``String``, ``std::string``, ``std::vector`` and other classes which
use contiguous memory that may be resized must be used with extreme care
(ensuring strings aren't changed, vector elements aren't added, etc.).

* The C++ ``new`` and ``delete`` operators must NEVER be used in an ISR. Their
call path is not in IRAM. Using any routines or objects that use the ``new``
or ``delete`` operator is also forbidden.

Digital IO
----------
Expand Down