Procházet zdrojové kódy

Lengthen USB Serial.begin() wait - needed for slow Windows systems

https://forum.pjrc.com/threads/44904-Teensyduino-1-37-Beta-3?p=146286&viewfull=1#post146286
teensy4-core
PaulStoffregen před 7 roky
rodič
revize
766b855592
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. +1
    -1
      teensy3/usb_serial.h

+ 1
- 1
teensy3/usb_serial.h Zobrazit soubor

@@ -76,7 +76,7 @@ public:
uint32_t millis_begin = systick_millis_count;
while (!(*this)) {
// wait up to 1 second for Arduino Serial Monitor
if ((uint32_t)(systick_millis_count - millis_begin) > 1000) break;
if ((uint32_t)(systick_millis_count - millis_begin) > 4000) break;
}
}
void end() { /* TODO: flush output and shut down USB port */ };

Načítá se…
Zrušit
Uložit