//! USB resources available to apps.
useembassy_rp::{Peri,peripherals::USB};/// The board's USB peripheral token as stored in the resource registry.
pubtypeUsbPeripheral=Peri<'static, USB>;embassy_rp::bind_interrupts!(/// Board IRQ binding used when constructing an Embassy RP USB driver.
pubstructUsbIrqs{
USBCTRL_IRQ => embassy_rp::usb::InterruptHandler<USB>;
});