aboutsummaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2018-03-04tests/extmod/time_ms_us: Add test for calling ticks_cpu().Damien George
2018-03-03tests/unix: Add coverage test for uio.resource_stream from frozen str.Damien George
2018-03-03stm32/qspi: Add hardware QSPI driver, with memory-map capability.Damien George
2018-03-03stm32/spibdev: Convert to use multiple block read/write interface.Damien George
2018-03-02stm32/storage: Add option for bdev to supply readblock/writeblocks.Damien George
2018-03-02stm32/spibdev: Add option to configure SPI block dev to use QSPI flash.Damien George
2018-03-02stm32/spibdev: Update to work with new spiflash driver.Damien George
2018-03-02extmod/machine_spi: Make SPI protocol structure public.Damien George
2018-03-02drivers/memory/spiflash: Add support for QSPI interface.Damien George
2018-03-02drivers/bus: Add QSPI abstract type with software QSPI implementation.Damien George
2018-03-02py/objint: Remove unreachable code checking for int type in format func.Damien George
2018-03-02tests: Move heap-realloc-while-locked test from C to Python.Damien George
2018-03-01tests/unix: Add coverage tests for various GC calls.Damien George
2018-03-01py/formatfloat: Fix case where floats could render with negative digits.Damien George
2018-03-01py/formatfloat: Fix case where floats could render with a ":" character.Damien George
2018-03-01py/formatfloat: Fix rounding of %f format with edge-case FP values.Damien George
2018-02-28tests/extmod/vfs_fat_fileio1: Add test for calling file obj finaliser.Damien George
2018-02-28extmod/vfs_fat_diskio: Use a C-stack-allocated bytearray for block buf.Damien George
2018-02-27tests/basics/gc1: Add test which triggers GC threshold.Damien George
2018-02-27tests/unix: Add coverage test for VM executing invalid bytecode.Damien George
2018-02-27py/vm: Simplify handling of special-case STOP_ITERATION in yield from.Damien George
2018-02-27py/vm: Fix case of handling raised StopIteration within yield from.Damien George
2018-02-26esp8266/modnetwork: Implement WLAN.status('rssi') for STA interface.Damien George
2018-02-26esp8266/uart: Allow to compile with event-driven REPL.Damien George
2018-02-26py/mpstate.h: Add repl_line state for MICROPY_REPL_EVENT_DRIVEN.Damien George
2018-02-26tests/float: Adjust float-parsing tests to pass with only a small error.Damien George
2018-02-26tests/extmod/uzlib_decompress: Add uzlib tests to improve coverage.Damien George
2018-02-26tests/extmod/vfs_fat_fileio1: Add test for failing alloc with finaliser.Damien George
2018-02-25tests/unix: Add coverage tests for mpz_set_from_float, mpz_mul_inpl.Damien George
2018-02-25py/mpz: In mpz_clone, remove unused check for NULL dig.Damien George
2018-02-24tests/stress: Add test to create a dict beyond "maximum" rehash size.Damien George
2018-02-24tests/basics: Add test for calling a subclass of a native class.Damien George
2018-02-24py/asm*.c: Remove unnecessary check for num_locals<0 in asm entry func.Damien George
2018-02-24py/compile: Adjust c_assign_atom_expr() to use return instead of goto.Damien George
2018-02-23extmod/vfs_fat: Remove declaration of mp_builtin_open_obj.Damien George
2018-02-23extmod/vfs_fat: Make fat_vfs_open_obj wrapper public, not its function.Damien George
2018-02-23extmod/vfs_fat: Merge remaining vfs_fat_misc.c code into vfs_fat.c.Damien George
2018-02-23extmod/vfs_fat: Move ilistdir implementation from misc to main file.Damien George
2018-02-23stm32: Move MCU-specific cfg from mphalport.h to mpconfigboard_common.h.Damien George
2018-02-23stm32/flash: Use FLASH_TYPEPROGRAM_WORD to support newer HALs.Damien George
2018-02-23stm32: Use "GEN" for describing files generated in the build.Damien George
2018-02-23examples/embedding: Don't prefix $(MPTOP) to ports/unix source files.Damien George
2018-02-22examples/embedding: Update broken paths to use correct $(MPTOP).talljosh
2018-02-22stm32: Add board config option to enable/disable the ADC.Damien George
2018-02-22minimal/Makefile: Explicitly include lib/utils/printf.c in build.Damien George
2018-02-22py: Use "GEN" consistently for describing files generated in the build.Damien George
2018-02-22py/py.mk: Remove .. path component from list of extmod files.Damien George
2018-02-22ports/{bare-arm,minimal}/Makefile: Only build with core source files.Damien George
2018-02-22py/py.mk: Split list of uPy sources into core and extmod files.Damien George
2018-02-21py/objdeque: Use m_new0 when allocating items to avoid need to clear.Damien George