summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDario Nieuwenhuis <dirbaio@dirbaio.net>2022-09-26 20:33:20 +0200
committerDario Nieuwenhuis <dirbaio@dirbaio.net>2022-09-26 20:33:20 +0200
commit75e93cc142c1c017e94dd28f6f04d3a4cb1ac67b (patch)
tree72c9f393b99086e728b483abfbfa1907d6c488e4
parent049c31613b89f6c0f5771cacdf7c6f837c89fe38 (diff)
downloadembassy-75e93cc142c1c017e94dd28f6f04d3a4cb1ac67b.zip
rp: enable time-driver in Cargo.toml instead of ci.sh
-rwxr-xr-xci.sh2
-rw-r--r--tests/rp/Cargo.toml2
2 files changed, 2 insertions, 2 deletions
diff --git a/ci.sh b/ci.sh
index 69440ec3..cd1c0786 100755
--- a/ci.sh
+++ b/ci.sh
@@ -121,7 +121,7 @@ cargo batch \
--- build --release --manifest-path tests/stm32/Cargo.toml --target thumbv7em-none-eabi --features stm32h755zi --out-dir out/tests/nucleo-stm32h755zi \
--- build --release --manifest-path tests/stm32/Cargo.toml --target thumbv7em-none-eabi --features stm32wb55rg --out-dir out/tests/nucleo-stm32wb55rg \
--- build --release --manifest-path tests/stm32/Cargo.toml --target thumbv7em-none-eabi --features stm32u585ai --out-dir out/tests/iot-stm32u585ai \
- --- build --release --manifest-path tests/rp/Cargo.toml --target thumbv6m-none-eabi --features embassy-rp/time-driver --out-dir out/tests/rpi-pico \
+ --- build --release --manifest-path tests/rp/Cargo.toml --target thumbv6m-none-eabi --out-dir out/tests/rpi-pico \
$BUILD_EXTRA
diff --git a/tests/rp/Cargo.toml b/tests/rp/Cargo.toml
index 11ecb916..7e2717dd 100644
--- a/tests/rp/Cargo.toml
+++ b/tests/rp/Cargo.toml
@@ -7,7 +7,7 @@ version = "0.1.0"
embassy-sync = { version = "0.1.0", path = "../../embassy-sync", features = ["defmt"] }
embassy-executor = { version = "0.1.0", path = "../../embassy-executor", features = ["defmt", "integrated-timers"] }
embassy-time = { version = "0.1.0", path = "../../embassy-time", features = ["defmt"] }
-embassy-rp = { version = "0.1.0", path = "../../embassy-rp", features = ["nightly", "defmt", "unstable-pac", "unstable-traits"] }
+embassy-rp = { version = "0.1.0", path = "../../embassy-rp", features = ["nightly", "defmt", "unstable-pac", "unstable-traits", "time-driver"] }
embassy-futures = { version = "0.1.0", path = "../../embassy-futures" }
defmt = "0.3.0"