]> granicus.if.org Git - esp-idf/commitdiff
Removal of spurious newline character in debug statement
authorNeil Kolban <kolban1@kolban.com>
Sat, 26 Nov 2016 04:05:50 +0000 (22:05 -0600)
committerAngus Gratton <angus@espressif.com>
Wed, 7 Dec 2016 21:57:09 +0000 (13:57 -0800)
There was a debug statement in the code that included an additional newline character that wasn't needed.

components/driver/rmt.c

index 9fc36d49c2e35cc5e5a61b4a3d87a6f04dd26a4f..f23fa257d023b00a4560e2d845cdb65365c1bdc5 100644 (file)
@@ -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();