summaryrefslogtreecommitdiff
path: root/bare-arm
AgeCommit message (Expand)Author
2015-10-31all: Add py/mphal.h and use it in all ports.Damien George
2015-10-24Makefiles: Remove duplicate object files when linking.Paul Sokolovsky
2015-10-19all: Make netutils.h available to all ports by default.Paul Sokolovsky
2015-10-15py: Remove dependency on printf/fwrite in mp_plat_print.Damien George
2015-10-02py: Allocate parse nodes in chunks to reduce fragmentation and RAM use.Damien George
2015-08-02bare-arm: Disable enumerate and reversed builtins to make port more bare.Damien George
2015-07-20py: Make qstr hash size configurable, defaults to 2 bytes.Damien George
2015-06-22bare-arm, minimal, qemu-arm: Make do_str() take parse-input-kind as arg.Damien George
2015-06-20py: Use a wrapper to explicitly check self argument of builtin methods.Damien George
2015-04-21py: Add attrtuple object, for space-efficient tuples with attr access.Damien George
2015-04-16py: Overhaul and simplify printf/pfenv mechanism.Damien George
2015-03-14py: Add MICROPY_COMP_{DOUBLE,TRIPLE}_TUPLE_ASSIGN config options.Damien George
2015-02-07py: Protect mp_parse and mp_compile with nlr push/pop block.Damien George
2015-01-10py: Add config option MICROPY_COMP_MODULE_CONST for module consts.Damien George
2015-01-09py: Disable stack checking by default; enable on most ports.Damien George
2015-01-07py: Put all global state together in state structures.Damien George
2015-01-01bare-arm: Prefix includes with py/; remove need for -I../py.Damien George
2014-12-27Makefiles: Support py/*.h includes per #1022.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-17ports: Define mp_off_t.Paul Sokolovsky
2014-11-06py: Use shorter, static error msgs when ERROR_REPORTING_TERSE enabled.Damien George
2014-11-05bare-arm: Add dummy __assert_func and __fatal_errorSven Wegener
2014-10-23py: Add builtin memoryview object (mostly using array code).Damien George
2014-10-21Implement kwargs for builtin open() and _io.FileIOstijn
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-09-08py: Print imported module's location (__file__) if available.Damien George
2014-08-24py: Fix bug where GC collected native/viper/asm function data.Damien George
2014-08-12py: #if guard qstrs that are optional.Damien George
2014-08-04Put call to qstr_init and mp_init_emergency_exc_buf in mp_init.Damien George
2014-07-03Rename machine_(u)int_t to mp_(u)int_t.Damien George
2014-06-27bare-arm: Hint of setting MICROPY_ERROR_REPORTING to REPORTING_TERSE.Paul Sokolovsky
2014-06-27bare-arm: Disable array module and even bytearray type.Paul Sokolovsky
2014-06-27bare-arm: Enable link map file.Paul Sokolovsky
2014-06-18bare-arm, stmhal, teensy: Duplicate -nostdlib to CFLAGSSven Wegener
2014-06-18bare-arm, stmhal: Fix --nostdlib to -nostdlibSven Wegener
2014-06-08Provide definition of alloca() in mpconfigport.h.Damien George
2014-06-01bare-arm: Disable slice and set.Damien George
2014-06-01Rename bultins config variables to MICROPY_PY_BUILTINS_*.Damien George
2014-05-24Rename configuration variables controling Python features.Damien George
2014-05-21Tidy up some configuration options.Damien George
2014-05-10bare-arm: Change output file from flash.elf to firmware.elf.Damien George
2014-05-02bare-arm, qemu-arm: Make "mpconfig.h" be first included, as other headers dep...Paul Sokolovsky
2014-04-26bare-arm: Disable more stuff to reduce binary size.Damien George
2014-04-17build: Simplify build directory layout by putting all headers in genhdr.Damien George
2014-04-16build directory can now be renamedAndrew Scheller
2014-04-13bare-arm/unix-cpy: Minor changes.Damien George
2014-04-12Add 'bare-arm' port: the bare minimum to get it running on an ARM MCU.Damien George