aboutsummaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2019-11-06drivers/sdcard: Raise exception on timeout of readinto.Jeremy Herbert
2019-11-05esp32: Remove unused "esponewire.c" in favour of extmod/modonewire.Andreas Motl
2019-11-05stm32/mpthreadport: Include runtime.h to get defn of mp_raise_msg.Damien George
2019-11-05all: Convert nlr_raise(mp_obj_new_exception_msg(x)) to mp_raise_msg(x).Damien George
2019-11-04py/modsys: Report .mpy version in sys.implementation.Damien George
2019-11-04py/persistentcode: Move declarations for .mpy header from .c to .h file.Damien George
2019-11-04py/objgenerator: Allow pend_throw to an unstarted generator.Jim Mussared
2019-11-04py/objgenerator: Remove globals from mp_obj_gen_instance_t.Jim Mussared
2019-11-04esp32/Makefile: Add correct arch to MPY_CROSS_FLAGS for native code.Damien George
2019-11-04tools/mpy-tool.py: Use "@progbits #" attribute for native xtensa code.Damien George
2019-11-01py/nativeglue: Remove unused mp_obj_new_cell from mp_fun_table.Damien George
2019-11-01extmod/modbtree: Make FILEVTABLE const to put it in ROM.Damien George
2019-11-01stm32/boards: Enable support for bluetooth on WB55 boards.Damien George
2019-11-01stm32: Add support for RF coprocessor on WB55 MCUs.Damien George
2019-11-01extmod/nimble: Factor out stm32-specific HCI UART RX/TX code.Damien George
2019-11-01extmod/nimble: Remove unneeded nimble_sprintf wrapper function.Damien George
2019-10-31stm32: Add machine.Timer with soft timer implementation.Damien George
2019-10-31stm32: Add soft timer implementation, using SysTick at 1ms resolution.Damien George
2019-10-31tests/extmod: Add test for ussl when passing in key/cert params.Damien George
2019-10-31extmod/modussl_mbedtls: Check for invalid key/cert data.Damien George
2019-10-31extmod/modussl_mbedtls: Fix getpeercert to return None if no cert avail.Damien George
2019-10-31extmod/modlwip: Unconditionally return POLLHUP/POLLERR when polling.Damien George
2019-10-31extmod/modlwip: Make socket poll return POLLNVAL in case of bad file.Damien George
2019-10-31py/stream.h: Add MP_STREAM_POLL_NVAL constant.Damien George
2019-10-31extmod/modlwip: Unconditionally return POLLHUP when polling new socket.Damien George
2019-10-31stm32/timer: Fix Timer.freq() calc so mult doesn't overflow uint32_t.Damien George
2019-10-30lib/libc/string0: Add simple implementations of strspn and strcspn.Damien George
2019-10-30extmod/vfs_lfs: Allow compiling in VfsLfs1 and VfsLfs2 separately.Damien George
2019-10-29py/runtime: Reorder some binary ops so they don't require conditionals.Damien George
2019-10-29examples/bluetooth/ble_uart_peripheral: Use append mode for RX char.Jim Mussared
2019-10-29docs/library/ubluetooth: Add docs for gatts_set_buffer.Jim Mussared
2019-10-29extmod/modbluetooth: Add gatts_set_buffer.Jim Mussared
2019-10-29zephyr/main: Use mp_stack API instead of local pointer for stack top.Kamil Klimek
2019-10-29examples/embedding: Replace symlink of mpconfigport.h with real file.Damien George
2019-10-29travis: Add job to build and test unix minimal port.Damien George
2019-10-29tests/basics: Split sys.exit test to separate file so it can be skipped.Damien George
2019-10-29tests: Add feature check for uio module and skip corresponding tests.Damien George
2019-10-29tests/basics: Automatically skip tests that use str/bytes modulo-format.Damien George
2019-10-29tests/run-tests: Add misc list of tests that use slice, to skip them.Damien George
2019-10-29tests/basics: Split out specific slice tests to separate files.Damien George
2019-10-29tests: Add feature check for slice and skip corresponding tests.Damien George
2019-10-29tests/basics: Use bytes not bytearray when checking user buffer proto.Damien George
2019-10-29tests/basics: Split out specific bytearray tests to separate files.Damien George
2019-10-29tests: Add feature check for bytearray and skip corresponding tests.Damien George
2019-10-29tests/basics/builtin_dir.py: Look for "version" in dir(sys).Damien George
2019-10-29tests/basics: Use str.format instead of % for formatting messages.Damien George
2019-10-29unix/mphalport.h: Define mp_hal_stdio_poll to dummy because it's unused.Damien George
2019-10-29docs/library: Add documentation for extended block device protocol.Damien George
2019-10-29extmod/vfs: Add MP_BLOCKDEV_IOCTL_BLOCK_ERASE constant.Damien George
2019-10-29extmod/vfs: Rename BP_IOCTL_xxx constants to MP_BLOCKDEV_IOCTL_xxx.Damien George