embassy-nxp: make defmt optional

also enable it on all dependencies (where available).

this is needed because in a next commit we'll add code to
`embassy-hal-internal` which uses the feature in a macro, as it expects
`defmt` to be optional in all embassy HALs. this was the only HAL where
that wasn't the case.

note that this is a breaking change for consumers! if you wish to use
`defmt` in `embassy-nxp` you now need to enable the feature.
This commit is contained in:
Ralph Ursprung 2025-05-15 18:36:51 +02:00
parent d1c2ce927a
commit 05bfbacee5
No known key found for this signature in database
GPG Key ID: 86CCE68A77D190D2

View File

@ -10,8 +10,11 @@ critical-section = "1.1.2"
embassy-hal-internal = { version = "0.2.0", path = "../embassy-hal-internal", features = ["cortex-m", "prio-bits-2"] }
embassy-sync = { version = "0.6.2", path = "../embassy-sync" }
lpc55-pac = "0.5.0"
defmt = "0.3.8"
defmt = { version = "0.3.8", optional = true }
[features]
default = ["rt"]
rt = ["lpc55-pac/rt"]
rt = ["lpc55-pac/rt"]
## Enable [defmt support](https://docs.rs/defmt) and enables `defmt` debug-log messages and formatting in embassy drivers.
defmt = ["dep:defmt", "embassy-hal-internal/defmt", "embassy-sync/defmt"]