mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
rmt driver: Remove accidental ESP_LOGE in isr handler
Closes #451 https://github.com/espressif/esp-idf/issues/451
This commit is contained in:
parent
c30bba8c63
commit
64f26be053
@ -555,7 +555,7 @@ static void IRAM_ATTR rmt_driver_isr_default(void* arg)
|
|||||||
if(p_rmt->rx_buf) {
|
if(p_rmt->rx_buf) {
|
||||||
BaseType_t res = xRingbufferSendFromISR(p_rmt->rx_buf, (void*) RMTMEM.chan[channel].data32, item_len * 4, &HPTaskAwoken);
|
BaseType_t res = xRingbufferSendFromISR(p_rmt->rx_buf, (void*) RMTMEM.chan[channel].data32, item_len * 4, &HPTaskAwoken);
|
||||||
if(res == pdFALSE) {
|
if(res == pdFALSE) {
|
||||||
ESP_LOGE(RMT_TAG, "RMT RX BUFFER FULL");
|
ESP_EARLY_LOGE(RMT_TAG, "RMT RX BUFFER FULL");
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user