add dma transfer logic

This commit is contained in:
xoviat
2020-12-28 13:13:43 -06:00
parent 12fa5909c3
commit 56db0e1c61
2 changed files with 62 additions and 4 deletions

View File

@ -29,6 +29,8 @@ stm32f446 = ["stm32f4xx-hal/stm32f446"]
stm32f469 = ["stm32f4xx-hal/stm32f469"]
stm32f479 = ["stm32f4xx-hal/stm32f469"]
default = ["stm32f405"]
[dependencies]
embassy = { version = "0.1.0", path = "../embassy" }
@ -37,4 +39,4 @@ log = { version = "0.4.11", optional = true }
cortex-m-rt = "0.6.13"
cortex-m = { version = "0.6.4" }
embedded-hal = { version = "0.2.4" }
stm32f4xx-hal = { version = "0.8.3", features = ["rt"]}
stm32f4xx-hal = { version = "0.8.3", features = ["rt"], git = "https://github.com/stm32-rs/stm32f4xx-hal.git" }