| Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
majbthrd-nuc120
|
|
|
|
|
|
Port samg55
|
|
|
|
correct usb descriptor msc dual example to work with samg
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Clean and invalidate the DCache when we have one.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
dcd_eptri: Fix rx_buffer/tx_buffer volatile annotation
|
|
This makes `rx_buffer` and `tx_buffer` *pointers*
volatile in order to avoid caching them in a register.
The original notation meant "a pointer to a volatile value"
(equivalent of `volatile uint8_t *`). This resulted in
`while(rx_buffer[ep_num] != NULL) ;` loop to get stuck
forever, even though the IRQ handler set the `rx_buffer[ep_num] = NULL`.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
issue occur due to race condition
https://github.com/adafruit/Adafruit_TinyUSB_Arduino/issues/37
|
|
add msc scsi command list
|
|
|
|
incorrect queue 448 bytes instead of 512
|
|
|
|
Update dcd_stm32_fsdev.c with note about F042Fx remapping
|
|
Add a note about pin remapping for the STM32F042Fx
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|