rmt/driver: Add module reset before enabling

This commit is contained in:
Konstantin Kondrashov 2019-05-14 20:02:01 +08:00 committed by KonstantinKondrashov
parent 46e918cfa1
commit 2165154c04
1 changed files with 5 additions and 0 deletions

View File

@ -425,6 +425,11 @@ esp_err_t rmt_config(const rmt_config_t* rmt_param)
RMT_CHECK((!carrier_en || carrier_freq_hz > 0), "RMT carrier frequency can't be zero", ESP_ERR_INVALID_ARG);
}
static bool rmt_enable = false;
if (rmt_enable == false) {
periph_module_reset(PERIPH_RMT_MODULE);
rmt_enable = true;
}
periph_module_enable(PERIPH_RMT_MODULE);
RMT.conf_ch[channel].conf0.div_cnt = clk_div;