From 64f26be0539b54f5bab4656bc85173cb19ad11ec Mon Sep 17 00:00:00 2001 From: Angus Gratton Date: Wed, 22 Mar 2017 14:29:16 +0800 Subject: [PATCH] rmt driver: Remove accidental ESP_LOGE in isr handler Closes #451 https://github.com/espressif/esp-idf/issues/451 --- 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 6ff1fb671a..c216c7475f 100644 --- a/components/driver/rmt.c +++ b/components/driver/rmt.c @@ -555,7 +555,7 @@ static void IRAM_ATTR rmt_driver_isr_default(void* arg) if(p_rmt->rx_buf) { BaseType_t res = xRingbufferSendFromISR(p_rmt->rx_buf, (void*) RMTMEM.chan[channel].data32, item_len * 4, &HPTaskAwoken); if(res == pdFALSE) { - ESP_LOGE(RMT_TAG, "RMT RX BUFFER FULL"); + ESP_EARLY_LOGE(RMT_TAG, "RMT RX BUFFER FULL"); } else { }