firmware for my Touchscreen E-Paper Input Module for Framework Laptop 16
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

pervasive-spi: fix warnings

+1 -2
+1 -2
pervasive-spi/src/lib.rs
··· 6 6 pub mod rp2040; 7 7 8 8 use defmt::trace; 9 - use embedded_hal::delay::DelayNs; 10 9 use embedded_hal::digital::{InputPin, OutputPin, PinState}; 11 10 12 11 /// A trait for pin types that allows running a closure with the pin configured as an input. ··· 96 95 self.dc.set_high()?; 97 96 } 98 97 99 - for &(mut byte) in data { 98 + for &byte in data { 100 99 self.cs.set_low()?; 101 100 102 101 for i in 0..8 {