diff options
author | Matthijs Kooijman <matthijs@stdin.nl> | 2013-06-04 11:22:19 +0200 |
---|---|---|
committer | Matthijs Kooijman <matthijs@stdin.nl> | 2015-01-26 17:03:25 +0100 |
commit | 7366268025c04aa15a94d88191c0a510302236b0 (patch) | |
tree | ead74f7d181ab2e79485c3a16d2950c9112a6269 /libraries/SoftwareSerial/SoftwareSerial.h | |
parent | 51b8ed26752caacecb23c75a11c1e1f1b26dea5a (diff) |
Add SoftwareSerial::setRxIntMsk()
This moves the interrupt mask enabling / disabling code into a separate
method, so we can call it from multiple spots next.
Diffstat (limited to 'libraries/SoftwareSerial/SoftwareSerial.h')
-rw-r--r-- | libraries/SoftwareSerial/SoftwareSerial.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libraries/SoftwareSerial/SoftwareSerial.h b/libraries/SoftwareSerial/SoftwareSerial.h index a6a60b5..31bd229 100644 --- a/libraries/SoftwareSerial/SoftwareSerial.h +++ b/libraries/SoftwareSerial/SoftwareSerial.h @@ -74,6 +74,7 @@ private: void tx_pin_write(uint8_t pin_state);
void setTX(uint8_t transmitPin);
void setRX(uint8_t receivePin);
+ void setRxIntMsk(bool enable);
// private static method for timing
static inline void tunedDelay(uint16_t delay);
|