We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eed66e7 commit f8a939bCopy full SHA for f8a939b
cores/arduino/USB/USBCore.cpp
@@ -684,10 +684,14 @@ static void USB_ISR(void)
684
// Send the endpoint status
685
// Check if the endpoint if currently halted
686
if( isEndpointHalt == 1 )
687
- UDD_Send8(EP0, 1); // TODO
+ {
688
+ UDD_Send8(EP0, 1); // TODO
689
+ }
690
else
- UDD_Send8(EP0, 0); // TODO
- UDD_Send8(EP0, 0);
691
692
+ UDD_Send8(EP0, 0); // TODO
693
694
+ UDD_Send8(EP0, 0);
695
}
696
697
else if (CLEAR_FEATURE == r)
0 commit comments