aboutsummaryrefslogtreecommitdiff
path: root/stmhal
AgeCommit message (Expand)Author
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
2017-01-31stmhal/pin: Add C-level pin ioctl method.Damien George
2017-01-31stmhal/main: Put /sd directory before /flash in sys.path.Damien George
2017-01-31stmhal: On boot, mount all available partitions of the SD card.Damien George
2017-01-31stmhal/README: Add paragraph about building mpy-cross.Damien George
2017-01-30stmhal: Fix stack pointer initialisation for F411 and F429 boards.Damien George
2017-01-30stmhal: Set the FatFs partition number when initialising VFS object.Damien George
2017-01-30stmhal: Use LED constants from PYBv4 onwards.Damien George
2017-01-30extmod: Merge old fsusermount.h header into vfs.h and vfs_fat.h.Damien George
2017-01-30extmod/vfs_fat: Remove MICROPY_FATFS_OO config option.Damien George
2017-01-29stmhal/moduos: Remove duplicated chdir.Damien George
2017-01-29stmhal: Fix name of automatically created boot.py.Damien George
2017-01-27stmhal: Convert to use VFS sub-system and new ooFatFs component.Damien George
2017-01-27stmhal/usbd_msc_storage: Use storage functions instead of disk ones.Damien George
2017-01-27extmod/vfs: Add ability for VFS sub-system to import using VfsFat.Damien George
2017-01-27extmod: Rename vfs_fat_file.h to vfs_fat.h.Damien George
2017-01-24stmhal/mpconfigport.h: Reorganise the config options into groups.Damien George
2017-01-24stmhal/boards/STM32L476DISC: Use external SPI flash for filesystem.Damien George
2017-01-24stmhal: Add ability to have filesystem stored on external SPI flash.Damien George
2017-01-24stmhal: Fix examples in openocd configs to include addresses.Pavol Rusnak
2017-01-23stmhal: Add default frozen-bytecode directory and link lcd160cr driver.Damien George
2017-01-22stmhal: Enable help('modules') feature.Damien George
2017-01-22stmhal: Convert to use builtin help function.Damien George
2017-01-19stmhal: Implement SNAK/CNAK mechanism for USB HID receive.Pavol Rusnak
2017-01-19stmhal: Implement ioctl for USB HID read.Pavol Rusnak
2017-01-19stmhal: Fix USB HID receive not receiving the first packet.Pavol Rusnak
2017-01-12stmhal: fix wrong usage of gcc -print-libgcc-file-namePavol Rusnak