/examples/pico_blinky.rs
//! # Pico Blinky Example
//!
//! Blinks the LED on a Pico board.
//!
//! This will blink an LED attached to GP25, which is the pin the Pico uses for
//! the on-board LED.
//!
//! See the `Cargo.toml` file for Copyright and license details.
// The macro for our start-up function
use entry;
// GPIO traits
use OutputPin;
// Ensure we halt the program on panic (if we don't mention this crate it won't
// be linked)
use panic_halt as _;
// Pull in any important traits
use *;
// A shorter alias for the Peripheral Access Crate, which provides low-level
// register access
use pac;
// A shorter alias for the Hardware Abstraction Layer, which provides
// higher-level drivers.
use hal;
/// Entry point to our bare-metal application.
///
/// The `#[entry]` macro ensures the Cortex-M start-up code calls this function
/// as soon as all global variables are initialised.
///
/// The function configures the RP2040 peripherals, then blinks the LED in an
/// infinite loop.
!
// End of file