From fbe2a8834f4618fa9f9eeb39f8be0ccb0b4d887d Mon Sep 17 00:00:00 2001 From: Jan Niehusmann Date: Mon, 27 Sep 2021 12:36:23 +0000 Subject: [PATCH] Update comment on top of pio_blink.rs --- rp2040-hal/examples/pio_blink.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rp2040-hal/examples/pio_blink.rs b/rp2040-hal/examples/pio_blink.rs index ca8af06..3a4ab6b 100644 --- a/rp2040-hal/examples/pio_blink.rs +++ b/rp2040-hal/examples/pio_blink.rs @@ -1,6 +1,6 @@ -//! Blinks the LED on a Pico board, using a PIO program +//! This example toggles the GPIO25 pin, using a PIO program. //! -//! This will blink an LED attached to GP25, which is the pin the Pico uses for the on-board LED. +//! If a LED is connected to that pin, like on a Pico board, the LED should blink. #![no_std] #![no_main]