aboutsummaryrefslogtreecommitdiff
path: root/cores/arduino/HardwareSerial.h
diff options
context:
space:
mode:
authorDavid A. Mellis <d.mellis@arduino.cc>2011-08-31 15:52:56 -0400
committerDavid A. Mellis <d.mellis@arduino.cc>2011-08-31 15:52:56 -0400
commit7b0d88b954d7e62495cdf03d732f2d5f90ab5bec (patch)
tree072de8889750209b5e78c3944f65b5c09f1c3950 /cores/arduino/HardwareSerial.h
parent84a0ad9fd3be4e90d3dbd730246dc30851012a09 (diff)
Moving serialEvent() calls from RX interrupts to main for() loop (after loop()).
http://code.google.com/p/arduino/issues/detail?id=584
Diffstat (limited to 'cores/arduino/HardwareSerial.h')
-rw-r--r--cores/arduino/HardwareSerial.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/cores/arduino/HardwareSerial.h b/cores/arduino/HardwareSerial.h
index 1895f08..cbb0e5e 100644
--- a/cores/arduino/HardwareSerial.h
+++ b/cores/arduino/HardwareSerial.h
@@ -74,4 +74,6 @@ class HardwareSerial : public Stream
extern HardwareSerial Serial3;
#endif
+extern void serialEventRun(void);
+
#endif