Remove debug statements

This commit is contained in:
jflyper 2017-05-16 15:58:33 +09:00
parent 2b1308a556
commit 6854a773e2
1 changed files with 0 additions and 2 deletions

View File

@ -482,7 +482,6 @@ void processRxState(softSerial_t *softSerial)
void onSerialTimerOverflow(timerOvrHandlerRec_t *cbRec, captureCompare_t capture) void onSerialTimerOverflow(timerOvrHandlerRec_t *cbRec, captureCompare_t capture)
{ {
debug[0]++;
UNUSED(capture); UNUSED(capture);
softSerial_t *self = container_of(cbRec, softSerial_t, overCb); softSerial_t *self = container_of(cbRec, softSerial_t, overCb);
@ -495,7 +494,6 @@ debug[0]++;
void onSerialRxPinChange(timerCCHandlerRec_t *cbRec, captureCompare_t capture) void onSerialRxPinChange(timerCCHandlerRec_t *cbRec, captureCompare_t capture)
{ {
debug[1]++;
UNUSED(capture); UNUSED(capture);
softSerial_t *self = container_of(cbRec, softSerial_t, edgeCb); softSerial_t *self = container_of(cbRec, softSerial_t, edgeCb);