Merge branch 'master' into rp2040device

This commit is contained in:
majbthrd
2021-02-25 08:57:09 -06:00
committed by GitHub
50 changed files with 531 additions and 3595 deletions

View File

@@ -67,15 +67,15 @@ struct hw_endpoint
// Current transfer information
bool active;
uint total_len;
uint len;
uint16_t total_len;
uint16_t len;
// Amount of data with the hardware
uint transfer_size;
uint16_t transfer_size;
// User buffer in main memory
uint8_t *user_buf;
// Data needed from EP descriptor
uint wMaxPacketSize;
uint16_t wMaxPacketSize;
// Interrupt, bulk, etc
uint8_t transfer_type;