/examples/pico_uart_irq_echo.rs
//! # UART IRQ Echo Example
//!
//! This application demonstrates how to use the UART Driver to talk to a serial
//! connection. In this example, the IRQ owns the UART and you cannot do any UART
//! access from the main thread.
//!
//! The pinouts are:
//!
//! * GPIO 0 - UART TX (out of the RP2040)
//! * GPIO 1 - UART RX (in to the RP2040)
//! * GPIO 25 - An LED we can blink (active high)
//!
//! See the `Cargo.toml` file for Copyright and license details.
// These are the traits we need from Embedded HAL to treat our hardware
// objects as generic embedded devices.
use ;
// We also need this for the 'Delay' object to work.
use Clock;
// The macro for our start-up function
use entry;
// Time handling traits
use RateExtU32;
// Ensure we halt the program on panic (if we don't mention this crate it won't
// be linked)
use panic_halt as _;
// Alias for our HAL crate
use rp2040_hal as hal;
// A shorter alias for the Peripheral Access Crate, which provides low-level
// register access
use pac;
// Our interrupt macro
use interrupt;
// Some short-cuts to useful types
use RefCell;
use Mutex;
/// Import the GPIO pins we use
use ;
// UART related types
use ;
/// Alias the type for our UART pins to make things clearer.
type UartPins = ;
/// Alias the type for our UART to make things clearer.
type Uart = UartPeripheral;
/// This how we transfer the UART into the Interrupt Handler
static GLOBAL_UART: = new;
/// 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 writes to the UART in
/// an infinite loop.
!
// End of file