e40346a544
* fixes panic not showing in examples removes panic_immediate_abort feature where present, renames config -> config.toml, enables panic-probe defmt printing feature and updates panic-probe to 0.2 * fix unintended changes in build_core and arch * revert uninteded change
54 lines
1.6 KiB
TOML
54 lines
1.6 KiB
TOML
[package]
|
|
authors = ["Dario Nieuwenhuis <dirbaio@dirbaio.net>"]
|
|
edition = "2018"
|
|
name = "embassy-stm32f4-examples"
|
|
version = "0.1.0"
|
|
|
|
[features]
|
|
default = [
|
|
"defmt-default",
|
|
]
|
|
defmt-default = []
|
|
defmt-trace = []
|
|
defmt-debug = []
|
|
defmt-info = []
|
|
defmt-warn = []
|
|
defmt-error = []
|
|
|
|
stm32f401 = ["embassy-stm32/stm32f401"]
|
|
stm32f405 = ["embassy-stm32/stm32f405"]
|
|
stm32f407 = ["embassy-stm32/stm32f407"]
|
|
stm32f410 = ["embassy-stm32/stm32f410"]
|
|
stm32f411 = ["embassy-stm32/stm32f411"]
|
|
stm32f412 = ["embassy-stm32/stm32f412"]
|
|
stm32f413 = ["embassy-stm32/stm32f413"]
|
|
stm32f415 = ["embassy-stm32/stm32f405"]
|
|
stm32f417 = ["embassy-stm32/stm32f407"]
|
|
stm32f423 = ["embassy-stm32/stm32f413"]
|
|
stm32f427 = ["embassy-stm32/stm32f427"]
|
|
stm32f429 = ["embassy-stm32/stm32f429"]
|
|
stm32f437 = ["embassy-stm32/stm32f427"]
|
|
stm32f439 = ["embassy-stm32/stm32f429"]
|
|
stm32f446 = ["embassy-stm32/stm32f446"]
|
|
stm32f469 = ["embassy-stm32/stm32f469"]
|
|
stm32f479 = ["embassy-stm32/stm32f469"]
|
|
|
|
|
|
[dependencies]
|
|
embassy = { version = "0.1.0", path = "../embassy", features = ["defmt", "defmt-trace"] }
|
|
embassy-traits = { version = "0.1.0", path = "../embassy-traits", features = ["defmt"] }
|
|
embassy-stm32 = { version = "0.1.0", path = "../embassy-stm32" }
|
|
embassy-extras = {version = "0.1.0", path = "../embassy-extras" }
|
|
|
|
defmt = "0.2.0"
|
|
defmt-rtt = "0.2.0"
|
|
|
|
cortex-m = "0.7.1"
|
|
cortex-m-rt = "0.6.13"
|
|
embedded-hal = { version = "0.2.4" }
|
|
panic-probe = { version = "0.2.0", features = ["print-defmt"] }
|
|
futures = { version = "0.3.8", default-features = false, features = ["async-await"] }
|
|
rtt-target = { version = "0.3", features = ["cortex-m"] }
|
|
bxcan = "0.5.0"
|
|
usb-device = "0.2.7"
|