···66pub mod rp2040;
7788use defmt::trace;
99-use embedded_hal::delay::DelayNs;
109use embedded_hal::digital::{InputPin, OutputPin, PinState};
11101211/// A trait for pin types that allows running a closure with the pin configured as an input.
···9695 self.dc.set_high()?;
9796 }
98979999- for &(mut byte) in data {
9898+ for &byte in data {
10099 self.cs.set_low()?;
101100102101 for i in 0..8 {