index
:
openmano-mpy
master
MicroPython source and hardware configuration for OpenMano
Damien George
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
Age
Commit message (
Expand
)
Author
2018-03-01
py/formatfloat: Fix rounding of %f format with edge-case FP values.
Damien George
2018-02-28
tests/extmod/vfs_fat_fileio1: Add test for calling file obj finaliser.
Damien George
2018-02-28
extmod/vfs_fat_diskio: Use a C-stack-allocated bytearray for block buf.
Damien George
2018-02-27
tests/basics/gc1: Add test which triggers GC threshold.
Damien George
2018-02-27
tests/unix: Add coverage test for VM executing invalid bytecode.
Damien George
2018-02-27
py/vm: Simplify handling of special-case STOP_ITERATION in yield from.
Damien George
2018-02-27
py/vm: Fix case of handling raised StopIteration within yield from.
Damien George
2018-02-26
esp8266/modnetwork: Implement WLAN.status('rssi') for STA interface.
Damien George
2018-02-26
esp8266/uart: Allow to compile with event-driven REPL.
Damien George
2018-02-26
py/mpstate.h: Add repl_line state for MICROPY_REPL_EVENT_DRIVEN.
Damien George
2018-02-26
tests/float: Adjust float-parsing tests to pass with only a small error.
Damien George
2018-02-26
tests/extmod/uzlib_decompress: Add uzlib tests to improve coverage.
Damien George
2018-02-26
tests/extmod/vfs_fat_fileio1: Add test for failing alloc with finaliser.
Damien George
2018-02-25
tests/unix: Add coverage tests for mpz_set_from_float, mpz_mul_inpl.
Damien George
2018-02-25
py/mpz: In mpz_clone, remove unused check for NULL dig.
Damien George
2018-02-24
tests/stress: Add test to create a dict beyond "maximum" rehash size.
Damien George
2018-02-24
tests/basics: Add test for calling a subclass of a native class.
Damien George
2018-02-24
py/asm*.c: Remove unnecessary check for num_locals<0 in asm entry func.
Damien George
2018-02-24
py/compile: Adjust c_assign_atom_expr() to use return instead of goto.
Damien George
2018-02-23
extmod/vfs_fat: Remove declaration of mp_builtin_open_obj.
Damien George
2018-02-23
extmod/vfs_fat: Make fat_vfs_open_obj wrapper public, not its function.
Damien George
2018-02-23
extmod/vfs_fat: Merge remaining vfs_fat_misc.c code into vfs_fat.c.
Damien George
2018-02-23
extmod/vfs_fat: Move ilistdir implementation from misc to main file.
Damien George
2018-02-23
stm32: Move MCU-specific cfg from mphalport.h to mpconfigboard_common.h.
Damien George
2018-02-23
stm32/flash: Use FLASH_TYPEPROGRAM_WORD to support newer HALs.
Damien George
2018-02-23
stm32: Use "GEN" for describing files generated in the build.
Damien George
2018-02-23
examples/embedding: Don't prefix $(MPTOP) to ports/unix source files.
Damien George
2018-02-22
examples/embedding: Update broken paths to use correct $(MPTOP).
talljosh
2018-02-22
stm32: Add board config option to enable/disable the ADC.
Damien George
2018-02-22
minimal/Makefile: Explicitly include lib/utils/printf.c in build.
Damien George
2018-02-22
py: Use "GEN" consistently for describing files generated in the build.
Damien George
2018-02-22
py/py.mk: Remove .. path component from list of extmod files.
Damien George
2018-02-22
ports/{bare-arm,minimal}/Makefile: Only build with core source files.
Damien George
2018-02-22
py/py.mk: Split list of uPy sources into core and extmod files.
Damien George
2018-02-21
py/objdeque: Use m_new0 when allocating items to avoid need to clear.
Damien George
2018-02-21
py/objdeque: Protect against negative maxlen in deque constructor.
Damien George
2018-02-21
tests/basics: Add tests to improve coverage of py/objdeque.c.
Damien George
2018-02-21
tests/basics/deque*: Tests for ucollections.deque.
Paul Sokolovsky
2018-02-21
ports: Enable ucollections.deque on relevant ports.
Damien George
2018-02-21
py/objdeque: Allow to compile without warnings by disabling deque_clear.
Damien George
2018-02-21
py/objdeque: Implement ucollections.deque type with fixed size.
Paul Sokolovsky
2018-02-21
esp32/modsocket: Allow getaddrinfo() to take up to 6 args.
Damien George
2018-02-21
esp32/main: Allocate the uPy heap via malloc instead of on the bss.
Damien George
2018-02-21
esp32: Update to the latest ESP IDF.
Damien George
2018-02-21
py/objint: Use MP_OBJ_IS_STR_OR_BYTES macro instead of 2 separate ones.
Damien George
2018-02-20
py/objstr: Remove unnecessary check for positive splits variable.
Damien George
2018-02-20
py/modmicropython: Allow to have stack_use() func without mem_info().
Damien George
2018-02-20
py/builtinimport: Add compile-time option to disable external imports.
Damien George
2018-02-20
py/objmodule: Factor common code for calling __init__ on builtin module.
Damien George
2018-02-19
esp32/modnetwork: Implement dhcp_hostname for WLAN.config().
Damien George
[next]