aboutsummaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2018-09-20py/objgenerator: Implement PEP479, StopIteration convs to RuntimeError.Damien George
2018-09-20stm32: Add support for STM32F765xx MCUs.Andrew Leech
2018-09-20py/modbuiltins: Make oct/hex work when !MICROPY_PY_BUILTINS_STR_OP_MODULOPaul Sokolovsky
2018-09-20py/objstr: Make % (__mod__) formatting operator configurable.Paul Sokolovsky
2018-09-20py: Shorten error messages by using contractions and some rewording.Damien George
2018-09-20py/objtype: Clarify comment about configuring inplace op methods.Damien George
2018-09-20stm32/boards/STM32F769DISC: Add optional support for external SDRAM.Damien George
2018-09-20stm32/sdram: Add support for 32-bit wide data bus and 256MB in MPU cfg.Damien George
2018-09-18drivers/display/lcd160cr.py: In fast_spi, send command before flushing.Damien George
2018-09-16stm32/dma: Get DMA working on F0 MCUs.Damien George
2018-09-16py/asmthumb: Detect presence of I-cache using CMSIS macro.Damien George
2018-09-16py/asmxtensa: Make indirect calls using func table, not raw pointers.Damien George
2018-09-15py/emitnative: Make viper funcs run with their correct globals context.Damien George
2018-09-15py/emitnative: Use macros instead of raw offsetof for slot locations.Damien George
2018-09-15py/emitnative: Support arbitrary number of arguments to viper functions.Damien George
2018-09-15py: Make viper functions have the same entry signature as native.Damien George
2018-09-15py/emitnative: Reuse mp_native_type_from_qstr when searching for a cast.Damien George
2018-09-15py/compile: Factor code that compiles viper type annotations.Damien George
2018-09-15py/compile: Merge viper annotation and normal param compilation stages.Damien George
2018-09-15py/emit: Completely remove set_native_type, arg type is set in compiler.Damien George
2018-09-15py/emit: Remove need to call set_native_type to set viper return type.Damien George
2018-09-15py/emit: Remove need to call set_native_type to set native/viper mode.Damien George
2018-09-15py/emit: Move MP_EMIT_OPT_xxx enums from compile.h to emitglue.h.Damien George
2018-09-14py/{asmx86,asmx64}: Extend test_r8_with_r8 to accept all 8 lower regs.Damien George
2018-09-14py/asmx64: Fix bug in assembler when creating disp with r13 and 0 offsetDamien George
2018-09-14py: Optimise call to mp_arg_check_num by compressing fun signature.Damien George
2018-09-14examples/embedding: Fix hard-coded MP_QSTR_ value.Damien George
2018-09-14examples/embedding: Fix reference to freed memory, lexer src name.Dave Hylands
2018-09-14esp32: Fix int overflow in machine.sleep/deepsleep functions.Siarhei Farbotka
2018-09-14unix/modos: Include extmod/vfs.h for MP_S_IFDIR, etc.Paul Sokolovsky
2018-09-14zephyr/CMakeLists: Update for latest Zephyr CMake usage refactorings.Paul Sokolovsky
2018-09-14zephyr/prj_base.conf: Update for net_config subsys refactor.Paul Sokolovsky
2018-09-13py: Fix native functions so they run with their correct globals context.Damien George
2018-09-12stm32/sdcard: Fully reset SDMMC periph before calling HAL DMA functions.Damien George
2018-09-12unix/mpconfigport_coverage.h: Enable uhashlib.md5.Damien George
2018-09-12extmod/moduhashlib: Add md5 implementation using mbedtls.Damien George
2018-09-12extmod/moduhashlib: Use newer message digest API for mbedtls >=2.7.0.Damien George
2018-09-12stm32/flashbdev: Protect flash writes from cache flushing and USB MSC.Damien George
2018-09-12stm32: Change flash IRQ priority from 2 to 6 to prevent preemption.Damien George
2018-09-11stm32/spi: Be sure to set all SPI config values in SPI proto init.Damien George
2018-09-11stm32/sdcard: Move temporary DMA state from BSS to stack.Damien George
2018-09-11stm32/sdcard: Use only a single DMA stream for both SDIO TX/RX.Damien George
2018-09-11stm32/dma: Reinitialise the DMA if the direction changed on the channel.Damien George
2018-09-11stm32/dma: Pass DMA direction as parameter to dma_init not in cfg structDamien George
2018-09-11stm32: For MCUs that have PLLSAI allow to set SYSCLK at 2MHz increments.Damien George
2018-09-11py/emitnative: Fix try-finally in outer scope, so finally is cancelled.Damien George
2018-09-11stm32/boards/STM32L476DISC: Enable external RTC xtal to get RTC working.roland
2018-09-11stm32/Makefile: Allow external BOARD_DIR directory to be specified.Andrew Leech
2018-09-11py/objarray: bytearray: Allow 2nd/3rd arg to constructor.Paul Sokolovsky
2018-09-11tests/extmod/uhashlib_md5: Add coverage tests for MD5 algorithm.Paul Sokolovsky