From df396688eb31da484db371632cb76ebf9143d8f7 Mon Sep 17 00:00:00 2001 From: 9names <60134748+9names@users.noreply.github.com> Date: Wed, 3 Dec 2025 22:19:40 +1100 Subject: docs: fix rp235x pio_i2s example comment --- examples/rp235x/src/bin/pio_i2s.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/rp235x/src/bin/pio_i2s.rs b/examples/rp235x/src/bin/pio_i2s.rs index cfcb0221d..7ed952a40 100644 --- a/examples/rp235x/src/bin/pio_i2s.rs +++ b/examples/rp235x/src/bin/pio_i2s.rs @@ -5,7 +5,7 @@ //! bclk : GPIO 18 //! lrc : GPIO 19 //! din : GPIO 20 -//! Then hold down the boot select button to trigger a rising triangle waveform. +//! Then short GPIO 0 to GND to trigger a rising triangle waveform. #![no_std] #![no_main] @@ -70,7 +70,7 @@ async fn main(_spawner: Spawner) { // but don't await the returned future, yet let dma_future = i2s.write(front_buffer); - // fade in audio when bootsel is pressed + // fade in audio when GPIO 0 pin is shorted to GND let fade_target = if fade_input.is_low() { i32::MAX } else { 0 }; // fill back buffer with fresh audio samples before awaiting the dma future -- cgit