aboutsummaryrefslogtreecommitdiff
path: root/ports/stm32/dma.h
diff options
context:
space:
mode:
authorDamien George2019-07-17 16:33:31 +1000
committerDamien George2019-07-17 16:33:31 +1000
commit59b7166d87b480517ca5905ee2239dc2cace18b9 (patch)
treef12ac9ba2ba1d5159a2c857b3b7da880656ecc9a /ports/stm32/dma.h
parentd42392b9a78d03080d12cc17283c570c3edf8016 (diff)
stm32: Add initial support for STM32WBxx MCUs.
This new series of MCUs is similar to the L4 series with an additional Cortex-M0 coprocessor. The firmware for the wireless stack must be managed separately and MicroPython does not currently interface to it. Supported features so far include: RTC, UART, USB, internal flash filesystem.
Diffstat (limited to 'ports/stm32/dma.h')
-rw-r--r--ports/stm32/dma.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ports/stm32/dma.h b/ports/stm32/dma.h
index 6d07a94ed..5a17276a4 100644
--- a/ports/stm32/dma.h
+++ b/ports/stm32/dma.h
@@ -73,7 +73,7 @@ extern const dma_descr_t dma_I2C_2_RX;
extern const dma_descr_t dma_I2C_1_TX;
extern const dma_descr_t dma_I2C_1_RX;
-#elif defined(STM32L4)
+#elif defined(STM32L4) || defined(STM32WB)
extern const dma_descr_t dma_ADC_1_RX;
extern const dma_descr_t dma_ADC_2_RX;