Browse Source

removed debug code

timer1
Youen Toupin 9 years ago
parent
commit
0790201af9
  1. 16
      OneWireSlave.cpp

16
OneWireSlave.cpp

@ -90,9 +90,7 @@ void OneWireSlave::begin(byte* rom, byte pinNumber)
void OneWireSlave::end() void OneWireSlave::end()
{ {
#ifdef DEBUG_LOG // log("Disabling 1-wire library");
debug.append("Disabling 1-wire library");
#endif
cli(); cli();
disableTimer_(); disableTimer_();
@ -143,26 +141,14 @@ void OneWireSlave::disableTimer_()
void OneWireSlave::onEnterInterrupt_() void OneWireSlave::onEnterInterrupt_()
{ {
#ifdef DEBUG_LOG
dbgOutput.writeLow();
#endif
} }
void OneWireSlave::onLeaveInterrupt_() void OneWireSlave::onLeaveInterrupt_()
{ {
#ifdef DEBUG_LOG
dbgOutput.writeHigh();
#endif
} }
void OneWireSlave::error_(const char* message) void OneWireSlave::error_(const char* message)
{ {
#ifdef DEBUG_LOG
if (message == 0)
debug.append("unspecified error");
else
debug.append(message);
#endif
beginWaitReset_(); beginWaitReset_();
} }

Loading…
Cancel
Save