diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2022-10-18 21:12:05 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-18 21:12:05 +0000 |
commit | a669f4cfd8b178e924482cf008d5eaec7889e415 (patch) | |
tree | 16b6c6bd6c4659996eb5445137e68d35fb359661 | |
parent | 18453ee64c7d1b397aa96cb322cedee6166b4602 (diff) | |
parent | 9d2641f2f5f96e85f3c900a69388071f1adddfdc (diff) | |
download | embassy-a669f4cfd8b178e924482cf008d5eaec7889e415.zip |
Merge #1015
1015: Enable defmt in embassy-hal-common when defmt is enabled in stm32 HAL r=Dirbaio a=matoushybl
Co-authored-by: Matous Hybl <hyblmatous@gmail.com>
-rw-r--r-- | embassy-stm32/Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/embassy-stm32/Cargo.toml b/embassy-stm32/Cargo.toml index 2610e568..9194ae78 100644 --- a/embassy-stm32/Cargo.toml +++ b/embassy-stm32/Cargo.toml @@ -75,7 +75,7 @@ quote = "1.0.15" stm32-metapac = { version = "0.1.0", path = "../stm32-metapac", default-features = false, features = ["metadata"]} [features] -defmt = ["dep:defmt", "bxcan/unstable-defmt", "embassy-sync/defmt", "embassy-executor/defmt", "embassy-embedded-hal/defmt", "embedded-io?/defmt", "embassy-usb-driver?/defmt"] +defmt = ["dep:defmt", "bxcan/unstable-defmt", "embassy-sync/defmt", "embassy-executor/defmt", "embassy-embedded-hal/defmt", "embassy-hal-common/defmt", "embedded-io?/defmt", "embassy-usb-driver?/defmt"] sdmmc-rs = ["embedded-sdmmc"] net = ["embassy-net" ] memory-x = ["stm32-metapac/memory-x"] |