/examples/pico_usb_twitchy_mouse.rs
//! # Pico USB 'Twitchy' Mouse Example
//!
//! Creates a USB HID Class Pointing device (i.e. a virtual mouse) on a Pico
//! board, with the USB driver running in the main thread.
//!
//! It generates movement reports which will twitch the cursor up and down by a
//! few pixels, several times a second.
//!
//! See the `Cargo.toml` file for Copyright and license details.
//!
//! This is a port of
//! https://github.com/atsamd-rs/atsamd/blob/master/boards/itsybitsy_m0/examples/twitching_usb_mouse.rs
// The macro for our start-up function
use entry;
// The macro for marking our interrupt functions
use interrupt;
// 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;
// USB Device support
use ;
// USB Human Interface Device (HID) Class support
use *;
use MouseReport;
use HIDClass;
/// The USB Device Driver (shared with the interrupt).
static mut USB_DEVICE: = None;
/// The USB Bus Driver (shared with the interrupt).
static mut USB_BUS: = None;
/// The USB Human Interface Device Driver (shared with the interrupt).
static mut USB_HID: = None;
/// 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 submits cursor movement
/// updates periodically.
!
/// Submit a new mouse movement report to the USB stack.
///
/// We do this with interrupts disabled, to avoid a race hazard with the USB IRQ.
/// This function is called whenever the USB Hardware generates an Interrupt
/// Request.
unsafe
// End of file