aboutsummaryrefslogtreecommitdiff
path: root/extmod
AgeCommit message (Expand)Author
2017-04-29extmod/moduselect: Refactor towards introduction of poll.ipoll().Paul Sokolovsky
2017-04-29extmod/moduselect: Convert to MP_ROM_QSTR and friends.Paul Sokolovsky
2017-04-27extmod/crypto-algorithms/sha256: Remove non-standard memory.h header.Paul Sokolovsky
2017-04-21extmod/moductypes: Fix bigint handling for 32-bit ports.Paul Sokolovsky
2017-04-15extmod/machine_signal: Rename "inverted" arg to "invert", it's shorter.Damien George
2017-04-11extmod/machine_signal: Support all Pin's arguments to the constructor.Paul Sokolovsky
2017-04-04extmod/modframebuf: Make monochrome bitmap formats start with MONO_.Peter Hinch
2017-03-31all: Use full path name when including mp-readline/timeutils/netutils.Damien George
2017-03-29modutimeq: Add peektime() function (provisional).Jan Pochyla
2017-03-29extmod: Update for changes to mp_obj_str_get_data.Damien George
2017-03-29extmod/moduselect: Update to use size_t for array accessor.Damien George
2017-03-29extmod/vfs_fat: Fix calculation of total blocks in statvfs.Damien George
2017-03-26extmod/modlwip: Use mp_obj_str_get_str instead of mp_obj_str_get_data.Damien George
2017-03-22extmod/utime_mphal: Don't exit/enter the GIL in generic sleep functions.Damien George
2017-03-20extmod/modframebuf: Add support for monochrome horizontal format.Peter Hinch
2017-03-14py: Allow lexer to raise exceptions during construction.Damien George
2017-03-13extmod/vfs: Rewrite path lookup algo to support relative paths from root.Damien George
2017-03-13extmod/vfs_fat: Allow to compile with MICROPY_VFS_FAT disabled.Damien George
2017-03-10extmod/vfs_fat: Remove obsolete and unused str/len members.Damien George
2017-03-07extmod/modutimeq: Make scheduling fair (round-robin).Paul Sokolovsky
2017-02-24extmod/modurandom: Use mp_raise_ValueError().Paul Sokolovsky
2017-02-16py: Add iter_buf to getiter type method.Damien George
2017-02-15extmod/modlwip: Add my copyright.Paul Sokolovsky
2017-02-13extmod/vfs: Allow to stat the root directory.Damien George
2017-02-09extmod/vfs: Raise OSError(EEXIST) on attempt to mkdir a mount point.Damien George
2017-02-09extmod/vfs: Allow to mount a block device, not just a VFS object.Damien George
2017-02-08extmod/machine_signal: Implement Signal .on() and .off() methods.Paul Sokolovsky
2017-02-06extmod/machine_spi: Remove EVENT_POLL_HOOK from soft-SPI transfer func.Damien George
2017-02-05extmod/machine_pulse: Make time_pulse_us() not throw exceptions.Paul Sokolovsky
2017-01-30extmod/vfs_fat.c: Use explicit include path for timeutils.h.Andrew Gatt
2017-01-30extmod/vfs_reader: Fix use of NLR by popping context.Damien George
2017-01-30extmod/vfs_fat: Remove unused function fat_vfs_listdir.Damien George
2017-01-30extmod/vfs_fat: Remove unused fatfs_builtin_open function.Damien George
2017-01-30extmod: Merge old fsusermount.h header into vfs.h and vfs_fat.h.Damien George
2017-01-30extmod/vfs_fat: Remove MICROPY_FATFS_OO config option.Damien George
2017-01-30extmod: Remove MICROPY_FSUSERMOUNT and related files.Damien George
2017-01-30extmod/vfs_fat: Remove MICROPY_FSUSERMOUNT_ADHOC config option.Damien George
2017-01-30extmod/vfs_fat: Remove MICROPY_READER_FATFS component.Damien George
2017-01-30extmod/vfs: Expose lookup_path_raw as mp_vfs_lookup_path.Damien George
2017-01-30extmod/vfs_fat: Update to use FF_DIR instead of DIR.Damien George
2017-01-29extmod/machine_signal: Implement "signal" abstraction for machine module.Paul Sokolovsky
2017-01-27extmod/vfs_fat: Use SECSIZE macro to determine FatFs sector size.Damien George
2017-01-27extmod/vfs: Expose mp_vfs_mount_t type.Damien George
2017-01-27extmod/modlwip: Add socket.readinto() method.Damien George
2017-01-27extmod/vfs: Add ability for VFS sub-system to import using VfsFat.Damien George
2017-01-27extmod/vfs_fat: Rework to support new generic VFS sub-system.Damien George
2017-01-27extmod: Add generic VFS sub-system.Damien George
2017-01-27extmod: Rename vfs_fat_file.h to vfs_fat.h.Damien George
2017-01-27extmod/vfs_fat: Rework so it can optionally use OO version of FatFS.Damien George
2017-01-25extmod/modframebuf: Add GS4_HMSB format.Oleg Korsak