usbd_blaster/
lib.rs

1#![no_std]
2#![forbid(unsafe_code)]
3
4mod blaster;
5mod class;
6mod ft245;
7mod port;
8
9use usb_device::prelude::UsbVidPid;
10
11extern crate embedded_hal as hal;
12
13/// The Vendor ID and Product ID for an Altera Blaster.
14/// Use this when building your USB device for Quartus to recognize the blaster.
15pub const ALTERA_BLASTER_USB_VID_PID: UsbVidPid = UsbVidPid(0x09FB, 0x6001);
16
17pub use blaster::Blaster;