From a07f21f5706fbf22de6e630e6500621563eaff6d Mon Sep 17 00:00:00 2001 From: per1234 Date: Sun, 3 Feb 2019 04:34:09 -0800 Subject: [PATCH] Update serialEvent() hardware support documentation serialEvent*() doesn't work on the SAMD and SAM boards. Strangely, the ARC32 core (101) has a call to serialEvent(), but not one to serialEvent1(). I don't own a 101 so I can't verify any level of support on that board. --- .../Communication/Serial/serialEvent.adoc | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/Language/Functions/Communication/Serial/serialEvent.adoc b/Language/Functions/Communication/Serial/serialEvent.adoc index 9c531e94d..774511754 100644 --- a/Language/Functions/Communication/Serial/serialEvent.adoc +++ b/Language/Functions/Communication/Serial/serialEvent.adoc @@ -15,8 +15,6 @@ title: Serial.serialEvent() [float] === Description Called when data is available. Use `Serial.read()` to capture this data. - -NB : Currently, `serialEvent()` is not compatible with the Esplora, Leonardo, or Micro [%hardbreaks] @@ -57,6 +55,23 @@ Nothing // OVERVIEW SECTION ENDS +// HOW TO USE SECTION STARTS +[#howtouse] +-- + +[float] +=== Notes and Warnings +`serialEvent()` doesn't work on the Leonardo or Micro. + +`serialEvent()` and `serialEvent1()` don't work on the Arduino SAMD Boards + +`serialEvent()`, `serialEvent1()``serialEvent2()`, and `serialEvent3()` don't work on the Arduino Due. +[%hardbreaks] + +-- +// HOW TO USE SECTION ENDS + + // SEE ALSO SECTION [#see_also] --