summaryrefslogtreecommitdiffstatshomepage
path: root/bare-arm
Commit message (Expand)AuthorAge
* all: Make static dicts use mp_rom_map_elem_t type and MP_ROM_xxx macros.Damien George2017-08-21
* all: Make use of $(TOP) variable in Makefiles, instead of "..".Damien George2017-08-11
* all: Use the name MicroPython consistently in commentsAlexander Steffen2017-07-31
* all: Remove trailing spaces, per coding conventions.Damien George2017-07-19
* all: Move BYTES_PER_WORD definition from ports to py/mpconfig.hDamien George2017-04-01
* bare-arm/Makefile: Change C standard from gnu99 to c99.Damien George2017-03-23
* all/Makefile: Remove -ansi from GCC flags, its ignored anyway.Krzysztof Blazewicz2017-03-23
* bare-arm/main: Move lexer constructor to within NLR handler block.Damien George2017-03-14
* py/nlr.h: Mark nlr_jump_fail as NORETURN.Damien George2017-03-06
* py: Be more specific with MP_DECLARE_CONST_FUN_OBJ macros.Damien George2016-10-21
* py: Add MICROPY_USE_INTERNAL_PRINTF option, defaults to enabled.Delio Brignoli2016-09-05
* ports: Remove typedef of machine_ptr_t, it's no longer needed.Damien George2016-08-15
* lib/utils/pyexec: Condition-out GC calls from pyexec.Colin Hogben2016-04-19
* ports: Disable async/await on bare-arm, minimal, pic16bit, cc3200.Damien George2016-04-13
* py: Change type signature of builtin funs that take variable or kw args.Damien George2016-01-11
* py: Change struct and macro for builtin fun so they can be type checked.Damien George2016-01-03
* all: Add py/mphal.h and use it in all ports.Damien George2015-10-31
* Makefiles: Remove duplicate object files when linking.Paul Sokolovsky2015-10-24
* all: Make netutils.h available to all ports by default.Paul Sokolovsky2015-10-19
* py: Remove dependency on printf/fwrite in mp_plat_print.Damien George2015-10-15
* py: Allocate parse nodes in chunks to reduce fragmentation and RAM use.Damien George2015-10-02
* bare-arm: Disable enumerate and reversed builtins to make port more bare.Damien George2015-08-02
* py: Make qstr hash size configurable, defaults to 2 bytes.Damien George2015-07-20
* bare-arm, minimal, qemu-arm: Make do_str() take parse-input-kind as arg.Damien George2015-06-22
* py: Use a wrapper to explicitly check self argument of builtin methods.Damien George2015-06-20
* py: Add attrtuple object, for space-efficient tuples with attr access.Damien George2015-04-21
* py: Overhaul and simplify printf/pfenv mechanism.Damien George2015-04-16
* py: Add MICROPY_COMP_{DOUBLE,TRIPLE}_TUPLE_ASSIGN config options.Damien George2015-03-14
* py: Protect mp_parse and mp_compile with nlr push/pop block.Damien George2015-02-07
* py: Add config option MICROPY_COMP_MODULE_CONST for module consts.Damien George2015-01-10
* py: Disable stack checking by default; enable on most ports.Damien George2015-01-09
* py: Put all global state together in state structures.Damien George2015-01-07
* bare-arm: Prefix includes with py/; remove need for -I../py.Damien George2015-01-01
* Makefiles: Support py/*.h includes per #1022.Paul Sokolovsky2014-12-27
* modsys: Add sys.print_exception(exc, file=sys.stdout) function.Paul Sokolovsky2014-12-08
* py: Optimise lexer by exposing lexer type.Damien George2014-12-05
* ports: Define mp_off_t.Paul Sokolovsky2014-11-17
* py: Use shorter, static error msgs when ERROR_REPORTING_TERSE enabled.Damien George2014-11-06
* bare-arm: Add dummy __assert_func and __fatal_errorSven Wegener2014-11-05
* py: Add builtin memoryview object (mostly using array code).Damien George2014-10-23
* Implement kwargs for builtin open() and _io.FileIOstijn2014-10-21
* py: Make compiler return a proper exception on SyntaxError.Damien George2014-10-05
* py: Free non-interned strings in the parser when not needed.Damien George2014-09-23
* py: Print imported module's location (__file__) if available.Damien George2014-09-08
* py: Fix bug where GC collected native/viper/asm function data.Damien George2014-08-24
* py: #if guard qstrs that are optional.Damien George2014-08-12
* Put call to qstr_init and mp_init_emergency_exc_buf in mp_init.Damien George2014-08-04
* Rename machine_(u)int_t to mp_(u)int_t.Damien George2014-07-03
* bare-arm: Hint of setting MICROPY_ERROR_REPORTING to REPORTING_TERSE.Paul Sokolovsky2014-06-27
* bare-arm: Disable array module and even bytearray type.Paul Sokolovsky2014-06-27