summaryrefslogtreecommitdiff
path: root/lib/utils
AgeCommit message (Expand)Author
2020-02-28all: Reformat C and Python source code with tools/codeformat.py.Damien George
2020-02-07py/scheduler: Move clearing of kbd traceback to mp_keyboard_interrupt.Damien George
2020-02-07py/scheduler: Move mp_keyboard_interrupt from lib/utils to py core.Damien George
2020-02-07lib/utils/pyexec: Handle pending exceptions after disabling kbd intrs.Damien George
2020-02-04lib/utils: Change default value of pyexec_mode_kind to 0 to put in bss.odewdney
2019-12-28lib/utils/pyexec: Introduce MICROPY_REPL_INFO, wrap debug prints in it.Yonatan Goldschmidt
2019-12-27py: Introduce MP_ROM_NONE macro for ROM to refer to None object.Damien George
2019-08-28py: Add global default_emit_opt variable to make emit kind persistent.Damien George
2019-07-01lib/utils/sys_stdio_mphal: Add support to poll sys.stdin and sys.stdout.Damien George
2019-05-01lib/utils/interrupt_char: Invalidate interrupt char at start up.Damien George
2019-05-01lib/utils: Make pyexec_file_if_exists run frozen scripts if they exist.Andrew Leech
2019-04-26lib/utils/pyexec: Add pyexec_file_if_exists() helper function.Damien George
2019-02-12all: Change PYB message prefix to MPY.Mike Causer
2019-02-12lib/utils/gchelper: Add gchelper.h header file for assembler functions.Damien George
2019-02-12lib/utils/gchelper_m3: Add gc_helper_get_sp() function.Damien George
2019-02-12lib/utils/gchelper_m3: Add license header and clean up code.Damien George
2019-02-12stm32: Move gchelper assembler code to lib/utils for use by other ports.Damien George
2019-02-06lib/utils/printf: Exclude __GI_vsnprintf alias for gcc 9 and above.Damien George
2019-01-28lib/utils/pyexec: Implement paste mode with event driven REPL.Damien George
2018-12-29lib/utils: Add generic MicroPython IRQ helper functions.Tobias Badertscher
2018-10-13lib/utils/pyexec: Forcefully unlock the heap if locked and REPL active.Damien George
2018-08-02py/mpconfig.h: Introduce MICROPY_DEBUG_PRINTER for debugging output.Damien George
2018-07-18lib/utils: Expose pyb_set_repl_info function publicGlenn Ruben Bakke
2018-07-08lib/utils: Fix to support compiling with object representation D.Damien George
2018-07-05lib/utils/printf: Make DEBUG_printf implementation more accessible.stijn
2018-02-13lib/utils/pyexec: Update to work with new MICROPY_HW_ENABLE_USB option.Damien George
2018-01-31lib/utils/pyexec.h: Include py/obj.h because its decls are needed.Damien George
2017-10-04all: Remove inclusion of internal py header files.Damien George
2017-07-31all: Use the name MicroPython consistently in commentsAlexander Steffen
2017-07-18all: Unify header guard usage.Alexander Steffen
2017-06-15stmhal: Move pybstdio.c to lib/utils/sys_stdio_mphal.c for common use.Damien George
2017-06-02lib/utils/interrupt_char: Remove support for KBD_EXCEPTION disabled.Damien George
2017-05-29various: Spelling fixesVille Skyttä
2017-05-05lib/utils/pyexec: Update event-driven REPL to match non-event REPL.Tom Collins
2017-03-20py: Add micropython.schedule() function and associated runtime code.Damien George
2017-03-14lib/utils/pyexec: Fix bug with pyexec_file not setting flag for source.Damien George
2017-03-14lib/utils/pyexec: Refactor to put lexer constructors all in one place.Damien George
2017-02-27lib/utils/pyexec: Allow to compile when the uPy compiler is disabled.Damien George
2017-01-22lib/utils/pyexec: Only print help prompt if HELP feature is enabled.Damien George
2017-01-22lib/utils: Remove old pyhelp helper, replaced with py/builtinhelp.c.Damien George
2016-12-15lib/utils/interrupt_char: Use core-provided mp_kbd_exception if enabled.Damien George
2016-10-26zephyr: Fix mp_hal_set_interrupt_char() declaration to be compatible.Paul Sokolovsky
2016-10-26lib/utils/pyexec: Fix compilation warning of type vs format mismatch.Paul Sokolovsky
2016-10-26lib/utils/pyexec: Add mp_hal_set_interrupt_char() prototype.Vincenzo Frascino
2016-10-21lib/utils/pyhelp.c: Use mp_printf() instead of printf()Erik Moqvist
2016-10-21py: Be more specific with MP_DECLARE_CONST_FUN_OBJ macros.Damien George
2016-10-17lib/utils/pyexec: Allow behaviour of SystemExit to be configurable.Damien George
2016-10-14py/vstr: Combine vstr_new_size with vstr_new since they are rarely used.Damien George
2016-10-12lib/utils/pyexec: Don't treat SystemExit as "forced exit".Paul Sokolovsky
2016-09-29lib/interrupt_char: Factor out typical Ctrl+C handling from esp8266 port.Paul Sokolovsky