diff options
author | David A. Mellis <d.mellis@arduino.cc> | 2012-08-28 08:02:54 -0400 |
---|---|---|
committer | David A. Mellis <d.mellis@arduino.cc> | 2012-08-28 08:02:54 -0400 |
commit | 00ab72619ea4364ed446d929e77143ed467514c1 (patch) | |
tree | df42e0427631cc91722eab8ea0ac010efefb24c8 /cores/arduino/HardwareSerial.h | |
parent | c40ab91c41bc9e2ef99600baf8c47dbe191aeb0c (diff) |
Serial.flush() waits for last character to be transmitted (michele.mazzucchi)
http://code.google.com/p/arduino/issues/detail?id=871
Diffstat (limited to 'cores/arduino/HardwareSerial.h')
-rw-r--r-- | cores/arduino/HardwareSerial.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cores/arduino/HardwareSerial.h b/cores/arduino/HardwareSerial.h index bf4924c..5bceb75 100644 --- a/cores/arduino/HardwareSerial.h +++ b/cores/arduino/HardwareSerial.h @@ -43,6 +43,7 @@ class HardwareSerial : public Stream uint8_t _rxcie; uint8_t _udrie; uint8_t _u2x; + bool transmitting; public: HardwareSerial(ring_buffer *rx_buffer, ring_buffer *tx_buffer, volatile uint8_t *ubrrh, volatile uint8_t *ubrrl, |