diff options
| author | hathach <[email protected]> | 2013-04-05 14:00:37 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2013-04-05 14:00:37 +0700 |
| commit | 68dddefe7b87583cf2eaac68f2d77e2a5efd3d69 (patch) | |
| tree | 33f1e4d93a517453992abf922629822f017b183c /tinyusb/host | |
| parent | fcb8e295ecf5b50ffe2ec98d648d461bc215e2af (diff) | |
add control xfer for ehci controller fake: ehci_controller_control_xfer_proceed
refractor test code
Diffstat (limited to 'tinyusb/host')
| -rw-r--r-- | tinyusb/host/ehci/ehci.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/tinyusb/host/ehci/ehci.c b/tinyusb/host/ehci/ehci.c index b698fa229..6b179e99b 100644 --- a/tinyusb/host/ehci/ehci.c +++ b/tinyusb/host/ehci/ehci.c @@ -402,7 +402,6 @@ tusb_error_t hcd_pipe_close(pipe_handle_t pipe_hdl) return TUSB_ERROR_NONE; } - //--------------------------------------------------------------------+ // EHCI Interrupt Handler //--------------------------------------------------------------------+ @@ -539,7 +538,6 @@ void period_list_process_isr(ehci_qhd_t const * const period_head) } max_loop++; } - } void xfer_error_isr(uint8_t hostid) @@ -788,7 +786,6 @@ static void qtd_init(ehci_qtd_t* p_qtd, uint32_t data_ptr, uint16_t total_bytes) p_qtd->total_bytes = total_bytes; p_qtd->buffer[0] = data_ptr; - for(uint8_t i=1; i<5; i++) { p_qtd->buffer[i] |= align4k( p_qtd->buffer[i-1] ) + 4096; |
