aboutsummaryrefslogtreecommitdiff
path: root/examples/lpc55s69/Cargo.toml
diff options
context:
space:
mode:
authori509VCB <[email protected]>2025-08-06 05:43:58 +0000
committerGitHub <[email protected]>2025-08-06 05:43:58 +0000
commit3a197df07c14873a52e42394ef350152eef60a41 (patch)
tree55817c094aea9b9ea7a20faeb6824c7142981296 /examples/lpc55s69/Cargo.toml
parentfcccbc85fbfabb29604381fc6bfb61c660098559 (diff)
parent517714c98e4b5dc4c7ee844527f5d33fdc342125 (diff)
Merge pull request #4459 from IrinaCh524/feat/lpc55-time-driver
feat: add RTC time driver
Diffstat (limited to 'examples/lpc55s69/Cargo.toml')
-rw-r--r--examples/lpc55s69/Cargo.toml4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/lpc55s69/Cargo.toml b/examples/lpc55s69/Cargo.toml
index 5faec13da..f9bd409e2 100644
--- a/examples/lpc55s69/Cargo.toml
+++ b/examples/lpc55s69/Cargo.toml
@@ -6,10 +6,10 @@ license = "MIT OR Apache-2.0"
6 6
7 7
8[dependencies] 8[dependencies]
9embassy-nxp = { version = "0.1.0", path = "../../embassy-nxp", features = ["lpc55", "rt", "defmt"] } 9embassy-nxp = { version = "0.1.0", path = "../../embassy-nxp", features = ["lpc55", "rt", "defmt", "time-driver-rtc"] }
10embassy-executor = { version = "0.8.0", path = "../../embassy-executor", features = ["arch-cortex-m", "executor-thread", "executor-interrupt"] } 10embassy-executor = { version = "0.8.0", path = "../../embassy-executor", features = ["arch-cortex-m", "executor-thread", "executor-interrupt"] }
11embassy-sync = { version = "0.7.0", path = "../../embassy-sync", features = ["defmt"] } 11embassy-sync = { version = "0.7.0", path = "../../embassy-sync", features = ["defmt"] }
12embassy-time = { version = "0.4.0", path = "../../embassy-time", features = ["defmt"] } 12embassy-time = { version = "0.4.0", path = "../../embassy-time", features = ["defmt", "tick-hz-32_768"] }
13panic-halt = "1.0.0" 13panic-halt = "1.0.0"
14cortex-m = { version = "0.7.6", features = ["inline-asm", "critical-section-single-core"] } 14cortex-m = { version = "0.7.6", features = ["inline-asm", "critical-section-single-core"] }
15cortex-m-rt = { version = "0.7.0"} 15cortex-m-rt = { version = "0.7.0"}