We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 17715d6 commit 445ef18Copy full SHA for 445ef18
examples/Beginner/Audio_Playback/Audio_Playback.ino
@@ -21,13 +21,12 @@ void setup()
21
Serial.begin(115200);
22
while (!Serial);
23
24
+ /* Enable power for HOST USB connector. */
25
pinMode(PA_15, OUTPUT);
26
digitalWrite(PA_15, HIGH);
27
28
Serial.println("Please connect a USB stick to the GIGA's USB port ...");
-
29
- while (!msd.connect())
30
- delay(1000);
+ while (!msd.connect()) delay(100);
31
32
Serial.println("Mounting USB device ...");
33
int const rc_mount = usb.mount(&msd);
0 commit comments