summaryrefslogtreecommitdiff
path: root/stmhal/pyexec.c
AgeCommit message (Expand)Author
2015-05-06pyexec: Make raw REPL work with event-driven version of pyexec.Damien George
2015-04-29stmhal: Automatically re-enable IRQs on the USB REPL.Dave Hylands
2015-04-29mp-readline: Save "prompt" string in readline state.Damien George
2015-04-28py: Replace py-version.sh with makeversionhdr.py, written in Python.Damien George
2015-04-19stmhal/pyexec.c: Make raw REPL mode 8-bit clean.Damien George
2015-04-16py: Overhaul and simplify printf/pfenv mechanism.Damien George
2015-02-13stmhal: Make pybstdio usable by other ports, and use it.Damien George
2015-02-08stmhal: Change type of received chr from char to int.Damien George
2015-02-07py: Protect mp_parse and mp_compile with nlr push/pop block.Damien George
2015-01-29py: Change vstr_null_terminate -> vstr_null_terminated_str, returns str.Damien George
2015-01-28py: Change vstr so that it doesn't null terminate buffer by default.Damien George
2015-01-28stmhal: Remove unnecessary #include "systick.h" from pyexec.c.Damien George
2015-01-20py, unix, stmhal: Allow to compile with -Wshadow.Damien George
2015-01-16pyexec: Add event-driven variant pyexec_friendly_repl().Paul Sokolovsky
2015-01-01stmhal: Prefix includes with py/; remove need for -I../py.Damien George
2014-12-29py: Add include guards to mpconfig,misc,qstr,obj,runtime,parsehelper.Damien George
2014-12-21stmhal: gccollect.h is superfluous in many places.Paul Sokolovsky
2014-12-21stmhal: Use gc_dump_info() function instead of adhoc code.Paul Sokolovsky
2014-12-20stmhal: Include MICROPY_HAL_H only if defined.Paul Sokolovsky
2014-12-08modsys: Add sys.print_exception(exc, file=sys.stdout) function.Paul Sokolovsky
2014-12-05py: Optimise lexer by exposing lexer type.Damien George
2014-11-27stmhal: Reduce coupling between USB driver and readline.Damien George
2014-10-26stmhal: Improve REPL control codes; improve pyboard.py script.Damien George
2014-10-22stmhal: Don't return SystemExit value from parse_compile_execute.Damien George
2014-10-22Add pyb.hard_reset, and make sys.exit() or raise SystemExit do a soft reset.Dave Hylands
2014-10-05stmhal: Use mp_uint_t where appropriate.Damien George
2014-10-05py: Make compiler return a proper exception on SyntaxError.Damien George
2014-09-23py: Free non-interned strings in the parser when not needed.Damien George
2014-07-20stmhal: Fix REPL printing by cooking output sent to stdout_obj.Damien George
2014-07-02Merge branch 'teensy-new' of github.com:dhylands/micropython into dhylands-te...Damien George
2014-06-27Change MCU name config micromux
2014-06-19Add MICROPY_HW_MICRO_NAME to boards configmux
2014-06-15Updated teensy to build.Dave Hylands
2014-05-10stmhal: Improve handling of out-of-memory in REPL.Damien George
2014-05-03Add license header to (almost) all files.Damien George
2014-05-03Don't print git hash as well as git tag in banner.v1.0Damien George
2014-05-03py: Print tag/version/git describe in uPy banner.Damien George
2014-05-03stmhal: Remove #include <stdint.h> from mpconfigport.h.Damien George
2014-05-02unix,stmhal: Make "mpconfig.h" be first included, as other headers depend on it.Paul Sokolovsky
2014-04-17build: Simplify build directory layout by putting all headers in genhdr.Damien George
2014-04-16stmhal: Improve flash storage cache management.Damien George
2014-04-08Improve REPL detecting when input needs to continue.Damien George
2014-04-06py: Add option to compiler to specify default code emitter.Damien George
2014-04-03Add the git version to the bannerDave Hylands
2014-04-03stmhal: Fix raw REPL so that it passes through more ASCII chars.Damien George
2014-03-30Rename rt_* to mp_*.Damien George
2014-03-29stmhal: Factor out stdio and readline to separate files.Damien George
2014-03-24stmhal: Improve REPL CTRL commands.Damien George
2014-03-17stmhal: Add fatfs support, working with flash and SD card.Damien George
2014-03-15Add vstr_ins and vstr_cut_out; improve stmhal readline.Damien George