diff options
author | Matthijs Kooijman <matthijs@stdin.nl> | 2014-12-08 09:27:41 +0100 |
---|---|---|
committer | Matthijs Kooijman <matthijs@stdin.nl> | 2015-01-26 17:03:25 +0100 |
commit | 827c349a17e319d33f048ee402835bd40f9e42b6 (patch) | |
tree | 9220a959a3d0a51725d7b2991d37acad72a0dbfa /libraries | |
parent | 0a6072dccb5e8c278620ce8ae23fdf420dc807f1 (diff) |
Remove unneeded #ifdef in SoftwareSerial
The debugPulse function definition already checks for _DEBUG, resulting
in an empty function definiton and the function call being optimized
away.
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/SoftwareSerial/SoftwareSerial.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libraries/SoftwareSerial/SoftwareSerial.cpp b/libraries/SoftwareSerial/SoftwareSerial.cpp index 2977b1c..b7dc5c2 100644 --- a/libraries/SoftwareSerial/SoftwareSerial.cpp +++ b/libraries/SoftwareSerial/SoftwareSerial.cpp @@ -175,9 +175,7 @@ void SoftwareSerial::recv() }
else
{
-#if _DEBUG // for scope: pulse pin as overflow indictator
DebugPulse(_DEBUG_PIN1, 1);
-#endif
_buffer_overflow = true;
}
|