aboutsummaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
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
2017-08-30py/objtype: mp_obj_instance_make_new: Fix typos in comment.Paul Sokolovsky
2017-08-30py: Change obsolete "///" comment formatting to normal comments.Damien George
2017-08-30all: Convert remaining "mp_uint_t n_args" to "size_t n_args".Damien George
2017-08-30py/objtype: Handle NotImplemented return from binary special methods.Paul Sokolovsky
2017-08-29stmhal: Update to new STM Cube HAL library.Damien George
2017-08-29docs/library/micropython: Fix typo in RST formatting.Damien George
2017-08-29docs/library: Add description of "index" parameter to uos.dupterm().Damien George
2017-08-29stmhal/Makefile: Automatically fetch stm32lib submodule if needed.Damien George
2017-08-29stmhal: Remove cmsis and hal files, they are now a submodule.Damien George
2017-08-29stmhal/Makefile: Use lib/stm32lib instead of local cmsis and hal files.Damien George
2017-08-29lib: Add new submodule, stm32lib containing STM32 CMSIS and HAL source.Damien George
2017-08-29all: Convert mp_uint_t to mp_unary_op_t/mp_binary_op_t where appropriateDamien George
2017-08-29py/nlrx86,x64: Replace #define of defined() with portable macro usage.Damien George
2017-08-29drivers/memory/spiflash: Change from hard-coded soft SPI to generic SPI.Damien George
2017-08-29docs/machine.Signal: Improve style/grammar and add usage example.Paul Sokolovsky
2017-08-29py/objstr: startswith, endswith: Check arg to be a string.Paul Sokolovsky
2017-08-28docs/library/network: Fix ref to "socket" module (should be "usocket").Paul Sokolovsky
2017-08-28docs: More xrefs to "MicroPython port" in glossary.Paul Sokolovsky
2017-08-24stmhal/boards/pllvalues.py: Make script work with both Python 2 and 3.Damien George
2017-08-24stmhal/Makefile: Use GEN_PINS_HDR var instead of writing it explicitly.Damien George
2017-08-24stmhal/modmachine: For F7 MCU, save power by reducing internal volt reg.Damien George
2017-08-24stmhal: Compute PLL freq table during build instead of at run time.Damien George
2017-08-23docs/pyboard/tutorial: Add "timeout=0" to UART in pass-through example.Damien George
2017-08-23stmhal/modmachine: Improve support for sleep/deepsleep on F7 MCUs.Damien George
2017-08-23stmhal/modmachine: Make machine.bootloader() work when MPU is enabled.Damien George