diff options
author | Alexander Entinger <consulting@lxrobotics.com> | 2019-09-16 11:58:07 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-16 11:58:07 +0200 |
commit | cc8daac45ed0b15896101b691865039c155693bb (patch) | |
tree | f1799d4d10251433162df3a354f844d59adcdd45 | |
parent | 371897011d2242d2b0deb3b44d9477714a5b870b (diff) | |
parent | b237dcc8e23abb9e79228e3a175a5286131f9f7a (diff) |
Merge pull request #92 from matthijskooijman/cdc-no-prototocol-at
Do not claim AT-protocol in CDC interface descriptor
-rw-r--r-- | cores/arduino/CDC.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cores/arduino/CDC.cpp b/cores/arduino/CDC.cpp index 142f8f6..4ff6b9b 100644 --- a/cores/arduino/CDC.cpp +++ b/cores/arduino/CDC.cpp @@ -41,7 +41,7 @@ static u8 wdtcsr_save; extern const CDCDescriptor _cdcInterface PROGMEM; const CDCDescriptor _cdcInterface = { - D_IAD(0,2,CDC_COMMUNICATION_INTERFACE_CLASS,CDC_ABSTRACT_CONTROL_MODEL,1), + D_IAD(0,2,CDC_COMMUNICATION_INTERFACE_CLASS,CDC_ABSTRACT_CONTROL_MODEL,0), // CDC communication interface D_INTERFACE(CDC_ACM_INTERFACE,1,CDC_COMMUNICATION_INTERFACE_CLASS,CDC_ABSTRACT_CONTROL_MODEL,0), |