diff --git a/micropython/usb/usb-device-cdc/usb/device/cdc.py b/micropython/usb/usb-device-cdc/usb/device/cdc.py index 4ec012bc5..a51941bc0 100644 --- a/micropython/usb/usb-device-cdc/usb/device/cdc.py +++ b/micropython/usb/usb-device-cdc/usb/device/cdc.py @@ -122,7 +122,7 @@ def __init__(self, **kwargs): self.init(**kwargs) def init( - self, baudrate=9600, bits=8, parity="N", stop=1, timeout=None, txbuf=256, rxbuf=256, flow=0 + self, baudrate=9600, bits=8, parity="N", stop=1, timeout=1000, txbuf=256, rxbuf=256, flow=0 ): # Configure the CDC serial port. Note that many of these settings like # baudrate, bits, parity, stop don't change the USB-CDC device behavior