USBHOST lib for STM

Dependents:   door-access-controller-dev

Revision:
3:1c76b46ad779
Parent:
1:ab240722d7ef
Child:
5:fc157e6bd5a5
--- a/USBHost/USBHostTypes.h	Wed Feb 15 10:49:44 2017 +0100
+++ b/USBHost/USBHostTypes.h	Fri Feb 17 12:40:57 2017 +0100
@@ -152,11 +152,12 @@
 #if defined(USBHOST_OTHER)
 
 typedef struct hcTd {
-	__IO uint32_t state;
+	__IO  uint32_t state;
 	__IO  uint8_t *  currBufPtr;    // Physical address of current buffer pointer
 	__IO  hcTd *     nextTD;         // Physical pointer to next Transfer Descriptor
 	__IO  uint32_t   size;        // size of buffer
 	void * ep;                      // ep address where a td is linked in
+	__IO  uint32_t retry;
 } PACKED HCTD;
 // ----------- HostController EndPoint Descriptor -------------
 typedef struct hcEd {