Fix removed comments

This commit is contained in:
riceman2000 2025-09-14 14:14:59 -04:00
parent daae1fe5c9
commit 1c080559fd
2 changed files with 6 additions and 6 deletions

View File

@ -27,9 +27,9 @@ async fn main(_spawner: Spawner) {
// These pins are routed to different hardware SPI peripherals, but we can
// use them together regardless
let mosi = p.PIN_6;
let miso = p.PIN_7;
let clk = p.PIN_8;
let mosi = p.PIN_6; // SPI0 SCLK
let miso = p.PIN_7; // SPI0 MOSI
let clk = p.PIN_8; // SPI1 MISO
let pio::Pio { mut common, sm0, .. } = pio::Pio::new(p.PIO0, Irqs);

View File

@ -27,9 +27,9 @@ async fn main(_spawner: Spawner) {
// These pins are routed to different hardware SPI peripherals, but we can
// use them together regardless
let mosi = p.PIN_6;
let miso = p.PIN_7;
let clk = p.PIN_8;
let mosi = p.PIN_6; // SPI0 SCLK
let miso = p.PIN_7; // SPI0 MOSI
let clk = p.PIN_8; // SPI1 MISO
let pio::Pio { mut common, sm0, .. } = pio::Pio::new(p.PIO0, Irqs);