Matti Virkkunen
Matti Virkkunen
@maxisme Using an iframe from another origin would put same origin restrictions into effect, and the surrounding page would not be able to access the DOM (or mostly anything else)...
~~If the target information is updated to include the address for `DBGMCU_IDCODE` (it seems to be different for some chip families), it would be very nice if `DBGMCU_CR` information could...
### Another relevant problem: More than one device that uses an UART interface supports changing the speed on the fly. Usually they start at a low baud rate, and then...
The reason the whole "require `&mut` to global registers" thing exists is to prevent race conditions. Requiring `&mut` is very powerful in that it requires the user to take care...
@Piroro-hs Does STM32F3 actually support atomic operations in peripheral memory space? I couldn't immediately find any mention one way or the other in documentation.
Hmm.. good question! Calling it only when data is received is somewhat redundant because the specific methods (`control_in`, `endpoint_out`) etc will also have been called at that point if the...
That sounds like a feasible use case. I wonder if it'd be best for `UsbClass::poll` to be called absolutely every time, or are there some cases when it shouldn't. For...
In the next version (in the endpoint-trait branch), UsbClass::poll has been changed so that it is called on every poll while the device is connected, and it gets an "event"...
@TeXitoi Yes, I did, but only after I sent that PR. There doesn't seem to be much activity on this repo at the moment so I'm leaving it be and...
Aw, that's too bad. I guess there is no real way to only temporarily change the boot order to boot from USB then? A hack I came up with was...