USB_Request(Dev, 0, 0x23, CLEAR_FEATURE, C_PORT_CONNECTION, Port, 0, NULL);
}
+
+ // Reset change
+ if( status[1] & 0x0010 )
+ {
+ if( status[0] & 0x0010 ) {
+ // Reset complete
+ }
+ else {
+ // Useful?
+ }
+ // ACK
+ USB_Request(Dev, 0, 0x23, CLEAR_FEATURE, C_PORT_RESET, Port, 0, NULL);
+ }
}
// }
src_len = (str.Length - 2) / sizeof(str.Data[0]);
+ LOG("&str = %p, src_len = %i", &str, src_len);
+
new_len = _UTF16to8(str.Data, src_len, NULL);
ret = malloc( new_len + 1 );
_UTF16to8(str.Data, src_len, ret);
#define POLL_MAX 256 // Max period that can be nominated
#define POLL_SLOTS ((int)(POLL_MAX/POLL_ATOM))
+// === IMPORTS ===
+extern tUSBHost *gUSB_Hosts;
+
// === PROTOTYPES ===
void USB_StartPollingEndpoint(tUSBInterface *Iface, int Endpoint);
{
int idx = giUSB_PollPosition + 1;
if(idx >= POLL_SLOTS) idx -= POLL_SLOTS;
- LOG("idx = %i", idx);
endpt->Next = gUSB_PollQueues[idx];
gUSB_PollQueues[idx] = endpt;
}
{
tUSBEndpoint *ep, *prev;
+ if(giUSB_PollPosition == 0)
+ {
+ // Check hosts
+ for( tUSBHost *host = gUSB_Hosts; host; host = host->Next )
+ {
+ host->HostDef->CheckPorts(host->Ptr);
+ }
+ }
+
// A little evil for neater code
prev = (void*)( (tVAddr)&gUSB_PollQueues[giUSB_PollPosition] - offsetof(tUSBEndpoint, Next) );
for( ep = gUSB_PollQueues[giUSB_PollPosition]; ep; prev = ep, ep = ep->Next )
{
int period_in_atoms = ep->PollingAtoms;
- LOG("%i: ep = %p", giUSB_PollPosition, ep);
+// LOG("%i: ep = %p", giUSB_PollPosition, ep);
// Check for invalid entries
if(period_in_atoms < 0 || period_in_atoms > POLL_ATOM)