Skip to content

Commit 5bb3d94

Browse files
committed
Explicit enable/disable; fix unsound callbacks
1 parent f8f2a49 commit 5bb3d94

3 files changed

Lines changed: 279 additions & 167 deletions

File tree

.cargo/config.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[build]
2-
target = "riscv32imc-esp-espidf"
3-
# target = "xtensa-esp32-espidf"
2+
target = "riscv32imac-esp-espidf"
3+
#target = "xtensa-esp32-espidf"
44

55
[target.xtensa-esp32-espidf]
66
linker = "ldproxy"
@@ -25,6 +25,7 @@ rustflags = ["--cfg", "espidf_time64"]
2525
[env]
2626
ESP_IDF_SDKCONFIG_DEFAULTS = ".github/configs/sdkconfig.defaults"
2727
ESP_IDF_VERSION = "v5.3.2"
28+
MCU = "esp32c6"
2829

2930
[unstable]
3031
build-std = ["std", "panic_abort"]

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ esp-idf-hal = { git = "https://github.com/esp-rs/esp-idf-hal" }
2323
harness = false
2424

2525
[features]
26-
default = ["std", "binstart"]
26+
default = ["std", "binstart", "experimental"]
2727

2828
std = ["alloc", "log/std", "esp-idf-hal/std", "embedded-svc/std", "futures-io"]
2929
embassy-time-driver = ["dep:embassy-time-driver", "embassy-time-queue-utils"]

0 commit comments

Comments
 (0)