1
0
mirror of https://github.com/arduino/Arduino.git synced 2025-01-18 07:52:14 +01:00

Support receiving a USB CDC SEND_BREAK

This commit is contained in:
Sandeep Mistry 2015-11-17 09:57:04 -05:00
parent 2007b623c9
commit 86e34b9940

View File

@ -141,6 +141,11 @@ bool WEAK CDC_Setup(USBSetup& setup)
}
return true;
}
if (CDC_SEND_BREAK == r)
{
return true;
}
}
return false;
}