aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2022-10-02 21:28:34 +0200
committerDario Nieuwenhuis <[email protected]>2022-10-02 21:28:34 +0200
commitc385bbf07dfcadb832d02e91385bcecc45c0ef58 (patch)
tree5348cd0af1ce8311116e3ac3addde223e4dab686 /examples
parentcb6d1fc514f01e9206f13eacce3be0bcaae2ec44 (diff)
Update embassy, embedded-hal.
Diffstat (limited to 'examples')
-rw-r--r--examples/rpi-pico-w/Cargo.toml20
-rw-r--r--examples/rpi-pico-w/src/main.rs10
2 files changed, 15 insertions, 15 deletions
diff --git a/examples/rpi-pico-w/Cargo.toml b/examples/rpi-pico-w/Cargo.toml
index 53e72498b..e82d12eb9 100644
--- a/examples/rpi-pico-w/Cargo.toml
+++ b/examples/rpi-pico-w/Cargo.toml
@@ -8,8 +8,8 @@ edition = "2021"
8cyw43 = { path = "../../", features = ["defmt"]} 8cyw43 = { path = "../../", features = ["defmt"]}
9embassy-executor = { version = "0.1.0", features = ["defmt", "integrated-timers"] } 9embassy-executor = { version = "0.1.0", features = ["defmt", "integrated-timers"] }
10embassy-time = { version = "0.1.0", features = ["defmt", "defmt-timestamp-uptime"] } 10embassy-time = { version = "0.1.0", features = ["defmt", "defmt-timestamp-uptime"] }
11embassy-rp = { version = "0.1.0", features = ["defmt", "unstable-traits", "nightly", "unstable-pac"] } 11embassy-rp = { version = "0.1.0", features = ["defmt", "unstable-traits", "nightly", "unstable-pac", "time-driver"] }
12embassy-net = { version = "0.1.0", features = ["defmt", "tcp", "dhcpv4", "medium-ethernet", "pool-16"] } 12embassy-net = { version = "0.1.0", features = ["defmt", "tcp", "dhcpv4", "medium-ethernet", "pool-16", "unstable-traits", "nightly"] }
13atomic-polyfill = "0.1.5" 13atomic-polyfill = "0.1.5"
14static_cell = "1.0" 14static_cell = "1.0"
15 15
@@ -21,19 +21,19 @@ cortex-m = { version = "0.7.6", features = ["critical-section-single-core"]}
21cortex-m-rt = "0.7.0" 21cortex-m-rt = "0.7.0"
22futures = { version = "0.3.17", default-features = false, features = ["async-await", "cfg-target-has-atomic", "unstable"] } 22futures = { version = "0.3.17", default-features = false, features = ["async-await", "cfg-target-has-atomic", "unstable"] }
23 23
24embedded-hal-1 = { package = "embedded-hal", version = "1.0.0-alpha.8" } 24embedded-hal-1 = { package = "embedded-hal", version = "1.0.0-alpha.9" }
25embedded-hal-async = { version = "0.1.0-alpha.1" } 25embedded-hal-async = { version = "0.1.0-alpha.2" }
26embedded-io = { version = "0.3.0", features = ["async", "defmt"] } 26embedded-io = { version = "0.3.0", features = ["async", "defmt"] }
27heapless = "0.7.15" 27heapless = "0.7.15"
28 28
29 29
30[patch.crates-io] 30[patch.crates-io]
31embassy-executor = { git = "https://github.com/embassy-rs/embassy", rev = "cb9f0ef5b800ce4a22cde1805e0eb88425f1e07b" } 31embassy-executor = { git = "https://github.com/embassy-rs/embassy", rev = "73208d524843ca451b4cbfdb06e35f1b85290f4c" }
32embassy-time = { git = "https://github.com/embassy-rs/embassy", rev = "cb9f0ef5b800ce4a22cde1805e0eb88425f1e07b" } 32embassy-time = { git = "https://github.com/embassy-rs/embassy", rev = "73208d524843ca451b4cbfdb06e35f1b85290f4c" }
33embassy-futures = { git = "https://github.com/embassy-rs/embassy", rev = "cb9f0ef5b800ce4a22cde1805e0eb88425f1e07b" } 33embassy-futures = { git = "https://github.com/embassy-rs/embassy", rev = "73208d524843ca451b4cbfdb06e35f1b85290f4c" }
34embassy-sync = { git = "https://github.com/embassy-rs/embassy", rev = "cb9f0ef5b800ce4a22cde1805e0eb88425f1e07b" } 34embassy-sync = { git = "https://github.com/embassy-rs/embassy", rev = "73208d524843ca451b4cbfdb06e35f1b85290f4c" }
35embassy-rp = { git = "https://github.com/embassy-rs/embassy", rev = "cb9f0ef5b800ce4a22cde1805e0eb88425f1e07b" } 35embassy-rp = { git = "https://github.com/embassy-rs/embassy", rev = "73208d524843ca451b4cbfdb06e35f1b85290f4c" }
36embassy-net = { git = "https://github.com/embassy-rs/embassy", rev = "cb9f0ef5b800ce4a22cde1805e0eb88425f1e07b" } 36embassy-net = { git = "https://github.com/embassy-rs/embassy", rev = "73208d524843ca451b4cbfdb06e35f1b85290f4c" }
37 37
38[profile.dev] 38[profile.dev]
39debug = 2 39debug = 2
diff --git a/examples/rpi-pico-w/src/main.rs b/examples/rpi-pico-w/src/main.rs
index 986474ce3..0915ef6be 100644
--- a/examples/rpi-pico-w/src/main.rs
+++ b/examples/rpi-pico-w/src/main.rs
@@ -1,6 +1,6 @@
1#![no_std] 1#![no_std]
2#![no_main] 2#![no_main]
3#![feature(generic_associated_types, type_alias_impl_trait)] 3#![feature(type_alias_impl_trait)]
4 4
5use core::convert::Infallible; 5use core::convert::Infallible;
6use core::future::Future; 6use core::future::Future;
@@ -44,15 +44,15 @@ async fn main(spawner: Spawner) {
44 let p = embassy_rp::init(Default::default()); 44 let p = embassy_rp::init(Default::default());
45 45
46 // Include the WiFi firmware and Country Locale Matrix (CLM) blobs. 46 // Include the WiFi firmware and Country Locale Matrix (CLM) blobs.
47 let fw = include_bytes!("../../../firmware/43439A0.bin"); 47 //let fw = include_bytes!("../../../firmware/43439A0.bin");
48 let clm = include_bytes!("../../../firmware/43439A0_clm.bin"); 48 //let clm = include_bytes!("../../../firmware/43439A0_clm.bin");
49 49
50 // To make flashing faster for development, you may want to flash the firmwares independently 50 // To make flashing faster for development, you may want to flash the firmwares independently
51 // at hardcoded addresses, instead of baking them into the program with `include_bytes!`: 51 // at hardcoded addresses, instead of baking them into the program with `include_bytes!`:
52 // probe-rs-cli download 43439A0.bin --format bin --chip RP2040 --base-address 0x10100000 52 // probe-rs-cli download 43439A0.bin --format bin --chip RP2040 --base-address 0x10100000
53 // probe-rs-cli download 43439A0.clm_blob --format bin --chip RP2040 --base-address 0x10140000 53 // probe-rs-cli download 43439A0.clm_blob --format bin --chip RP2040 --base-address 0x10140000
54 //let fw = unsafe { core::slice::from_raw_parts(0x10100000 as *const u8, 224190) }; 54 let fw = unsafe { core::slice::from_raw_parts(0x10100000 as *const u8, 224190) };
55 //let clm = unsafe { core::slice::from_raw_parts(0x10140000 as *const u8, 4752) }; 55 let clm = unsafe { core::slice::from_raw_parts(0x10140000 as *const u8, 4752) };
56 56
57 let pwr = Output::new(p.PIN_23, Level::Low); 57 let pwr = Output::new(p.PIN_23, Level::Low);
58 let cs = Output::new(p.PIN_25, Level::High); 58 let cs = Output::new(p.PIN_25, Level::High);