aboutsummaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2020-02-20unix/mphalport.h: Fix build when MICROPY_USE_READLINE=0.Damien George
2020-02-20esp32: Move to IDF 4.0 release version.Jim Mussared
2020-02-20unix/mpthreadport: Fix Mac build by using SIGUSR1 if SIGRTMIN not avail.David Lechner
2020-02-18py/objexcept: Rename mp_obj_new_exception_msg_varg2 to ..._vlist.Damien George
2020-02-18extmod/modbluetooth_nimble: Fix wrong offset used for descriptor flags.Jim Mussared
2020-02-18extmod/modbluetooth.h: Fix typo in comment about registering services.Jim Mussared
2020-02-18stm32/sdram: Fix compile issue from unused sdram startup test flag.Andrew Leech
2020-02-18extmod/modbluetooth: Implement config getter for BLE rxbuf size.Thomas Friebel
2020-02-18unix/mpthreadport: Use SIGRTMIN+5 instead of SIGUSR1 for thread-GC.David Lechner
2020-02-18py: Factor out definition of mp_float_union_t to one location.Damien George
2020-02-18nrf: Use MICROPY_HW_ENABLE_RNG instead of MICROPY_PY_RANDOM_HW_RNG.Damien George
2020-02-18nrf: Remove custom "random" module and use extmod version instead.Damien George
2020-02-16nrf/drivers/bluetooth: Fix variable initialisation error with older gcc.cccc
2020-02-16unix/Makefile: Allow to install all variants of the executable.David Lechner
2020-02-16unix/variants/standard: Fix role of PREFIX when used to install.David Lechner
2020-02-16drivers/nrf24l01: Change pipe addrs in test to match Arduino addrs.Peter Hinch
2020-02-16unix/Makefile: Remove old variant targets that are no longer needed.Damien George
2020-02-16docs/develop: Detail how to add symbols to mp_fun_table for native mods.Thorsten von Eicken
2020-02-13py/obj.h: Remove TODO idea comment about truncated mp_map_t.David Lechner
2020-02-13py: Add mp_raise_msg_varg helper and use it where appropriate.Damien George
2020-02-13py: Add mp_raise_type helper macro and use it where appropriate.Damien George
2020-02-11py/objmodule.h: Remove obsolete mp_builtin_module_weak_links_map decl.Damien George
2020-02-11esp32/modsocket: Convert EADDRINUSE error code from lwip return value.Damien George
2020-02-11windows: Improve default search path.stijn
2020-02-11unix/main: Use OS-dependent path separator when searching path.stijn
2020-02-11nrf/drivers: Use mp_raise_msg where appropriate, and shorten exc msgs.Damien George
2020-02-11tests/basics: Add test for equality between tuple and namedtuple.Damien George
2020-02-11tests/basics: Add tests for equality between bool and int/float/complex.Damien George
2020-02-11py: Expand type equality flags to 3 separate ones, fix bool/namedtuple.Damien George
2020-02-11tests/run-tests: Auto-skip extmod/ticks_diff, extmod/time_ms_us tests.Yonatan Goldschmidt
2020-02-10docs/library: Fix framebuf monochrome 1-bit modes, swapping HLSB/HMSB.Peter Hinch
2020-02-07stm32/usbd_cdc_interface: Remove "interrupt_char != -1" check.Damien George
2020-02-07unix, windows: Use mp_keyboard_interrupt instead of custom code.Damien George
2020-02-07py/scheduler: Move clearing of kbd traceback to mp_keyboard_interrupt.Damien George
2020-02-07esp32/uart: Use core-provided mp_keyboard_interrupt, placed in IRAM.Damien George
2020-02-07esp8266: Put mp_keyboard_interrupt in IRAM.Damien George
2020-02-07py/scheduler: Allow a port to specify attrs for mp_keyboard_interrupt.Damien George
2020-02-07tests/unix: Add coverage tests for kbd-intr and scheduler.Damien George
2020-02-07py/scheduler: Move mp_keyboard_interrupt from lib/utils to py core.Damien George
2020-02-07lib/utils/pyexec: Handle pending exceptions after disabling kbd intrs.Damien George
2020-02-07py/scheduler: Add "raise_exc" argument to mp_handle_pending.Damien George
2020-02-07zephyr: Enable littlefs.Maureen Helm
2020-02-07zephyr: Implement block device protocol via zephyr flash map api.Maureen Helm
2020-02-07zephyr: Enable fatfs.Maureen Helm
2020-02-07zephyr: Enable virtual file system and uos module.Maureen Helm
2020-02-07zephyr: Implement block device protocol via zephyr disk access api.Maureen Helm
2020-02-06tests/basics: Move test for "return" outside function to own file.Petr Viktorin
2020-02-06py/compile: Allow 'return' outside function in minimal builds.Petr Viktorin
2020-02-04stm32/usbd_conf: Allow boards to configure USB HS ULPI NXT/DIR pins.Damien George
2020-02-04tests: Move CPy diff test to real test now that subclass equality works.Damien George