mirror of
https://github.com/ferrous-systems/embedded-trainings-2020.git
synced 2025-01-10 16:25:37 +00:00
176 lines
5.7 KiB
Rust
176 lines
5.7 KiB
Rust
#![no_main]
|
|
#![no_std]
|
|
|
|
use core::num::NonZeroU8;
|
|
|
|
use dk::{
|
|
peripheral::USBD,
|
|
usbd::{self, Ep0In, Event},
|
|
};
|
|
use panic_log as _; // panic handler
|
|
use usb2::{GetDescriptor as Descriptor, StandardRequest as Request, State};
|
|
|
|
#[rtic::app(device = dk)]
|
|
const APP: () = {
|
|
struct Resources {
|
|
ep0in: Ep0In,
|
|
state: State,
|
|
usbd: USBD,
|
|
}
|
|
|
|
#[init]
|
|
fn init(_cx: init::Context) -> init::LateResources {
|
|
let board = dk::init().unwrap();
|
|
|
|
usbd::init(board.power, &board.usbd);
|
|
|
|
init::LateResources {
|
|
usbd: board.usbd,
|
|
state: State::Default,
|
|
ep0in: board.ep0in,
|
|
}
|
|
}
|
|
|
|
#[task(binds = USBD, resources = [state, usbd, ep0in])]
|
|
fn main(cx: main::Context) {
|
|
let usbd = cx.resources.usbd;
|
|
let state = cx.resources.state;
|
|
let ep0in = cx.resources.ep0in;
|
|
|
|
while let Some(event) = usbd::next_event(usbd) {
|
|
on_event(usbd, state, ep0in, event)
|
|
}
|
|
}
|
|
};
|
|
|
|
fn on_event(usbd: &USBD, state: &mut State, ep0in: &mut Ep0In, event: Event) {
|
|
log::info!("USB: {:?} @ {:?}", event, dk::uptime());
|
|
|
|
match event {
|
|
Event::UsbReset => {
|
|
log::info!("USB reset condition detected");
|
|
*state = State::Default;
|
|
}
|
|
|
|
Event::UsbEp0DataDone => {
|
|
log::info!("EP0IN: transfer complete");
|
|
ep0in.end(usbd)
|
|
}
|
|
|
|
Event::UsbEp0Setup => {
|
|
if ep0setup(usbd, state, ep0in).is_err() {
|
|
log::warn!("EP0IN: unexpected request; stalling the endpoint");
|
|
usbd::ep0stall(usbd);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/// The `bConfigurationValue` of the only supported configuration
|
|
const CONFIG_VAL: u8 = 42;
|
|
|
|
fn ep0setup(usbd: &USBD, state: &mut State, ep0in: &mut Ep0In) -> Result<(), ()> {
|
|
let bmrequesttype = usbd.bmrequesttype.read().bits() as u8;
|
|
let brequest = usbd.brequest.read().brequest().bits();
|
|
let wlength = usbd::wlength(usbd);
|
|
let windex = usbd::windex(usbd);
|
|
let wvalue = usbd::wvalue(usbd);
|
|
|
|
let request = Request::parse(bmrequesttype, brequest, wvalue, windex, wlength)
|
|
.expect("Error parsing request");
|
|
log::info!("EP0: {:?}", request);
|
|
|
|
match request {
|
|
// section 9.4.3
|
|
// this request is valid in any state
|
|
Request::GetDescriptor { descriptor, length } => match descriptor {
|
|
Descriptor::Device => {
|
|
let desc = usb2::device::Descriptor {
|
|
bDeviceClass: 0,
|
|
bDeviceProtocol: 0,
|
|
bDeviceSubClass: 0,
|
|
bMaxPacketSize0: usb2::device::bMaxPacketSize0::B64,
|
|
bNumConfigurations: core::num::NonZeroU8::new(1).unwrap(),
|
|
bcdDevice: 0x0100, // 1.00
|
|
iManufacturer: None,
|
|
iProduct: None,
|
|
iSerialNumber: None,
|
|
idProduct: consts::PID,
|
|
idVendor: consts::VID,
|
|
};
|
|
let bytes = desc.bytes();
|
|
ep0in.start(&bytes[..core::cmp::min(bytes.len(), length.into())], usbd);
|
|
}
|
|
|
|
Descriptor::Configuration { index } => {
|
|
if index == 0 {
|
|
let mut resp = heapless::Vec::<u8, heapless::consts::U64>::new();
|
|
|
|
let conf_desc = usb2::configuration::Descriptor {
|
|
wTotalLength: (usb2::configuration::Descriptor::SIZE
|
|
+ usb2::interface::Descriptor::SIZE)
|
|
.into(),
|
|
bNumInterfaces: NonZeroU8::new(1).unwrap(),
|
|
bConfigurationValue: core::num::NonZeroU8::new(CONFIG_VAL).unwrap(),
|
|
iConfiguration: None,
|
|
bmAttributes: usb2::configuration::bmAttributes {
|
|
self_powered: true,
|
|
remote_wakeup: false,
|
|
},
|
|
bMaxPower: 250, // 500 mA
|
|
};
|
|
|
|
let iface_desc = usb2::interface::Descriptor {
|
|
bInterfaceNumber: 0,
|
|
bAlternativeSetting: 0,
|
|
bNumEndpoints: 0,
|
|
bInterfaceClass: 0,
|
|
bInterfaceSubClass: 0,
|
|
bInterfaceProtocol: 0,
|
|
iInterface: None,
|
|
};
|
|
|
|
resp.extend_from_slice(&conf_desc.bytes()).unwrap();
|
|
resp.extend_from_slice(&iface_desc.bytes()).unwrap();
|
|
ep0in.start(&resp[..core::cmp::min(resp.len(), length.into())], usbd);
|
|
} else {
|
|
// out of bounds access: stall the endpoint
|
|
return Err(());
|
|
}
|
|
}
|
|
|
|
_ => return Err(()),
|
|
},
|
|
|
|
Request::SetAddress { address } => {
|
|
match state {
|
|
State::Default => {
|
|
if let Some(address) = address {
|
|
*state = State::Address(address);
|
|
} else {
|
|
// stay in the default state
|
|
}
|
|
}
|
|
|
|
State::Address(..) => {
|
|
if let Some(address) = address {
|
|
// use the new address
|
|
*state = State::Address(address);
|
|
} else {
|
|
*state = State::Default;
|
|
}
|
|
}
|
|
|
|
// unspecified behavior
|
|
State::Configured { .. } => return Err(()),
|
|
}
|
|
|
|
// the response to this request is handled in hardware
|
|
}
|
|
|
|
// stall any other request
|
|
_ => return Err(()),
|
|
}
|
|
|
|
Ok(())
|
|
}
|