Fix extraneous mut
warnings in L4 example.
This commit is contained in:
parent
638235e72d
commit
e269971597
@ -39,11 +39,11 @@ async fn main_task() {
|
|||||||
|
|
||||||
// These are the pins for the Inventek eS-Wifi SPI Wifi Adapter.
|
// These are the pins for the Inventek eS-Wifi SPI Wifi Adapter.
|
||||||
|
|
||||||
let mut boot = Output::new(p.PB12, Level::Low, Speed::VeryHigh);
|
let boot = Output::new(p.PB12, Level::Low, Speed::VeryHigh);
|
||||||
let mut wake = Output::new(p.PB13, Level::Low, Speed::VeryHigh);
|
let wake = Output::new(p.PB13, Level::Low, Speed::VeryHigh);
|
||||||
let mut reset = Output::new(p.PE8, Level::Low, Speed::VeryHigh);
|
let mut reset = Output::new(p.PE8, Level::Low, Speed::VeryHigh);
|
||||||
let mut cs = Output::new(p.PE0, Level::High, Speed::VeryHigh);
|
let mut cs = Output::new(p.PE0, Level::High, Speed::VeryHigh);
|
||||||
let mut ready = Input::new(p.PE1, Pull::Up);
|
let ready = Input::new(p.PE1, Pull::Up);
|
||||||
|
|
||||||
cortex_m::asm::delay(100_000);
|
cortex_m::asm::delay(100_000);
|
||||||
reset.set_high();
|
reset.set_high();
|
||||||
|
Loading…
Reference in New Issue
Block a user