You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The build fails when attempting to activate the jtag-serial or uart features for the esp-println crate. For example, when doing the following:
esp-println = { version = "0.13.0", features = ["esp32c6", "log", "jtag-serial"] }
The build fails with the following error:
ERROR: expected exactly one enabled feature from feature group:
["jtag-serial", "uart", "auto"]
error: proc macro panicked
--> /Users/omarhiari/.cargo/registry/src/index.crates.io-6f17d22bba15001f/esp-println-0.13.0/build.rs:12:5
|
12 | assert_unique_used_features!("jtag-serial", "uart", "auto");
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: message: Build failed
= note: this error originates in the macro `assert_unique_used_features` (in Nightly builds, run with -Z macro-backtrace for more info)
error: could not compile `esp-println` (build script) due to 1 previous error
This does not make much sense since exactly one of the listed features is being enabled.
The text was updated successfully, but these errors were encountered:
The build fails when attempting to activate the
jtag-serial
oruart
features for theesp-println
crate. For example, when doing the following:The build fails with the following error:
This does not make much sense since exactly one of the listed features is being enabled.
The text was updated successfully, but these errors were encountered: