Results 44 comments of Matti Virkkunen

Just to let everybody know, I've been working on a generic USB stack crate plus a sample hardware implementation crate for STM32F103 chips for the past few weeks. I've gotten...

I've published a work-in-progress version of my USB stack. The only device implementation is currently for STM32F103 chips, and it comes with a couple of runnable examples. The "serial" example...

@RandomInsano What I think I need the most is feedback on the API, once it's at least somewhat stable (not quite yet). My idea is to design a USB stack...

There's always ways around this, such as `&mut *addr_of_mut!(EP_MEMORY)` or using `MaybeUninit` and `as_mut_ptr()` to get a `'static &mut` - which gets you the same safety issues if you use...