diff options
| author | Dario Nieuwenhuis <[email protected]> | 2022-10-02 21:28:34 +0200 |
|---|---|---|
| committer | Dario Nieuwenhuis <[email protected]> | 2022-10-02 21:28:34 +0200 |
| commit | c385bbf07dfcadb832d02e91385bcecc45c0ef58 (patch) | |
| tree | 5348cd0af1ce8311116e3ac3addde223e4dab686 /examples | |
| parent | cb6d1fc514f01e9206f13eacce3be0bcaae2ec44 (diff) | |
Update embassy, embedded-hal.
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/rpi-pico-w/Cargo.toml | 20 | ||||
| -rw-r--r-- | examples/rpi-pico-w/src/main.rs | 10 |
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" | |||
| 8 | cyw43 = { path = "../../", features = ["defmt"]} | 8 | cyw43 = { path = "../../", features = ["defmt"]} |
| 9 | embassy-executor = { version = "0.1.0", features = ["defmt", "integrated-timers"] } | 9 | embassy-executor = { version = "0.1.0", features = ["defmt", "integrated-timers"] } |
| 10 | embassy-time = { version = "0.1.0", features = ["defmt", "defmt-timestamp-uptime"] } | 10 | embassy-time = { version = "0.1.0", features = ["defmt", "defmt-timestamp-uptime"] } |
| 11 | embassy-rp = { version = "0.1.0", features = ["defmt", "unstable-traits", "nightly", "unstable-pac"] } | 11 | embassy-rp = { version = "0.1.0", features = ["defmt", "unstable-traits", "nightly", "unstable-pac", "time-driver"] } |
| 12 | embassy-net = { version = "0.1.0", features = ["defmt", "tcp", "dhcpv4", "medium-ethernet", "pool-16"] } | 12 | embassy-net = { version = "0.1.0", features = ["defmt", "tcp", "dhcpv4", "medium-ethernet", "pool-16", "unstable-traits", "nightly"] } |
| 13 | atomic-polyfill = "0.1.5" | 13 | atomic-polyfill = "0.1.5" |
| 14 | static_cell = "1.0" | 14 | static_cell = "1.0" |
| 15 | 15 | ||
| @@ -21,19 +21,19 @@ cortex-m = { version = "0.7.6", features = ["critical-section-single-core"]} | |||
| 21 | cortex-m-rt = "0.7.0" | 21 | cortex-m-rt = "0.7.0" |
| 22 | futures = { version = "0.3.17", default-features = false, features = ["async-await", "cfg-target-has-atomic", "unstable"] } | 22 | futures = { version = "0.3.17", default-features = false, features = ["async-await", "cfg-target-has-atomic", "unstable"] } |
| 23 | 23 | ||
| 24 | embedded-hal-1 = { package = "embedded-hal", version = "1.0.0-alpha.8" } | 24 | embedded-hal-1 = { package = "embedded-hal", version = "1.0.0-alpha.9" } |
| 25 | embedded-hal-async = { version = "0.1.0-alpha.1" } | 25 | embedded-hal-async = { version = "0.1.0-alpha.2" } |
| 26 | embedded-io = { version = "0.3.0", features = ["async", "defmt"] } | 26 | embedded-io = { version = "0.3.0", features = ["async", "defmt"] } |
| 27 | heapless = "0.7.15" | 27 | heapless = "0.7.15" |
| 28 | 28 | ||
| 29 | 29 | ||
| 30 | [patch.crates-io] | 30 | [patch.crates-io] |
| 31 | embassy-executor = { git = "https://github.com/embassy-rs/embassy", rev = "cb9f0ef5b800ce4a22cde1805e0eb88425f1e07b" } | 31 | embassy-executor = { git = "https://github.com/embassy-rs/embassy", rev = "73208d524843ca451b4cbfdb06e35f1b85290f4c" } |
| 32 | embassy-time = { git = "https://github.com/embassy-rs/embassy", rev = "cb9f0ef5b800ce4a22cde1805e0eb88425f1e07b" } | 32 | embassy-time = { git = "https://github.com/embassy-rs/embassy", rev = "73208d524843ca451b4cbfdb06e35f1b85290f4c" } |
| 33 | embassy-futures = { git = "https://github.com/embassy-rs/embassy", rev = "cb9f0ef5b800ce4a22cde1805e0eb88425f1e07b" } | 33 | embassy-futures = { git = "https://github.com/embassy-rs/embassy", rev = "73208d524843ca451b4cbfdb06e35f1b85290f4c" } |
| 34 | embassy-sync = { git = "https://github.com/embassy-rs/embassy", rev = "cb9f0ef5b800ce4a22cde1805e0eb88425f1e07b" } | 34 | embassy-sync = { git = "https://github.com/embassy-rs/embassy", rev = "73208d524843ca451b4cbfdb06e35f1b85290f4c" } |
| 35 | embassy-rp = { git = "https://github.com/embassy-rs/embassy", rev = "cb9f0ef5b800ce4a22cde1805e0eb88425f1e07b" } | 35 | embassy-rp = { git = "https://github.com/embassy-rs/embassy", rev = "73208d524843ca451b4cbfdb06e35f1b85290f4c" } |
| 36 | embassy-net = { git = "https://github.com/embassy-rs/embassy", rev = "cb9f0ef5b800ce4a22cde1805e0eb88425f1e07b" } | 36 | embassy-net = { git = "https://github.com/embassy-rs/embassy", rev = "73208d524843ca451b4cbfdb06e35f1b85290f4c" } |
| 37 | 37 | ||
| 38 | [profile.dev] | 38 | [profile.dev] |
| 39 | debug = 2 | 39 | debug = 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 | ||
| 5 | use core::convert::Infallible; | 5 | use core::convert::Infallible; |
| 6 | use core::future::Future; | 6 | use 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); |
