aboutsummaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2018-05-21extmod/modlwip: Allow to compile with MICROPY_PY_LWIP disabled.Damien George
2018-05-21stm32/rtc: Don't try to set SubSeconds value on RTC.Damien George
2018-05-21py/gc: When GC threshold is hit don't unnecessarily collect twice.Damien George
2018-05-21minimal/main: Allow to compile without GC enabled.Daniel Shaulov
2018-05-21tests: Add some tests for bigint hash, float hash and float parsing.Damien George
2018-05-21py/objfloat: Fix undefined integer behavior hashing negative zero.Jeff Epler
2018-05-21py/mpz: Avoid undefined behavior at integer overflow in mpz_hash.Jeff Epler
2018-05-21py/objfloat: Fix undefined shifting behavior in high-quality float hash.Jeff Epler
2018-05-21py/parsenum: Avoid undefined behavior parsing floats with large exponents.Jeff Epler
2018-05-21py/parsenum: Use int instead of mp_int_t for parsing float exponent.Damien George
2018-05-21py/emitbc: Avoid undefined behavior calling memset() with NULL 1st arg.Jeff Epler
2018-05-21esp8266: Change UART(0) to attach to REPL via uos.dupterm interface.Damien George
2018-05-21esp32/Makefile: Update to latest ESP IDF version.Damien George
2018-05-21zephyr/Makefile: Add kobj_types_h_target to Z_EXPORTS.Paul Sokolovsky
2018-05-21zephyr: Add prj_disco_l475_iot1.conf with sensor drivers.Paul Sokolovsky
2018-05-21zephyr/prj_base.conf: Enable DHCP and group static IPs together.Paul Sokolovsky
2018-05-21zephyr/modzsensor: Zephyr sensor subsystem bindings.Paul Sokolovsky
2018-05-21zephyr/mpconfigport.h: Enable uhashlib and ubinascii modules.Paul Sokolovsky
2018-05-21zephyr/main: After builtin testsuite, drop to REPL.Paul Sokolovsky
2018-05-21zephyr/README: Hint about existence of qemu_x86_nommu.Paul Sokolovsky
2018-05-18tools/pydfu.py: Fix typo in comments.Keith Wiley
2018-05-18py/compile: Change comment about ITER_BUF_NSLOTS to a static assertion.Damien George
2018-05-18py/misc.h: Add MP_STATIC_ASSERT macro to do static assertions.Damien George
2018-05-18stm32/boards: Add config files for new board, STM32L496GDISC.Tobias Badertscher
2018-05-18stm32/boards: Add board ld and af.csv files for STM32L496 MCU.Tobias Badertscher
2018-05-18stm32: Add support for STM32L496 MCU.Tobias Badertscher
2018-05-18py/repl: Fix handling of unmatched brackets and unfinished quotes.Li Weiwei
2018-05-18py/vm: Improve performance of opcode dispatch when using switch stmt.Damien George
2018-05-18py/vm: Use enum names instead of magic numbers in multi-opcode dispatch.Damien George
2018-05-17esp8266/modmachine: Allow I2C and SPI to be configured out of the build.Damien George
2018-05-17extmod/modlwip: Set POLLHUP flag for sockets that are new.Damien George
2018-05-17esp8266/modnetwork: Raise ValueError when getting invalid WLAN id.Damien George
2018-05-17esp8266/modnetwork: Return empty str for hostname if STA is inactive.Damien George
2018-05-17esp8266/mpconfigport.h: Add some weak links to common Python modules.Damien George
2018-05-17lib/lwip: Update lwIP to v2.0.3, tag STABLE-2_0_3_RELEASE.Damien George
2018-05-17extmod/modlwip: Update to work with lwIP v2.0.Damien George
2018-05-17py/objfun: Fix variable name in DECODE_CODESTATE_SIZE() macro.Tom Collins
2018-05-16py/vm: Adjust #if logic for gil_divisor so braces are balanced.Damien George
2018-05-16stm32: Enable UART7/8 on F4 series that have these peripherals.Ryan Shaw
2018-05-15esp32/modnetwork: Fix STA/AP activate/deactivate for new IDF API.Damien George
2018-05-15py/nlrx86: Use naked attribute on nlr_push for gcc 8.0 and higher.Damien George
2018-05-15stm32/usb: Initialise cdc variable to prevent compiler warnings.Damien George
2018-05-14stm32/usb: Add ability to have 2x VCP interfaces on the one USB device.Damien George
2018-05-14stm32/usb: Change HID report funcs to take HID state, not usbdev state.Damien George
2018-05-14stm32/usb: Change CDC tx/rx funcs to take CDC state, not usbdev state.Damien George
2018-05-14stm32/usb: Make CDC endpoint definitions private to core usbdev driver.Damien George
2018-05-14stm32/usb: Combine HID lower-layer and interface state into one struct.Damien George
2018-05-14stm32/usb: Combine CDC lower-layer and interface state into one struct.Damien George
2018-05-14stm32/usb: Use usbd_cdc_itf_t pointer directly in USB_VCP class.Damien George
2018-05-14stm32/modpyb: Remove unused includes and clean up comments.Damien George