Home
last modified time | relevance | path

Searched refs:thresh (Results 1 – 7 of 7) sorted by relevance

/hal_espressif-latest/components/driver/deprecated/driver/
Drmt.h63 esp_err_t rmt_set_rx_idle_thresh(rmt_channel_t channel, uint16_t thresh);
79 esp_err_t rmt_get_rx_idle_thresh(rmt_channel_t channel, uint16_t *thresh);
301 esp_err_t rmt_set_rx_filter(rmt_channel_t channel, bool rx_filter_en, uint8_t thresh);
/hal_espressif-latest/components/driver/deprecated/
Drmt_legacy.c173 esp_err_t rmt_set_rx_idle_thresh(rmt_channel_t channel, uint16_t thresh) in rmt_set_rx_idle_thresh() argument
177 rmt_ll_rx_set_idle_thres(rmt_contex.hal.regs, RMT_DECODE_RX_CHANNEL(channel), thresh); in rmt_set_rx_idle_thresh()
182 esp_err_t rmt_get_rx_idle_thresh(rmt_channel_t channel, uint16_t *thresh) in rmt_get_rx_idle_thresh() argument
185 ESP_RETURN_ON_FALSE(thresh, ESP_ERR_INVALID_ARG, TAG, RMT_ADDR_ERROR_STR); in rmt_get_rx_idle_thresh()
187 … *thresh = (uint16_t)rmt_ll_rx_get_idle_thres(rmt_contex.hal.regs, RMT_DECODE_RX_CHANNEL(channel)); in rmt_get_rx_idle_thresh()
403 esp_err_t rmt_set_rx_filter(rmt_channel_t channel, bool rx_filter_en, uint8_t thresh) in rmt_set_rx_filter() argument
408 rmt_ll_rx_set_filter_thres(rmt_contex.hal.regs, RMT_DECODE_RX_CHANNEL(channel), thresh); in rmt_set_rx_filter()
/hal_espressif-latest/components/hal/esp32s2/include/hal/
Dtouch_sensor_ll.h320 SENS.touch_thresh[touch_num - 1].thresh = threshold; in touch_ll_set_threshold()
333 *threshold = SENS.touch_thresh[touch_num - 1].thresh; in touch_ll_get_threshold()
/hal_espressif-latest/components/hal/esp32s3/include/hal/
Dtouch_sensor_ll.h328 SENS.touch_thresh[touch_num - 1].thresh = threshold; in touch_ll_set_threshold()
341 *threshold = SENS.touch_thresh[touch_num - 1].thresh; in touch_ll_get_threshold()
/hal_espressif-latest/components/soc/esp32s2/include/soc/
Dsens_struct.h233 uint32_t thresh: 22; /*Finger threshold for touch pad 1*/ member
/hal_espressif-latest/components/soc/esp32s3/include/soc/
Dsens_struct.h238 uint32_t thresh : 22; /*Finger threshold for touch pad 1*/ member
/hal_espressif-latest/components/driver/uart/
Duart.c570 esp_err_t uart_enable_tx_intr(uart_port_t uart_num, int enable, int thresh) in uart_enable_tx_intr() argument
573 …ESP_RETURN_ON_FALSE((thresh < SOC_UART_FIFO_LEN), ESP_FAIL, UART_TAG, "empty intr threshold error"… in uart_enable_tx_intr()
576 uart_hal_set_txfifo_empty_thr(&(uart_context[uart_num].hal), thresh); in uart_enable_tx_intr()