aboutsummaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2017-09-10berkeley-db-1.xx: Update, allow to override MINCACHE, DEFPSIZE.Paul Sokolovsky
2017-09-10esp8266/posix_helpers: Set ENOMEM on memory alloc failure.Paul Sokolovsky
2017-09-10esp8266: Rename axtls_helpers.c to posix_helpers.c.Paul Sokolovsky
2017-09-10stm32/boards: Add new board B_L475E_IOT01A based on STM32L475.Tobias Badertscher
2017-09-10py/builtinhelp: Simplify code slightly by extracting object type.Damien George
2017-09-09docs/reference/isr_rules.rst Add tutorial on use of micropython.schedule().Peter Hinch
2017-09-08stm32/modnwwiznet5k: Release the GIL on blocking network operations.Damien George
2017-09-08tests/run-bench-tests: Update locations of executables, now in ports/.Damien George
2017-09-08stm32/i2c: When scanning for I2C devices only do 1 probe per address.Damien George
2017-09-08py/runtime0.h: Put inplace arith ops in front of normal operations.Paul Sokolovsky
2017-09-07py/runtime0.h: Regroup operations a bit.Paul Sokolovsky
2017-09-07py/objtype: Make sure mp_binary_op_method_name has full size again.Paul Sokolovsky
2017-09-07py/runtime0.h: Move MP_BINARY_OP_DIVMOD to the end of mp_binary_op_t.Paul Sokolovsky
2017-09-07py/runtime0.h: Move relational ops to the beginning of mp_binary_op_t.Paul Sokolovsky
2017-09-07py/objlist: Properly implement comparison with incompatible types.Paul Sokolovsky
2017-09-06extmod/modussl_mbedtls: Allow to compile with MBEDTLS_DEBUG_C disabled.Damien George
2017-09-06py/objstr: Add check for valid UTF-8 when making a str from bytes.tll
2017-09-06stm32/boards: Fix I2C1 pin mapping on NUCLEO_F401RE/F411RE boards.Damien George
2017-09-06stm32/boards: Change linker scripts to use "K" instead of hex byte size.Damien George
2017-09-06stm32/boards: Change remaining stm32f4xx_hal_conf.h to unix line ending.Damien George
2017-09-06stm32: Replace stray tabs with spaces.Damien George
2017-09-06stm32: Remove unused usbd_msc.c file.Damien George
2017-09-06all: Update Makefiles and others to build with new ports/ dir layout.Damien George
2017-09-06ports: Make new ports/ sub-directory and move all ports there.Damien George
2017-09-06.gitattributes: Add entries for files that will move to ports/ dir.Damien George
2017-09-06py/objtuple: Properly implement comparison with incompatible types.Paul Sokolovsky
2017-09-05stmhal/timer: Remove unnecessary include of USB header files.Damien George
2017-09-04tests/class_inplace_op: Test for inplace op fallback to normal one.Paul Sokolovsky
2017-09-04py/objtype: Implement fallback for instance inplace special methods.Paul Sokolovsky
2017-09-04py/obj: Remove declaration for mp_obj_new_none(), it's never defined.Damien George
2017-09-04stmhal: Fix clock initialisation of L4 MCUs.Tobias Badertscher
2017-09-04cc3200: Use standard implementation of keyboard interrupt.Damien George
2017-09-04cc3200: Enable micropython.kbd_intr() methodRobert HH
2017-09-04py/obj: Fix comparison of float/complex NaN with itself.Damien George
2017-09-02py/objfloat: Fix binary ops with incompatible objects.Paul Sokolovsky
2017-09-01py/nlrthumb: Get working again on standard Thumb arch (ie not Thumb2).Damien George
2017-09-01py/qstrdefs: Remove unused qstrs.Damien George
2017-09-01.gitattributes: Remove obsolete entries for stmhal/hal, stmhal/cmsis.Damien George
2017-09-01pic16bit: Add definition of SEEK_SET to unistd.h.Damien George
2017-09-01py/modstruct: Check and prevent buffer-write overflow in struct packing.Damien George
2017-09-01py/modstruct: Check and prevent buffer-read overflow in struct unpackingDamien George
2017-09-01py/modstruct: In struct.pack, stop converting if there are no args left.Damien George
2017-09-01tests/class_new: Add another testcase for __new__/__init__ interaction.Paul Sokolovsky
2017-08-31py: Make m_malloc_fail() have void return type, since it doesn't return.Damien George
2017-08-31py/map: Remove unused new/free functions.Damien George
2017-08-31py/map: Replace always-false condition with assertion.Damien George
2017-08-31extmod/modubinascii: Only include uzlib/tinf.h when it's really needed.Damien George
2017-08-31py/objtype: mp_obj_class_lookup: Improve debug logging.Paul Sokolovsky
2017-08-30tests/class_new: Add checks for __init__ being called and other improvements.Paul Sokolovsky
2017-08-30tests/object_new: Better messages, check user __new__() method.Paul Sokolovsky