removed delay in SetAddress()

This commit is contained in:
Oleg Mazurov 2012-01-06 11:14:40 -07:00
parent 6280543eda
commit 7972c403b1

View file

@ -111,7 +111,7 @@ uint8_t USB::SetAddress(uint8_t addr, uint8_t ep, EpInfo **ppep, uint16_t &nak_l
// Set bmLOWSPEED and bmHUBPRE in case of low-speed device, reset them otherwise
regWr( rMODE, (p->lowspeed) ? mode | bmLOWSPEED | bmHubPre : mode & ~(bmHUBPRE | bmLOWSPEED));
delay(20);
//delay(20);
return 0;
}