We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f08c9a0 commit 6f737c3Copy full SHA for 6f737c3
examples/usb_cdc/usb_cdc/usb_cdc.ino
@@ -27,8 +27,14 @@ void loop() {
27
if (digitalRead(INT_PIN) == LOW) {
28
canHacker->processInterrupt();
29
}
30
+
31
+ // uncomment that lines for Leonardo, Pro Micro or Esplora
32
+ // if (Serial.available()) {
33
+ // lineReader->process();
34
+ // }
35
36
37
+// serialEvent handler not supported by Leonardo, Pro Micro and Esplora
38
void serialEvent() {
39
lineReader->process();
40
0 commit comments