diff options
author | Damien George <damien.p.george@gmail.com> | 2014-07-29 23:15:35 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-07-29 23:15:35 +0100 |
commit | 07133415d26d740b866f4542222bb92c06c863d1 (patch) | |
tree | fa160e4e73cf93fe7b70eaec9ed881eb0fecb7b5 /py/qstrdefs.h | |
parent | d0f5e61ab58892ecd3b0838adeea3cde330da3f1 (diff) | |
parent | 5b7fd20fea6d4329bb3ab45f63df41f46f242688 (diff) | |
download | micropython-07133415d26d740b866f4542222bb92c06c863d1.tar.gz micropython-07133415d26d740b866f4542222bb92c06c863d1.zip |
Merge pull request #738 from dhylands/except-args
Add support for storing args during an exception raised by an irq.
Diffstat (limited to 'py/qstrdefs.h')
-rw-r--r-- | py/qstrdefs.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/py/qstrdefs.h b/py/qstrdefs.h index 27b695722c..6470cb9509 100644 --- a/py/qstrdefs.h +++ b/py/qstrdefs.h @@ -326,6 +326,10 @@ Q(mem_total) Q(mem_current) Q(mem_peak) +#if MICROPY_ENABLE_EMERGENCY_EXCEPTION_BUF && (MICROPY_EMERGENCY_EXCEPTION_BUF_SIZE == 0) +Q(alloc_emergency_exception_buf) +#endif + Q(<module>) Q(<lambda>) Q(<listcomp>) |