From dbc5edac7e67b65ac3221523dbe33a988b678222 Mon Sep 17 00:00:00 2001 From: Neil Kolban Date: Fri, 25 Nov 2016 22:05:50 -0600 Subject: [PATCH] Removal of spurious newline character in debug statement There was a debug statement in the code that included an additional newline character that wasn't needed. --- components/driver/rmt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/driver/rmt.c b/components/driver/rmt.c index 9fc36d49c2..f23fa257d0 100644 --- a/components/driver/rmt.c +++ b/components/driver/rmt.c @@ -515,7 +515,7 @@ static void IRAM_ATTR rmt_driver_isr_default(void* arg) switch(i % 3) { //TX END case 0: - ESP_EARLY_LOGD(RMT_TAG, "RMT INTR : TX END\n"); + ESP_EARLY_LOGD(RMT_TAG, "RMT INTR : TX END"); xSemaphoreGiveFromISR(p_rmt->tx_sem, &HPTaskAwoken); if(HPTaskAwoken == pdTRUE) { portYIELD_FROM_ISR(); -- 2.40.0