Explorar el Código

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 hace 7 años
padre
commit
766b855592
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      teensy3/usb_serial.h

+ 1
- 1
teensy3/usb_serial.h Ver fichero

@@ -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 */ };

Cargando…
Cancelar
Guardar