Damien George
0abbafd424
stm32/can: Add "list" param to CAN.recv() to receive data inplace.
This API matches (as close as possible) how other pyb classes allow inplace
operations, such as pyb.SPI.recv(buf).
7 years ago
Damien George
e37b8ba5a5
stm32: Use STM32xx macros instead of MCU_SERIES_xx to select MCU type.
The CMSIS files for the STM32 range provide macros to distinguish between
the different MCU series: STM32F4, STM32F7, STM32H7, STM32L4, etc. Prefer
to use these instead of custom ones.
7 years ago
Damien George
06aa13c350
stm32/can: Use explicit byte extraction instead of casting to word ptr.
Casting the Data array to a uint32_t* leads to strict aliasing errors on
older gcc compilers.
7 years ago
Damien George
a25e6c6b65
stm32/can: Add CAN.info() method to retrieve error and tx/rx buf info.
7 years ago
Damien George
d7e67fb1b4
stm32/can: Add CAN.state() method to get the state of the controller.
This is useful for monitoring errors on the bus and knowing when a restart
is needed.
7 years ago
Damien George
1272c3c65d
stm32/can: Add CAN.restart() method so controller can leave bus-off.
7 years ago
Damien George
823ca03008
stm32/can: Add "auto_restart" option to constructor and init() method.
7 years ago
Damien George
1608c4f5be
stm32/can: Use enums to index keyword arguments, for clarity.
7 years ago
Damien George
2036196d71
stm32/can: Improve can.recv() so it checks for events, eg ctrl-C.
This patch provides a custom (and simple) function to receive data on the
CAN bus, instead of the HAL function. This custom version calls
mp_handle_pending() while waiting for messages, which, among other things,
allows to interrupt the recv() method via KeyboardInterrupt.
7 years ago
Damien George
22a9158ced
stm32/boards/STM32L476DISC: Enable CAN peripheral.
This board allows to test CAN support on the L4 series.
7 years ago
Damien George
1345093401
stm32/qspi: Do an explicit read instead of using memory-mapped mode.
Using an explicit read eliminates the need to invalidate the D-cache after
enabling the memory mapping mode, which takes additional time.
7 years ago
Damien George
0d5bccad11
stm32/storage: Provide support for a second block device.
7 years ago
Damien George
bb3359f357
stm32/boards/STM32L476DISC: Provide SPI-flash bdev config.
This board shows how to configure external SPI flash as the main storage
medium. It uses software SPI.
7 years ago
Damien George
626d6c9756
stm32/storage: Introduce MICROPY_HW_ENABLE_INTERNAL_FLASH_STORAGE cfg.
This config variable controls whether to support storage on the internal
flash of the MCU. It is enabled by default and should be explicitly
disabled by boards that don't want internal flash storage.
7 years ago
Damien George
d1c4bd69df
stm32/storage: Remove all SPI-flash bdev cfg, to be provided per board.
If a board wants to use SPI flash for storage then it must now provide the
configuration itself, using the MICROPY_HW_BDEV_xxx macros.
7 years ago
Damien George
1803e8ef22
stm32/storage: Make spi_bdev interface take a data pointer as first arg.
This allows a board to have multiple instances of the SPI block device.
7 years ago
Damien George
1e4caf0b1e
stm32/storage: Merge all misc block-dev funcs into a single ioctl func.
It makes it cleaner, and simpler to support multiple different block
devices. It also allows to easily extend a given block device with new
ioctl operations.
7 years ago
Damien George
a739b35a96
drivers/memory/spiflash: Change to use low-level SPI object not uPy one.
This patch alters the SPI-flash memory driver so that it uses the new
low-level C SPI protocol (from drivers/bus/spi.h) instead of the uPy SPI
protocol (from extmod/machine_spi.h). This allows the SPI-flash driver to
be used independently from the uPy runtime.
7 years ago
Damien George
58ebeca6a9
drivers/bus: Pull out software SPI implementation to dedicated driver.
This patch takes the software SPI implementation from extmod/machine_spi.c
and moves it to a dedicated file in drivers/bus/softspi.c. This allows the
SPI driver to be used independently of the uPy runtime, making it a more
general component.
7 years ago
iabdalkader
ad2a6e538c
stm32/system_stm32: Fix CONFIG_RCC_CR_2ND value to use bitwise or.
7 years ago
Tom Collins
993f4345c0
stm32/usbd_conf.h: Add include of stdint.h to fix compilation issues.
7 years ago
Damien George
eb56efb434
stm32: Remove startup_stm32.S, now provided in boards/ for each MCU.
7 years ago
iabdalkader
66748aaf60
stm32/Makefile: Use separate startup file for each MCU series.
7 years ago
iabdalkader
88157715db
stm32/boards: Add startup_stm32l4.s for L4 series specific startup.
7 years ago
iabdalkader
e3b81f5712
stm32/boards: Add startup_stm32f4.s for F4 series specific startup.
7 years ago
iabdalkader
d84f1a90cc
stm32/boards: Add startup_stm32f7.s for F7 series specific startup.
7 years ago
iabdalkader
0f5cce7753
stm32/boards: Add startup_stm32h7.s for H7 series specific startup.
7 years ago
iabdalkader
bbf19bb64e
stm32/main: Enable D2 SRAM1/2/3 clocks on H7 MCUs.
7 years ago
iabdalkader
61d463ad07
stm32/mpconfigboard_common: Add STM32H7 common configuration.
7 years ago
iabdalkader
6d3f42f713
stm32/extint: Add EXTI support for H7 MCUs.
7 years ago
iabdalkader
711f817c2a
stm32/rtc: Add RTC support for H7 MCUs.
7 years ago
iabdalkader
0e51e4d139
stm32/dma: Add DMA support for H7 MCUs.
7 years ago
iabdalkader
fe29419c10
stm32/stm32_it: Add support for H7 MCUs.
7 years ago
iabdalkader
2858e0aef8
stm32/usbd_conf: Add USB support for H7 MCUs.
7 years ago
iabdalkader
d151adb791
stm32/modmachine: Support basic H7 MCU features.
7 years ago
iabdalkader
0989e0cdff
stm32/timer: Add Timer support for H7 MCUs.
7 years ago
iabdalkader
b982b95c18
stm32/uart: Add UART support for H7 MCUs.
7 years ago
iabdalkader
a863c60439
stm32/wdt: Add WDT support for H7 MCUs.
7 years ago
iabdalkader
3f86fbcb07
stm32/mphalport: Use GPIO BSRRL/BSRRH registers for H7 MCUs.
7 years ago
iabdalkader
2e93d4167d
stm32/system_stm32: Add H7 MCU system initialisation.
7 years ago
iabdalkader
81f8f5f163
stm32/flash: Add flash support for H7 MCUs.
7 years ago
iabdalkader
b8d09b9bef
stm32/Makefile: Add settings to support H7 MCUs.
7 years ago
iabdalkader
fabfacf3d7
stm32/boards: Add new NUCLEO_H743ZI board configuration files.
USB serial and mass storage works, and the REPL is also available via the
UART through the on-board ST-LINK.
7 years ago
Damien George
8522874167
stm32/boards: Add stm32h743.ld linker script.
7 years ago
Damien George
a3c721772e
stm32/boards: Add stm32h743_af.csv file describing H7 GPIO alt funcs.
7 years ago
sec2
250b24fe36
stm32/boards/NUCLEO_F767ZI: Update pins list to include 3 extra pins.
7 years ago
sec2
bda3620616
stm32/boards/stm32f767_af.csv: Add ADC column to pin capability list.
7 years ago
Damien George
024edafea0
stm32/i2c: On F4 MCUs report the actual I2C SCL frequency.
7 years ago
Damien George
adda38cf76
stm32/qspi: Add hardware QSPI driver, with memory-map capability.
It supports the abstract QSPI protocol defined in drivers/bus/qspi.h.
7 years ago
Damien George
8bd0a51ca9
stm32/spibdev: Convert to use multiple block read/write interface.
The spiflash driver now supports read/write of multiple blocks at a time.
7 years ago