Home
last modified time | relevance | path

Searched refs:noise_thr (Results 1 – 9 of 9) sorted by relevance

/hal_espressif-latest/components/hal/esp32s2/include/hal/
Dtouch_sensor_hal.h231 #define touch_hal_filter_set_noise_thres(noise_thr) touch_ll_filter_set_noise_thres(noise_thr) argument
240 #define touch_hal_filter_get_noise_thres(noise_thr) touch_ll_filter_get_noise_thres(noise_thr) argument
Dtouch_sensor_ll.h741 static inline void touch_ll_filter_set_noise_thres(uint32_t noise_thr) in touch_ll_filter_set_noise_thres() argument
743 RTCCNTL.touch_filter_ctrl.touch_noise_thres = noise_thr; in touch_ll_filter_set_noise_thres()
744 RTCCNTL.touch_filter_ctrl.config2 = noise_thr; in touch_ll_filter_set_noise_thres()
756 static inline void touch_ll_filter_get_noise_thres(uint32_t *noise_thr) in touch_ll_filter_get_noise_thres() argument
758 *noise_thr = RTCCNTL.touch_filter_ctrl.touch_noise_thres; in touch_ll_filter_get_noise_thres()
/hal_espressif-latest/components/hal/esp32s3/include/hal/
Dtouch_sensor_hal.h231 #define touch_hal_filter_set_noise_thres(noise_thr) touch_ll_filter_set_noise_thres(noise_thr) argument
240 #define touch_hal_filter_get_noise_thres(noise_thr) touch_ll_filter_get_noise_thres(noise_thr) argument
Dtouch_sensor_ll.h761 static inline void touch_ll_filter_set_noise_thres(uint32_t noise_thr) in touch_ll_filter_set_noise_thres() argument
763 RTCCNTL.touch_filter_ctrl.touch_noise_thres = noise_thr; in touch_ll_filter_set_noise_thres()
764 RTCCNTL.touch_filter_ctrl.config2 = noise_thr; in touch_ll_filter_set_noise_thres()
776 static inline void touch_ll_filter_get_noise_thres(uint32_t *noise_thr) in touch_ll_filter_get_noise_thres() argument
778 *noise_thr = RTCCNTL.touch_filter_ctrl.touch_noise_thres; in touch_ll_filter_get_noise_thres()
/hal_espressif-latest/components/hal/esp32s2/
Dtouch_sensor_hal.c64 touch_ll_filter_set_noise_thres(filter_info->noise_thr); in touch_hal_filter_set_config()
73 touch_ll_filter_get_noise_thres(&filter_info->noise_thr); in touch_hal_filter_get_config()
/hal_espressif-latest/components/hal/esp32s3/
Dtouch_sensor_hal.c64 touch_ll_filter_set_noise_thres(filter_info->noise_thr); in touch_hal_filter_set_config()
73 touch_ll_filter_get_noise_thres(&filter_info->noise_thr); in touch_hal_filter_get_config()
/hal_espressif-latest/components/hal/include/hal/
Dtouch_sensor_types.h274 uint32_t noise_thr; /*!<Noise threshold coefficient. Higher = More noise resistance. member
/hal_espressif-latest/components/driver/touch_sensor/esp32s3/
Dtouch_sensor.c359 …ESP_RETURN_ON_FALSE(filter_info->noise_thr <= TOUCH_NOISE_THR_MAX, ESP_ERR_INVALID_ARG, TOUCH_TAG,… in touch_pad_filter_set_config()
/hal_espressif-latest/components/driver/touch_sensor/esp32s2/
Dtouch_sensor.c385 …ESP_RETURN_ON_FALSE(filter_info->noise_thr <= TOUCH_NOISE_THR_MAX, ESP_ERR_INVALID_ARG, TOUCH_TAG,… in touch_pad_filter_set_config()