Skip to content
  • Damien George's avatar
    py/modmicropython: Allow to have stack_use() func without mem_info(). · 7e2a4885
    Damien George authored
    The micropython.stack_use() function is useful to query the current C stack
    usage, and it's inclusion in the micropython module doesn't need to be tied
    to the inclusion of mem_info()/qstr_info() because it doesn't rely on any
    of the code from these functions.  So this patch introduces the config
    option MICROPY_PY_MICROPYTHON_STACK_USE which can be used to independently
    control the inclusion of stack_use().  By default it is enabled if
    MICROPY_PY_MICROPYTHON_MEM_INFO is enabled (thus not changing any of the
    existing ports).
    7e2a4885