summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2017-01-27unix: Get minimal version compiling again.Damien George
2017-01-27esp8266: Switch to use OO version of FatFs library.Damien George
2017-01-27test/extmod: Update vfs_fat tests for new OO FatFs library.Damien George
2017-01-27unix: Switch to OO version of FatFS library.Damien George
2017-01-27extmod/vfs_fat: Rework so it can optionally use OO version of FatFS.Damien George
2017-01-27py/py.mk: Add CFLAGS_MOD flag to set config file for FatFs.Damien George
2017-01-27lib/oofatfs: Add OO version of FatFS library.Damien George
2017-01-27qemu-arm: Don't compile tests in "REPL" mode.Damien George
2017-01-27py/showbc: Make sure to set the const_table before printing bytecode.Damien George
2017-01-27tools/tinytest-codegen.py: Blacklist heapalloc_str.py test for qemu-arm.Paul Sokolovsky
2017-01-27tests/heapalloc_str: Test for alloc-free string operations.Paul Sokolovsky
2017-01-27py/objstr: Optimize string concatenation with empty string.Paul Sokolovsky
2017-01-26tests/extmod: Add test for ure debug printing when compiling a regex.Damien George
2017-01-26py/objmodule: Move module init/deinit code into runtime functions.Damien George
2017-01-25tests/extmod/framebuf1: Fix test for framebuf invalid constructor.Damien George
2017-01-25tests/extmod/framebuf4: Add tests for GS4_HMSB framebuf format.Oleg Korsak
2017-01-25extmod/modframebuf: Add GS4_HMSB format.Oleg Korsak
2017-01-25py/objint: Fix left-shift overflow in checking for large int.Damien George
2017-01-25esp8266: Factor out common linker code to esp8266_common.ld.Damien George
2017-01-24stmhal/mpconfigport.h: Reorganise the config options into groups.Damien George
2017-01-24stmhal/boards/STM32L476DISC: Use external SPI flash for filesystem.Damien George
2017-01-24stmhal: Add ability to have filesystem stored on external SPI flash.Damien George
2017-01-24drivers/memory: Add SPI flash driver, written in C.Damien George
2017-01-24stmhal: Fix examples in openocd configs to include addresses.Pavol Rusnak
2017-01-24tests: Make sure special tests can be skipped as well.stijn
2017-01-24docs/library/lcd160cr: Fix set_brightness range, should be 0..31.Damien George
2017-01-23docs/pyboard/tutorial: Add tutorial for LCD160CR.Damien George
2017-01-23stmhal: Add default frozen-bytecode directory and link lcd160cr driver.Damien George
2017-01-23docs: Add documentation for lcd160cr module.Damien George
2017-01-23drivers/display: Add driver and test for uPy LCD160CR display.Damien George
2017-01-23extmod/modframebuf: Clip pixels drawn by line method.Damien George
2017-01-22lib/utils/pyexec: Only print help prompt if HELP feature is enabled.Damien George
2017-01-22stmhal: Enable help('modules') feature.Damien George
2017-01-22tests/basics/builtin_help: Add test for help('modules').Damien George
2017-01-22unix: Enable MICROPY_PY_BUILTINS_HELP_MODULES in coverage build.Damien George
2017-01-22py/builtinhelp: Implement help('modules') to list available modules.Damien George
2017-01-22py: Move weak-link map to objmodule.c, and expose module maps as public.Damien George
2017-01-22tests: Add test for builtin help function.Damien George
2017-01-22unix: Enable builtin help function in coverage build.Damien George
2017-01-22lib/utils: Remove old pyhelp helper, replaced with py/builtinhelp.c.Damien George
2017-01-22zephyr: Convert to use builtin help function.Damien George
2017-01-22teensy: Convert to use builtin help function.Damien George
2017-01-22cc3200: Convert to use builtin help function.Damien George
2017-01-22esp8266: Convert to use builtin help function.Damien George
2017-01-22stmhal: Convert to use builtin help function.Damien George
2017-01-22py: Add builtin help function to core, with default help msg.Damien George
2017-01-21tests/heapalloc_int_from_bytes: Test that int.from_bytes() can work w/o alloc.Paul Sokolovsky
2017-01-21tests: Add test for int.from_bytes() for arbitrary-precision integer.Paul Sokolovsky
2017-01-21py/objint_longlong: Add stub for mp_obj_int_from_bytes_impl().Paul Sokolovsky
2017-01-21py/objint: from_bytes(): Implement "byteorder" param and arbitrary precision.Paul Sokolovsky