Use stopListening() in SoftwareSerial::end()
stopListening also disabled the interrupt, if needed, so calling that function makes more sense. Since stopListening only disables the interrupt when the current SoftwareSerial is the active object, and that can only be the case when _rx_delay_stopbit is non-zero, there is no need to separately check _rx_delay_stopbit anymore.
This commit is contained in:
parent
a7aaa32b49
commit
0001ea1d3d
|
@ -442,8 +442,7 @@ void SoftwareSerial::setRxIntMsk(bool enable)
|
||||||
|
|
||||||
void SoftwareSerial::end()
|
void SoftwareSerial::end()
|
||||||
{
|
{
|
||||||
if (_rx_delay_stopbit)
|
stopListening();
|
||||||
setRxIntMsk(false);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue