..
axtls-include
py/py.mk: Build axtls library directly from its source files.
2018-09-08 00:07:23 +10:00
crypto-algorithms
extmod/crypto-algorithms: Add source to header and populate copyright.
2019-08-22 17:20:16 +10:00
lwip-include
all: Unify header guard usage.
2017-07-18 11:57:39 +10:00
nimble
extmod/nimble: Factor out stm32-specific HCI UART RX/TX code.
2019-11-01 12:41:37 +11:00
re1.5
extmod/re1.5: Support escaping within RE classes.
2019-10-18 12:20:32 +11:00
uzlib
extmod/uzlib: Explicitly cast ptr-diff-expr to unsigned.
2019-12-23 00:07:03 +11:00
webrepl
extmod/webrepl: Move webrepl scripts to common place and use manifest.
2019-12-20 12:59:13 +11:00
extmod.mk
extmod: Consolidate FAT FS config to MICROPY_VFS_FAT across all ports.
2019-11-11 11:37:38 +11:00
machine_i2c.c
extmod/machine_i2c: Add i2c.writevto() that can write a vector of bufs.
2019-05-20 15:04:29 +10:00
machine_i2c.h
extmod/machine_i2c: Change C-level API to allow split I2C transactions.
2019-05-20 15:04:29 +10:00
machine_mem.c
all: Remove inclusion of internal py header files.
2017-10-04 12:37:50 +11:00
machine_mem.h
all: Use the name MicroPython consistently in comments
2017-07-31 18:35:40 +10:00
machine_pinbase.c
extmod/machine_pinbase: Put PinBase singleton in ROM.
2017-09-12 16:00:21 +10:00
machine_pinbase.h
all: Unify header guard usage.
2017-07-18 11:57:39 +10:00
machine_pulse.c
esp8266: Provide custom machine_time_pulse_us that feeds soft WDT.
2019-07-01 22:53:00 +10:00
machine_pulse.h
all: Unify header guard usage.
2017-07-18 11:57:39 +10:00
machine_signal.c
extmod/machine_signal: Fix fault when no args are passed to Signal().
2019-04-26 14:47:31 +10:00
machine_signal.h
all: Unify header guard usage.
2017-07-18 11:57:39 +10:00
machine_spi.c
drivers/bus: Pull out software SPI implementation to dedicated driver.
2018-03-10 00:59:43 +11:00
machine_spi.h
drivers/bus: Pull out software SPI implementation to dedicated driver.
2018-03-10 00:59:43 +11:00
misc.h
extmod/uos_dupterm: Add mp_uos_dupterm_poll to poll all dupterms.
2019-07-01 17:10:12 +10:00
modbluetooth.c
extmod: Fix modbluetooth and modwebrepl to build in nanbox mode.
2019-12-27 22:54:53 +11:00
modbluetooth.h
extmod/modbluetooth: Fix func prototype, empty args should be (void).
2019-12-27 23:57:46 +11:00
modbluetooth_nimble.c
extmod/modbluetooth: Add optional 4th arg to gattc_write for write mode.
2019-12-04 23:23:07 +11:00
modbluetooth_nimble.h
stm32: Extract port-specific Nimble implementation.
2019-10-08 14:40:35 +11:00
modbtree.c
extmod: Add dynamic-runtime guards to btree/framebuf/uheapq/ure/uzlib.
2019-12-12 20:15:28 +11:00
modframebuf.c
extmod: Add dynamic-runtime guards to btree/framebuf/uheapq/ure/uzlib.
2019-12-12 20:15:28 +11:00
modlwip.c
extmod/modlwip: Unconditionally return POLLHUP/POLLERR when polling.
2019-10-31 13:37:51 +11:00
modonewire.c
extmod/modonewire: Fix reset timings to match 1-wire specs.
2018-10-17 15:52:07 +11:00
modubinascii.c
all: Remove inclusion of internal py header files.
2017-10-04 12:37:50 +11:00
modubinascii.h
all: Use the name MicroPython consistently in comments
2017-07-31 18:35:40 +10:00
moducryptolib.c
extmod/moducryptolib: Use "static" not "STATIC" for inline functions.
2019-08-20 15:21:09 +10:00
moductypes.c
all: Convert nlr_raise(mp_obj_new_exception_msg(x)) to mp_raise_msg(x).
2019-11-05 11:35:45 +11:00
moduhashlib.c
extmod/moduhashlib: Include implementation of sha256 only when required.
2019-02-07 23:27:58 +11:00
moduheapq.c
extmod: Add dynamic-runtime guards to btree/framebuf/uheapq/ure/uzlib.
2019-12-12 20:15:28 +11:00
modujson.c
py: Make mp_obj_get_type() return a const ptr to mp_obj_type_t.
2020-01-09 11:25:26 +11:00
modurandom.c
examples/natmod: Add urandom native module example.
2019-12-13 13:33:40 +11:00
modure.c
extmod: Add dynamic-runtime guards to btree/framebuf/uheapq/ure/uzlib.
2019-12-12 20:15:28 +11:00
moduselect.c
various: Add and update my copyright line based on git history.
2019-05-17 18:04:15 +10:00
modussl_axtls.c
py: Introduce MP_ROM_NONE macro for ROM to refer to None object.
2019-12-27 22:51:17 +11:00
modussl_mbedtls.c
py: Introduce MP_ROM_NONE macro for ROM to refer to None object.
2019-12-27 22:51:17 +11:00
modutimeq.c
all: Convert nlr_raise(mp_obj_new_exception_msg(x)) to mp_raise_msg(x).
2019-11-05 11:35:45 +11:00
moduwebsocket.c
extmod/moduwebsocket: Make close_resp static array const to not use RAM.
2019-07-03 12:47:13 +10:00
moduwebsocket.h
extmod/moduwebsocket: Refactor `websocket` to `uwebsocket`.
2019-02-14 00:35:45 +11:00
moduzlib.c
extmod: Add dynamic-runtime guards to btree/framebuf/uheapq/ure/uzlib.
2019-12-12 20:15:28 +11:00
modwebrepl.c
extmod: Fix modbluetooth and modwebrepl to build in nanbox mode.
2019-12-27 22:54:53 +11:00
network_cyw43.c
py: Introduce MP_ROM_NONE macro for ROM to refer to None object.
2019-12-27 22:51:17 +11:00
network_cyw43.h
extmod: Add network-level class binding to cyw43 driver.
2019-06-03 16:47:35 +10:00
uos_dupterm.c
extmod/uos_dupterm: Add mp_uos_dupterm_poll to poll all dupterms.
2019-07-01 17:10:12 +10:00
utime_mphal.c
py,extmod: Some casts and minor refactors to quiet compiler warnings.
2017-07-07 11:32:22 +10:00
utime_mphal.h
all: Unify header guard usage.
2017-07-18 11:57:39 +10:00
vfs.c
py: Introduce MP_ROM_FALSE/MP_ROM_TRUE for ROM to refer to bool objects.
2019-12-27 22:54:20 +11:00
vfs.h
extmod/vfs: Add MP_BLOCKDEV_IOCTL_BLOCK_ERASE constant.
2019-10-29 14:17:29 +11:00
vfs_blockdev.c
extmod/vfs: Rename BP_IOCTL_xxx constants to MP_BLOCKDEV_IOCTL_xxx.
2019-10-29 14:17:29 +11:00
vfs_fat.c
extmod/vfs: Rename BP_IOCTL_xxx constants to MP_BLOCKDEV_IOCTL_xxx.
2019-10-29 14:17:29 +11:00
vfs_fat.h
extmod: Factor out block-device struct to make independent of fatfs.
2019-10-29 12:12:37 +11:00
vfs_fat_diskio.c
extmod/vfs: Rename BP_IOCTL_xxx constants to MP_BLOCKDEV_IOCTL_xxx.
2019-10-29 14:17:29 +11:00
vfs_fat_file.c
py: Introduce MP_ROM_NONE macro for ROM to refer to None object.
2019-12-27 22:51:17 +11:00
vfs_lfs.c
extmod/vfs_lfs: Fix bug when passing no args to constructor and mkfs.
2019-11-26 00:08:57 +11:00
vfs_lfs.h
extmod: Add VFS littlefs bindings.
2019-10-29 14:17:29 +11:00
vfs_lfsx.c
extmod/vfs_lfs: Pass flag along to ioctl when init'ing bdev for lfs.
2019-11-26 00:07:42 +11:00
vfs_lfsx_file.c
extmod: Add VFS littlefs bindings.
2019-10-29 14:17:29 +11:00
vfs_posix.c
extmod/vfs_posix: Include stdio.h for declaration of function 'rename'.
2019-09-23 15:14:42 +10:00
vfs_posix.h
extmod/vfs: Introduce a C-level VFS protocol, with fast import_stat.
2018-06-06 14:33:42 +10:00
vfs_posix_file.c
py: Introduce MP_ROM_NONE macro for ROM to refer to None object.
2019-12-27 22:51:17 +11:00
vfs_reader.c
py/objstr: Remove "make_qstr_if_not_already" arg from mp_obj_new_str.
2017-11-16 13:17:51 +11:00
virtpin.c
all: Rename mp_obj_type_t::stream_p to protocol.
2016-06-18 18:44:57 +03:00
virtpin.h
all: Unify header guard usage.
2017-07-18 11:57:39 +10:00