aboutsummaryrefslogtreecommitdiff
path: root/ports
AgeCommit message (Expand)Author
2018-03-27stm32/system_stm32: Set VTOR pointer from TEXT0_ADDR.Damien George
2018-03-27stm32/boards: Add common_bl.ld for boards that need a bootloader.Damien George
2018-03-27stm32/boards: Add common_basic.ld for a board to have a single section.Damien George
2018-03-27stm32/Makefile: Allow a board to config either 1 or 2 firmware sections.Damien George
2018-03-27stm32/Makefile: Rename FLASH_ADDR/TEXT_ADDR to TEXT0_ADDR/TEXT1_ADDR.Damien George
2018-03-27stm32/boards: Allow boards to have finer control over the linker script.Damien George
2018-03-27stm32/*bdev.c: Eliminate dependency on sys_tick_has_passed.Damien George
2018-03-27stm32/qspi: Don't take the address of pin configuration identifiers.Damien George
2018-03-27stm32: Consolidate include of genhdr/pins.h to single location in pin.h.Damien George
2018-03-26stm32/Makefile: Re-enable strict aliasing optimisation for ST HAL files.Damien George
2018-03-20stm32/boards/NUCLEO_H743ZI: Disable uSD transceiver.iabdalkader
2018-03-20stm32/boards/NUCLEO_H743ZI: Enable hardware I2C support.iabdalkader
2018-03-20stm32/i2c: Add H7 I2C timing configurations.iabdalkader
2018-03-20stm32/dma: Enable H7 DMA descriptors.iabdalkader
2018-03-19stm32/can: Add "list" param to CAN.recv() to receive data inplace.Damien George
2018-03-17stm32: Use STM32xx macros instead of MCU_SERIES_xx to select MCU type.Damien George
2018-03-16stm32/can: Use explicit byte extraction instead of casting to word ptr.Damien George
2018-03-16stm32/can: Add CAN.info() method to retrieve error and tx/rx buf info.Damien George
2018-03-16stm32/can: Add CAN.state() method to get the state of the controller.Damien George
2018-03-15stm32/can: Add CAN.restart() method so controller can leave bus-off.Damien George
2018-03-15stm32/can: Add "auto_restart" option to constructor and init() method.Damien George
2018-03-15stm32/can: Use enums to index keyword arguments, for clarity.Damien George
2018-03-15stm32/can: Improve can.recv() so it checks for events, eg ctrl-C.Damien George
2018-03-15stm32/boards/STM32L476DISC: Enable CAN peripheral.Damien George
2018-03-14esp32/machine_uart: Return None from UART read if no data is available.Damien George
2018-03-12esp8266/esp_mphal.h: Fix I2C glitching by using input mode for od_high.Damien George
2018-03-11stm32/qspi: Do an explicit read instead of using memory-mapped mode.Damien George
2018-03-10stm32/storage: Provide support for a second block device.Damien George
2018-03-10stm32/boards/STM32L476DISC: Provide SPI-flash bdev config.Damien George
2018-03-10stm32/storage: Introduce MICROPY_HW_ENABLE_INTERNAL_FLASH_STORAGE cfg.Damien George
2018-03-10stm32/storage: Remove all SPI-flash bdev cfg, to be provided per board.Damien George
2018-03-10stm32/storage: Make spi_bdev interface take a data pointer as first arg.Damien George
2018-03-10stm32/storage: Merge all misc block-dev funcs into a single ioctl func.Damien George
2018-03-10drivers/memory/spiflash: Change to use low-level SPI object not uPy one.Damien George
2018-03-10drivers/bus: Pull out software SPI implementation to dedicated driver.Damien George
2018-03-09stm32/system_stm32: Fix CONFIG_RCC_CR_2ND value to use bitwise or.iabdalkader
2018-03-09stm32/usbd_conf.h: Add include of stdint.h to fix compilation issues.Tom Collins
2018-03-09stm32: Remove startup_stm32.S, now provided in boards/ for each MCU.Damien George
2018-03-09stm32/Makefile: Use separate startup file for each MCU series.iabdalkader
2018-03-09stm32/boards: Add startup_stm32l4.s for L4 series specific startup.iabdalkader
2018-03-09stm32/boards: Add startup_stm32f4.s for F4 series specific startup.iabdalkader
2018-03-09stm32/boards: Add startup_stm32f7.s for F7 series specific startup.iabdalkader
2018-03-09stm32/boards: Add startup_stm32h7.s for H7 series specific startup.iabdalkader
2018-03-09stm32/main: Enable D2 SRAM1/2/3 clocks on H7 MCUs.iabdalkader
2018-03-09stm32/mpconfigboard_common: Add STM32H7 common configuration.iabdalkader
2018-03-09stm32/extint: Add EXTI support for H7 MCUs.iabdalkader
2018-03-09stm32/rtc: Add RTC support for H7 MCUs.iabdalkader
2018-03-09stm32/dma: Add DMA support for H7 MCUs.iabdalkader
2018-03-09stm32/stm32_it: Add support for H7 MCUs.iabdalkader
2018-03-09stm32/usbd_conf: Add USB support for H7 MCUs.iabdalkader