From 6d9ebea5008be540aaea5ad3cffc6ceb583692e3 Mon Sep 17 00:00:00 2001 From: Lucas Saavedra Vaz Date: Fri, 27 Oct 2023 09:52:33 -0300 Subject: [PATCH] RMT: Fix RMT TX interrupt level (#8813) --- cores/esp32/esp32-hal-rmt.c | 1 + 1 file changed, 1 insertion(+) diff --git a/cores/esp32/esp32-hal-rmt.c b/cores/esp32/esp32-hal-rmt.c index e5838a91f25..fa06daa34f6 100644 --- a/cores/esp32/esp32-hal-rmt.c +++ b/cores/esp32/esp32-hal-rmt.c @@ -513,6 +513,7 @@ bool rmtInit(int pin, rmt_ch_dir_t channel_direction, rmt_reserve_memsize_t mem_ tx_cfg.flags.with_dma = 0; tx_cfg.flags.io_loop_back = 0; tx_cfg.flags.io_od_mode = 0; + tx_cfg.intr_priority = 0; if (rmt_new_tx_channel(&tx_cfg, &bus->rmt_channel_h) != ESP_OK) { log_e("GPIO %d - RMT TX Initialization error.", pin);