aboutsummaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2016-12-02extmod/vfs_fat_file: Allow file obj to respond to ioctl flush request.w4kpm
2016-12-02esp8266: Enable uselect module.Damien George
2016-12-02extmod/modlwip: Add ioctl method to socket, with poll implementation.Damien George
2016-12-02extmod/moduselect: Use configurable EVENT_POLL_HOOK instead of WFI.Damien George
2016-12-02extmod/moduselect: Use stream helper function instead of ad-hoc code.Damien George
2016-12-02py/stream: Move ad-hoc ioctl constants to stream.h and rename them.Damien George
2016-12-02tests/extmod/vfs_fat_fileio: Add test for constructor of FileIO type.Damien George
2016-12-02stmhal/moduos: Implement POSIX behaviour of rename, allow to overwrite.Damien George
2016-12-02extmod/vfs_fat: Implement POSIX behaviour of rename, allow to overwrite.Damien George
2016-12-02stmhal/sdcard: Clean/invalidate cache before DMA transfers with SD card.Jean-François Milants
2016-12-01extmod/modframebuf: Optimise fill and fill_rect methods.Damien George
2016-12-01extmod/modframebuf: Add back legacy FrameBuffer1 "class".Damien George
2016-12-01drivers/display/ssd1306.py: Update to use FrameBuffer not FrameBuffer1Radomir Dopieralski
2016-12-01extmod/modframebuf: Make FrameBuffer handle 16bit depth.Radomir Dopieralski
2016-11-30extmod/modurandom: Allow to build with float disabled.Damien George
2016-11-30stmhal/adc: Make channel "16" always map to the temperature sensor.Damien George
2016-11-30stmhal/adc: Add support for F767 MCU.Damien George
2016-11-30stmhal/adc: Add ADCAll.read_vref method, returning "3.3v" value.Damien George
2016-11-30stmhal/adc: Make ADCAll.read_core_temp return accurate float value.Damien George
2016-11-30stmhal/adc: Provide more accurate measure of VBAT and VREFINT.Damien George
2016-11-30zephyr/zephyr_getchar: Update to Zephyr 1.6 unified kernel API.Paul Sokolovsky
2016-11-30zephyr: Add .gitignore to ignore Zephyr's "outdir" directory.Paul Sokolovsky
2016-11-30py/asmthumb: Fix build for F7 MCUs after recent code refactoring.Damien George
2016-11-29stmhal/adc: Add "mask" selection parameter to pyb.ADCAll constructor.Damien George
2016-11-28stmhal: Add address parameters to openocd config files.Nicholas Graumann
2016-11-28stmhal: Add OpenOCD configuration for STM32L4.Nicholas Graumann
2016-11-28stmhal: Add back GPIO_BSRRL and GPIO_BSRRH constants to stm module.Damien George
2016-11-28py: Factor out common code from assemblers into asmbase.[ch].Damien George
2016-11-26stmhal: Add support for flash storage on STM32F415.Dave Hylands
2016-11-26tests/basics: Enable tests for list slice getting with 3rd arg.Damien George
2016-11-26tests/basics: Change dict_fromkeys test so it doesn't use generators.Damien George
2016-11-26py/compile: Remove comment about TODO for short circuiting for if-stmt.Damien George
2016-11-26tests/basics: Add tests for if-expressions.Damien George
2016-11-26tests/basics: Add test for dict.fromkeys where arg is a generator.Damien George
2016-11-25stmhal/machine_i2c: Provide HW implementation of I2C peripherals for F4.Damien George
2016-11-25stmhal/i2c: Expose the pyb_i2c_obj_t struct and some relevant functions.Damien George
2016-11-25stmhal/i2c: Add support for I2C4 hardware block on F7 MCUs.Damien George
2016-11-24stmhal: Add beginnings of port-specific machine.I2C implementation.Damien George
2016-11-24extmod/machine_i2c: Add hook to constructor to call port-specific code.Damien George
2016-11-24extmod/machine_i2c: Expose soft I2C obj and readfrom/writeto funcs.Damien George
2016-11-23extmod/machine_i2c: Remove trivial function wrappers.Damien George
2016-11-23extmod/machine_i2c: Add 'stop' argument to i2c readfrom/writeto meths.Damien George
2016-11-23extmod/machine_i2c: Make i2c.write[to] methods return num of ACKs recvd.Damien George
2016-11-23extmod/machine_i2c: Add 'nack' argument to i2c.readinto.Damien George
2016-11-23extmod/machine_i2c: Make C-level functions return -errno on I2C error.Damien George
2016-11-23extmod/machine_i2c: Remove unneeded i2c_write_mem/i2c_read_mem funcs.Damien George
2016-11-23extmod/machine_i2c: Rewrite mem xfer funcs in terms of C-level protocol.Damien George
2016-11-23extmod/machine_i2c: Rewrite i2c.scan in terms of C-level protocol.Damien George
2016-11-23extmod/machine_i2c: Add argument to C funcs to control stop generation.Damien George
2016-11-23extmod/machine_i2c: Add a C-level I2C-protocol, refactoring soft I2C.Damien George