/examples/pico_uart_irq_buffer.rs
//! # UART IRQ TX Buffer 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. You can, however, write to a
//! static queue, and have the queue contents transferred to the UART under
//! interrupt.
//!
//! 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 ;
// The writeln! trait.
use Write;
// 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;
use Queue;
/// 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 describes the queue we use for outbound UART data
/// This how we transfer the UART into the Interrupt Handler
static GLOBAL_UART: = new;
/// This is our outbound UART queue. We write to it from the main thread, and
/// read from it in the UART IRQ.
static UART_TX_QUEUE: UartQueue = UartQueue ;
/// 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