From 6854a773e246e5b6b74a3edd94c55016444b72d4 Mon Sep 17 00:00:00 2001 From: jflyper Date: Tue, 16 May 2017 15:58:33 +0900 Subject: [PATCH] Remove debug statements --- src/main/drivers/serial_softserial.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/main/drivers/serial_softserial.c b/src/main/drivers/serial_softserial.c index 17476216db..105b0c0b06 100644 --- a/src/main/drivers/serial_softserial.c +++ b/src/main/drivers/serial_softserial.c @@ -482,7 +482,6 @@ void processRxState(softSerial_t *softSerial) void onSerialTimerOverflow(timerOvrHandlerRec_t *cbRec, captureCompare_t capture) { -debug[0]++; UNUSED(capture); softSerial_t *self = container_of(cbRec, softSerial_t, overCb); @@ -495,7 +494,6 @@ debug[0]++; void onSerialRxPinChange(timerCCHandlerRec_t *cbRec, captureCompare_t capture) { -debug[1]++; UNUSED(capture); softSerial_t *self = container_of(cbRec, softSerial_t, edgeCb);