forked from espressif/esp-idf
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.
This commit is contained in:
committed by
Angus Gratton
parent
9a774848d4
commit
dbc5edac7e
@@ -515,7 +515,7 @@ static void IRAM_ATTR rmt_driver_isr_default(void* arg)
|
|||||||
switch(i % 3) {
|
switch(i % 3) {
|
||||||
//TX END
|
//TX END
|
||||||
case 0:
|
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);
|
xSemaphoreGiveFromISR(p_rmt->tx_sem, &HPTaskAwoken);
|
||||||
if(HPTaskAwoken == pdTRUE) {
|
if(HPTaskAwoken == pdTRUE) {
|
||||||
portYIELD_FROM_ISR();
|
portYIELD_FROM_ISR();
|
||||||
|
Reference in New Issue
Block a user