/examples/pico_pio_pwm.rs
//! # Pico PIO PWM Blink Example
//!
//! Fades the LED on a Pico board using the PIO peripheral with an pwm program.
//!
//! This will fade in the LED attached to GP25, which is the pin the Pico
//! uses for the on-board LED.
//!
//! This example uses a few advance pio tricks such as side setting pins and instruction injection.
//!
//! See the `Cargo.toml` file for Copyright and license details. Except for the pio program which is subject to a different license.
use info;
use defmt_rtt as _;
// The macro for our start-up function
use entry;
// 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;
// Import pio crates
use ;
use ;
use pio_file;
/// Set pio pwm period
///
/// This uses a sneaky trick to set a second value besides the duty cycle.
/// We first write a value to the tx fifo. But instead of the normal instructions we
/// have stopped the state machine and inject our own instructions that move the written value to the ISR.
/// Set pio pwm duty cycle
///
/// The value written to the TX FIFO is used directly by the normal pio program
/// 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 fades the LED in an
/// infinite loop.
!
// End of file