Skip to content

Commit

Permalink
RMT: Fix RMT TX interrupt level
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasssvaz committed Oct 27, 2023
1 parent a3d8de6 commit 40195c9
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions cores/esp32/esp32-hal-rmt.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 40195c9

Please sign in to comment.