diff --git a/hardware/arduino/sam/cores/arduino/USB/CDC.cpp b/hardware/arduino/sam/cores/arduino/USB/CDC.cpp index 306c124ff..9ab8356d9 100644 --- a/hardware/arduino/sam/cores/arduino/USB/CDC.cpp +++ b/hardware/arduino/sam/cores/arduino/USB/CDC.cpp @@ -141,6 +141,11 @@ bool WEAK CDC_Setup(USBSetup& setup) } return true; } + + if (CDC_SEND_BREAK == r) + { + return true; + } } return false; }