mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-23 12:12:50 +01:00
35891f4559
* Add ADC example for STM32F411 * Update dependencies * Update RTIC version * example: f411-adc: prefer text over picture * example: f411-adc: nit: typo --------- Co-authored-by: Milton Eduardo Sosa <milton@Miltons-MacBook-Pro.local> Co-authored-by: Henrik Tjäder <henrik@tjaders.com>
29 lines
682 B
TOML
29 lines
682 B
TOML
[workspace]
|
|
|
|
[package]
|
|
authors = ["<Milton Sosa <milton.eduardo.sosa@gmail.com>"]
|
|
edition = "2018"
|
|
readme = "README.md"
|
|
name = "stm32f411_adc"
|
|
version = "0.1.0"
|
|
|
|
[dependencies]
|
|
cortex-m = { version = "0.7.6", features = ["critical-section-single-core"] }
|
|
cortex-m-rt = "0.7.1"
|
|
rtic = {version = "2.1.1", features=["thumbv7-backend", "rtic-monotonics"]}
|
|
panic-halt = "0.2.0"
|
|
embedded-hal = "1.0.0"
|
|
defmt = "0.3.5"
|
|
defmt-rtt = { version = "0.4.0"}
|
|
rtic-sync = "1.0.2"
|
|
|
|
[dependencies.stm32f4xx-hal]
|
|
version = "0.21.0"
|
|
features = ["stm32f411"] # replace the model of your microcontroller here
|
|
|
|
# this lets you use `cargo fix`!
|
|
[[bin]]
|
|
name = "stm32f411_adc"
|
|
test = false
|
|
bench = false
|
|
|