aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorQuentin Smith <[email protected]>2023-07-18 17:13:43 -0400
committerQuentin Smith <[email protected]>2023-07-18 17:14:25 -0400
commitc333d855fca0743de1d58ef14e3c2f6389f73145 (patch)
treedc74631e15584cb9666fdb3ccfb357dee895a015
parent42de1c3a06561f11960cee85079fb74080b0bb70 (diff)
Remove merge error
-rw-r--r--embassy-nrf/src/pdm.rs2
-rw-r--r--examples/nrf/Cargo.toml37
2 files changed, 1 insertions, 38 deletions
diff --git a/embassy-nrf/src/pdm.rs b/embassy-nrf/src/pdm.rs
index 1fc717fd1..f2675bb7a 100644
--- a/embassy-nrf/src/pdm.rs
+++ b/embassy-nrf/src/pdm.rs
@@ -463,4 +463,4 @@ macro_rules! impl_pdm {
463 type Interrupt = crate::interrupt::typelevel::$irq; 463 type Interrupt = crate::interrupt::typelevel::$irq;
464 } 464 }
465 }; 465 };
466} \ No newline at end of file 466}
diff --git a/examples/nrf/Cargo.toml b/examples/nrf/Cargo.toml
deleted file mode 100644
index 8309dda08..000000000
--- a/examples/nrf/Cargo.toml
+++ /dev/null
@@ -1,37 +0,0 @@
1[package]
2edition = "2021"
3name = "embassy-nrf-examples"
4version = "0.1.0"
5
6[features]
7default = ["nightly"]
8nightly = ["embassy-executor/nightly", "embassy-nrf/nightly", "embassy-nrf/unstable-traits", "embassy-usb", "embassy-usb-serial", "embassy-usb-hid", "embassy-usb-ncm", "embedded-io/async", "embassy-net"]
9
10[dependencies]
11embassy-futures = { version = "0.1.0", path = "../../embassy-futures" }
12embassy-sync = { version = "0.1.0", path = "../../embassy-sync", features = ["defmt"] }
13embassy-executor = { version = "0.1.0", path = "../../embassy-executor", features = ["defmt", "integrated-timers"] }
14embassy-time = { version = "0.1.0", path = "../../embassy-time", features = ["defmt", "defmt-timestamp-uptime"] }
15embassy-nrf = { version = "0.1.0", path = "../../embassy-nrf", features = ["defmt", "nrf52840", "time-driver-rtc1", "gpiote", "unstable-pac"] }
16embassy-net = { version = "0.1.0", path = "../../embassy-net", features = ["defmt", "tcp", "dhcpv4", "medium-ethernet", "pool-16"], optional = true }
17embassy-usb = { version = "0.1.0", path = "../../embassy-usb", features = ["defmt"], optional = true }
18embassy-usb-serial = { version = "0.1.0", path = "../../embassy-usb-serial", features = ["defmt"], optional = true }
19embassy-usb-hid = { version = "0.1.0", path = "../../embassy-usb-hid", features = ["defmt"], optional = true }
20embassy-usb-ncm = { version = "0.1.0", path = "../../embassy-usb-ncm", features = ["defmt"], optional = true }
21embedded-io = "0.3.0"
22
23defmt = "0.3"
24defmt-rtt = "0.3"
25
26static_cell = "1.0"
27cortex-m = { version = "0.7.6", features = ["critical-section-single-core"] }
28cortex-m-rt = "0.7.0"
29panic-probe = { version = "0.3", features = ["print-defmt"] }
30futures = { version = "0.3.17", default-features = false, features = ["async-await"] }
31rand = { version = "0.8.4", default-features = false }
32fixed = "1.10.0"
33embedded-storage = "0.3.0"
34usbd-hid = "0.5.2"
35serde = { version = "1.0.136", default-features = false }
36num-integer = { version = "0.1.45", default-features = false }
37microfft = "0.5.0"