aboutsummaryrefslogtreecommitdiff
path: root/stmhal/sdcard.c
AgeCommit message (Expand)Author
2017-09-06ports: Make new ports/ sub-directory and move all ports there.Damien George
2017-08-29stmhal: Update to new STM Cube HAL library.Damien George
2017-07-31all: Use the name MicroPython consistently in commentsAlexander Steffen
2017-07-19all: Remove trailing spaces, per coding conventions.Damien George
2017-06-27stmhal/sdcard: Allow a board to customise the SDIO pins.Benjamin Weps
2017-05-06stmhal: Convert all module and method tables to use MP_ROM macros.Damien George
2017-03-30stmhal/sdcard: Add support for SDMMC2 on F7 MCUs.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-01-31stmhal: On boot, mount all available partitions of the SD card.Damien George
2017-01-30stmhal: Set the FatFs partition number when initialising VFS object.Damien George
2017-01-30extmod: Merge old fsusermount.h header into vfs.h and vfs_fat.h.Damien George
2017-01-27stmhal: Convert to use VFS sub-system and new ooFatFs component.Damien George
2016-12-22stmhal/sdcard: Use mp_hal_pin_config function instead of HAL_GPIO_Init.Damien George
2016-12-02stmhal/sdcard: Clean/invalidate cache before DMA transfers with SD card.Jean-François Milants
2016-11-07stmhal: enable SD power save (disable CLK on idle)Ryan Shaw
2016-06-29stmhal: Enable SD card on L4 MCUs.dpslwk
2016-05-13stmhal/sdcard: Allow to do unaligned read-from/write-to SD card.Damien George
2016-05-06stmhal/sdcard: Fix initialisation of DMA TX so that writes work.Damien George
2016-05-05stmhal: L4: Adapt DMA to be able to support STM32L4 MCU series.Tobias Badertscher
2016-02-10extmod/fsusermount: Move BP_IOCTL_xxx constants to fsusermount.h.Damien George
2016-02-10extmod/fsusermount: Support mounting of multiple block devices.Damien George
2016-02-10stmhal: Expose flash and SD card as proper objects with block protocol.Damien George
2015-12-22stmhal: Add pyb.irq_stats() to get statistics about IRQ calls.Damien George
2015-12-04stmhal: Protect SD card DMA transactions against USB MSC contention.Damien George
2015-11-24stmhal: Save RAM and ROM by making SD DMA init structure const for tx/rx.Damien George
2015-11-24stmhal: Add dma support for sdcard.Dave Hylands
2015-10-30stmhal: Enable sdcard on STM32F7DISC board.Dave Hylands
2015-10-11py: Rename MP_BOOL() to mp_obj_new_bool() for consistency in naming.Paul Sokolovsky
2015-07-30stmhal: Replace #include "stm32f4xx_hal.h" with #include STM32_HAL_H.Dave Hylands
2015-03-20stmhal: Remove some unnecessary declarations, purely for cleanup.Damien George
2015-02-27py: Use m_{new,renew,del} consistently.Damien George
2015-01-01stmhal: Prefix includes with py/; remove need for -I../py.Damien George
2014-10-20stmhal: Add retry to SD card init.Damien George
2014-09-15stmhal: Change 64-bit arithmetic to 32-bit for SD card block addressing.Damien George
2014-09-15stmhal/sdcard.c: add pyb.SD.writeFelix Domke
2014-08-25Fix sdcard_power_on to not do anything if the card is already powered on.Dave Hylands
2014-07-07stmhal: Protect SD_WriteBlocks by IRQ disable/enable pair.Damien George
2014-07-06Disable IRQs around sdcard reads.Dave Hylands
2014-06-28stmhal: Include mpconfig.h before all other includes.Paul Sokolovsky
2014-05-03Add license header to (almost) all files.Damien George
2014-04-17build: Simplify build directory layout by putting all headers in genhdr.Damien George
2014-03-30Merge map.h into obj.h.Damien George
2014-03-30Rename rt_* to mp_*.Damien George
2014-03-30stmhal: Unify naming of HW config; make SD detect configurable.Damien George
2014-03-26Remove mp_obj_type_t.methods entry and use .locals_dict instead.Damien George
2014-03-26Change mp_method_t.name from const char * to qstr.Damien George
2014-03-17stmhal: Add SD card support.Damien George