We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 639303d commit c7894e8Copy full SHA for c7894e8
cores/arduino/USB/USBCore.cpp
@@ -801,22 +801,22 @@ bool USBDeviceClass::handleStandardSetup(USBSetup &setup)
801
802
void USBDeviceClass::ISRHandler()
803
{
804
-
805
if (_pack_message == true) {
806
return;
807
}
+
808
// End-Of-Reset
809
if (usbd.isEndOfResetInterrupt())
810
811
+ usbd.ackEndOfResetInterrupt();
812
813
// Configure EP 0
814
initEP(0, USB_ENDPOINT_TYPE_CONTROL);
815
816
// Enable Setup-Received interrupt
817
usbd.epBank0EnableSetupReceived(0);
818
819
_usbConfiguration = 0;
- usbd.ackEndOfResetInterrupt();
820
821
822
// Start-Of-Frame
0 commit comments