summaryrefslogtreecommitdiff
path: root/stmhal
AgeCommit message (Expand)Author
2017-04-01all: Move BYTES_PER_WORD definition from ports to py/mpconfig.hDamien George
2017-03-31all: Use full path name when including mp-readline/timeutils/netutils.Damien George
2017-03-31stmhal/i2c: Clean the cache so that I2C DMA works on F7 MCUs.Damien George
2017-03-31stmhal: Move L4/F7 I2C timing constants from mpconfigboard.h to i2c.c.Damien George
2017-03-30stmhal/dma: Don't include SDMMC2 struct if SDMMC2 is not available.Damien George
2017-03-30stmhal/boards: Remove F769 alt function table, it's same as for F767.Damien George
2017-03-30stmhal/boards/STM32F769DISC: Fix user switch pin, and document stlink.Damien George
2017-03-30stmhal/boards/STM32F769DISC: Get SD card working by using SDMMC2.Damien George
2017-03-30stmhal/boards: Update F76x alternate function table to add SDMMC2.Damien George
2017-03-30stmhal/sdcard: Add support for SDMMC2 on F7 MCUs.Damien George
2017-03-30stmhal: Support SDMMC alternate functions in pin generation.Damien George
2017-03-29stmhal/spi: Increase SPI transfer timeout, proportional to num bytes.Damien George
2017-03-29stmhal: Update for changes to mp_obj_str_get_data.Damien George
2017-03-29stmhal: Update to use size_t for tuple/list accessors.Damien George
2017-03-28stmhal/dma: Fix reinitialisation of DMA on F7 MCUs, following F4.Damien George
2017-03-28stmhal/hal: For F7 MCUs, expose DMA_CalcBaseAndBitshift function.Damien George
2017-03-28stmhal/spi: Clean and/or invalidate D-cache before SPI DMA transfers.Damien George
2017-03-28stmhal/board: Fix existing and add more pin defs for NUCLEO_F767ZI.Damien George
2017-03-28stmhal/boards: Fix alt-func config for PA5 of STM32F767.Damien George
2017-03-24py/modbuiltins: For round() builtin use nearbyint instead of round.Damien George
2017-03-23all/Makefile: Remove -ansi from GCC flags, its ignored anyway.Krzysztof Blazewicz
2017-03-22stmhal/systick: Make mp_hal_delay_ms release the GIL when sleeping.Damien George
2017-03-22stmhal/pybthread: Allow interrupts to work during lock/unlock of mutex.Damien George
2017-03-22stmhal/irq: Shift IRQ priorities of TIM and EXTINT to be above PENDSV.Damien George
2017-03-20stmhal/pendsv: Disable interrupts during a thread switch.Damien George
2017-03-20stmhal: Enable micropython.schedule().Damien George
2017-03-10extmod/vfs_fat: Remove obsolete and unused str/len members.Damien George
2017-03-10stmhal/main: Allocate flash's VFS struct on the heap to trace root ptrs.Damien George
2017-03-10stmhal/mphalport: Get ticks_cpu() working on F7 MCUs.Damien George
2017-03-02stmhal/modnwcc3k: Add include for mp_hal_delay_ms.Damien George
2017-03-02stmhal/modpyb: Use utime ticks ms/us functions instead of custom ones.Damien George
2017-03-02stmhal: Rename sys_tick ticks/delay functions to corresp. mp_hal ones.Damien George
2017-03-02stmhal: Use mp_hal_delay_ms instead of HAL_Delay.Damien George
2017-02-17stmhal/main: Remove unnecessary header includes.Damien George
2017-02-16py: Add iter_buf to getiter type method.Damien George
2017-02-15stmhal: Use generic interrupt char code.Damien George
2017-02-15stmhal: Implement a proper thread scheduler.Damien George
2017-02-13stmhal/boards: For STM32F411DISC, change I2C pin according to datasheet.Johannes Wågen
2017-02-08stmhal/Makefile: Drop use of -mabi=aapcs-linux; link libgcc by default.Damien George
2017-02-07stmhal: Add ability to skip booting from SD card via /flash/SKIPSD file.Damien George
2017-02-06stmhal: Use MICROPY_EVENT_POLL_HOOK instead of __WFI where appropriate.Damien George
2017-02-06stmhal: Add pyb.fault_debug() function, to control hard-fault behaviour.Damien George
2017-02-06stmhal: On HardFault, print stack pointer and do a stack dump.Damien George
2017-02-03stmhal/mpconfigport.h: Enable MICROPY_PY_BUILTINS_POW3 option.Damien George
2017-01-31stmhal: Fix build issue when MICROPY_PY_THREAD is disabled.Damien George
2017-01-31stmhal/main: Use _estack value to initialise stack extents.Damien George
2017-01-31stmhal: Initial implementation of multithreading, currently disabled.Damien George
2017-01-31stmhal/pendsv: Fill in comments about what the stack contains.Damien George
2017-01-31stmhal/main: Guard init_sdcard_fs with MICROPY_HW_HAS_SDCARD.Damien George
2017-01-31stmhal/modmachine: Add machine.Signal type.Damien George