Home
last modified time | relevance | path

Searched refs:div_cnt (Results 1 – 6 of 6) sorted by relevance

/hal_espressif-latest/components/driver/deprecated/driver/
Drmt.h35 esp_err_t rmt_set_clk_div(rmt_channel_t channel, uint8_t div_cnt);
47 esp_err_t rmt_get_clk_div(rmt_channel_t channel, uint8_t *div_cnt);
/hal_espressif-latest/components/hal/esp32/include/hal/
Drmt_ll.h169 HAL_FORCE_MODIFY_U32_REG_FIELD(dev->conf_ch[channel].conf0, div_cnt, div); in rmt_ll_tx_set_channel_clock_div()
340 HAL_FORCE_MODIFY_U32_REG_FIELD(dev->conf_ch[channel].conf0, div_cnt, div); in rmt_ll_rx_set_channel_clock_div()
561 uint32_t div = HAL_FORCE_READ_U32_REG_FIELD(dev->conf_ch[channel].conf0, div_cnt); in rmt_ll_tx_get_channel_clock_div()
568 uint32_t div = HAL_FORCE_READ_U32_REG_FIELD(dev->conf_ch[channel].conf0, div_cnt); in rmt_ll_rx_get_channel_clock_div()
/hal_espressif-latest/components/soc/esp32c3/include/soc/
Drmt_struct.h26 uint32_t div_cnt: 8; member
41 uint32_t div_cnt: 8; member
/hal_espressif-latest/components/hal/esp32c3/include/hal/
Drmt_ll.h174 HAL_FORCE_MODIFY_U32_REG_FIELD(dev->tx_conf[channel], div_cnt, div); in rmt_ll_tx_set_channel_clock_div()
453 HAL_FORCE_MODIFY_U32_REG_FIELD(dev->rx_conf[channel].conf0, div_cnt, div); in rmt_ll_rx_set_channel_clock_div()
738 uint32_t div = HAL_FORCE_READ_U32_REG_FIELD(dev->tx_conf[channel], div_cnt); in rmt_ll_tx_get_channel_clock_div()
745 uint32_t div = HAL_FORCE_READ_U32_REG_FIELD(dev->rx_conf[channel].conf0, div_cnt); in rmt_ll_rx_get_channel_clock_div()
/hal_espressif-latest/components/driver/deprecated/
Drmt_legacy.c146 esp_err_t rmt_set_clk_div(rmt_channel_t channel, uint8_t div_cnt) in rmt_set_clk_div() argument
151 … rmt_ll_rx_set_channel_clock_div(rmt_contex.hal.regs, RMT_DECODE_RX_CHANNEL(channel), div_cnt); in rmt_set_clk_div()
153 rmt_ll_tx_set_channel_clock_div(rmt_contex.hal.regs, channel, div_cnt); in rmt_set_clk_div()
159 esp_err_t rmt_get_clk_div(rmt_channel_t channel, uint8_t *div_cnt) in rmt_get_clk_div() argument
162 ESP_RETURN_ON_FALSE(div_cnt, ESP_ERR_INVALID_ARG, TAG, RMT_ADDR_ERROR_STR); in rmt_get_clk_div()
165 …*div_cnt = (uint8_t)rmt_ll_rx_get_channel_clock_div(rmt_contex.hal.regs, RMT_DECODE_RX_CHANNEL(cha… in rmt_get_clk_div()
167 *div_cnt = (uint8_t)rmt_ll_tx_get_channel_clock_div(rmt_contex.hal.regs, channel); in rmt_get_clk_div()
/hal_espressif-latest/components/soc/esp32/include/soc/
Drmt_struct.h21 …uint32_t div_cnt: 8; /*This register is used to configure the frequency divide… member