Kernel - Slight reworks to timer code
[tpg/acess2.git] / Modules / USB / Core / usb.h
index 8759ee1..5a13363 100644 (file)
@@ -1,6 +1,9 @@
 /*
- * AcessOS Version 1
- * USB Stack
+ * Acess2 USB Stack
+ * - By John Hodge (thePowersGang)
+ * 
+ * usb.h
+ * - USB Internal definitions
  */
 #ifndef _USB_H_
 #define _USB_H_
@@ -27,14 +30,17 @@ struct sUSBHub
 
 struct sUSBEndpoint
 {
-       tUSBEndpoint    *Next;  // In the poll list
+       tUSBEndpoint    *Next;  // (usb_poll.c) Clock list
        tUSBInterface   *Interface;
-        int    EndpointNum;
+        int    EndpointIdx;    // Interface endpoint index
+        int    EndpointNum;    // Device endpoint num
        
         int    PollingPeriod;  // In 1ms intervals
         int    MaxPacketSize;  // In bytes
-
        Uint8   Type;   // Same as sUSBDriver.Endpoints.Type
+       
+        int    PollingAtoms;   // (usb_poll.c) Period in clock list
+       void    *InputData;
 };
 
 /**
@@ -42,7 +48,7 @@ struct sUSBEndpoint
  */
 struct sUSBInterface
 {
-       tUSBInterface   *Next;
+//     tUSBInterface   *Next;
        tUSBDevice      *Dev;
 
        tUSBDriver      *Driver;
@@ -83,6 +89,6 @@ struct sUSBHost
        tUSBHub RootHub;
 };
 
-extern void    USB_NewDevice(tUSBHub *Hub);
+extern tUSBDriver      *USB_int_FindDriverByClass(Uint32 ClassCode);
 
 #endif

UCC git Repository :: git.ucc.asn.au