aboutsummaryrefslogtreecommitdiff
path: root/embassy-nxp/Cargo.toml
diff options
context:
space:
mode:
authorRoy <[email protected]>2025-07-02 15:24:01 +0300
committerRoi Bachynskyi <[email protected]>2025-07-18 15:22:36 +0300
commit6d79c4c81187d5f2704e2d2f72a3deba05ca449a (patch)
tree0ec84178e5964300d5836908a1054619debdc131 /embassy-nxp/Cargo.toml
parent3e1b0e4aec11888d6ea41ef5c62d6d2912d81eae (diff)
feat: added log-to-defmt feature
Signed-off-by: Roy <[email protected]>
Diffstat (limited to 'embassy-nxp/Cargo.toml')
-rw-r--r--embassy-nxp/Cargo.toml4
1 files changed, 4 insertions, 0 deletions
diff --git a/embassy-nxp/Cargo.toml b/embassy-nxp/Cargo.toml
index 01f57c4e2..9eb48be17 100644
--- a/embassy-nxp/Cargo.toml
+++ b/embassy-nxp/Cargo.toml
@@ -10,6 +10,8 @@ critical-section = "1.1.2"
10embassy-hal-internal = { version = "0.3.0", path = "../embassy-hal-internal", features = ["cortex-m", "prio-bits-2"] } 10embassy-hal-internal = { version = "0.3.0", path = "../embassy-hal-internal", features = ["cortex-m", "prio-bits-2"] }
11embassy-sync = { version = "0.7.0", path = "../embassy-sync" } 11embassy-sync = { version = "0.7.0", path = "../embassy-sync" }
12defmt = { version = "1", optional = true } 12defmt = { version = "1", optional = true }
13log = "0.4.27"
14log-to-defmt = { version = "0.1.0", optional = true}
13 15
14## Chip dependencies 16## Chip dependencies
15lpc55-pac = { version = "0.5.0", optional = true } 17lpc55-pac = { version = "0.5.0", optional = true }
@@ -30,3 +32,5 @@ unstable-pac = []
30 32
31#! ### Chip selection features 33#! ### Chip selection features
32lpc55 = ["lpc55-pac"] 34lpc55 = ["lpc55-pac"]
35## Enable debug logs
36log-to-defmt = ["dep:log-to-defmt"]