Home
last modified time | relevance | path

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

/hal_espressif-3.6.0/components/hal/esp32s2/include/hal/
Dtouch_sensor_hal.h239 #define touch_hal_filter_set_noise_thres(noise_thr) touch_ll_filter_set_noise_thres(noise_thr) argument
248 #define touch_hal_filter_get_noise_thres(noise_thr) touch_ll_filter_get_noise_thres(noise_thr) argument
Dtouch_sensor_ll.h749 static inline void touch_ll_filter_set_noise_thres(uint32_t noise_thr) in touch_ll_filter_set_noise_thres() argument
751 RTCCNTL.touch_filter_ctrl.touch_noise_thres = noise_thr; in touch_ll_filter_set_noise_thres()
752 RTCCNTL.touch_filter_ctrl.config2 = noise_thr; in touch_ll_filter_set_noise_thres()
764 static inline void touch_ll_filter_get_noise_thres(uint32_t *noise_thr) in touch_ll_filter_get_noise_thres() argument
766 *noise_thr = RTCCNTL.touch_filter_ctrl.touch_noise_thres; in touch_ll_filter_get_noise_thres()
/hal_espressif-3.6.0/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-3.6.0/components/driver/test/touch_sensor_test/
Dtest_touch_v2.c352 .noise_thr = 0, // 50% in test_touch_filtered_read()
446 .noise_thr = 0, // 50% in test_touch_base_parameter()
815 .noise_thr = 0, // 50% in test_touch_interrupt()
882 .noise_thr = 0, // 50% in test_touch_scan_done_interrupt()
949 .noise_thr = 0, // 50% in test_touch_timeout_interrupt()
1051 .noise_thr = 0, // 50% in test_touch_filter_parameter_debounce()
1116 .noise_thr = 0, // 50% in test_touch_filter_parameter_reset()
1230 .noise_thr = 0, // 50% in test_touch_filter_parameter_jitter()
1338 .noise_thr = 0, // 50% in test_touch_denoise()
1452 .noise_thr = 0, // 50% in test_touch_waterproof()
[all …]
/hal_espressif-3.6.0/components/hal/esp32s2/
Dtouch_sensor_hal.c71 touch_ll_filter_set_noise_thres(filter_info->noise_thr); in touch_hal_filter_set_config()
80 touch_ll_filter_get_noise_thres(&filter_info->noise_thr); in touch_hal_filter_get_config()
/hal_espressif-3.6.0/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-3.6.0/components/hal/include/hal/
Dtouch_sensor_types.h274 uint32_t noise_thr; /*!<Noise threshold coefficient. Higher = More noise resistance. member
/hal_espressif-3.6.0/examples/peripherals/touch_sensor/touch_sensor_v2/touch_pad_interrupt/main/
Dtp_interrupt_main.c90 .noise_thr = 0, // 50% in touchsensor_filter_set()
/hal_espressif-3.6.0/examples/system/deep_sleep/main/
Ddeep_sleep_example_main.c232 .noise_thr = 0, // 50% in app_main()
/hal_espressif-3.6.0/components/driver/esp32s3/
Dtouch_sensor.c333 …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-3.6.0/components/driver/esp32s2/
Dtouch_sensor.c353 …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-3.6.0/components/touch_element/
Dtouch_element.c631 filter_config.noise_thr = hardware_init->benchmark_calibration_threshold; in te_hw_init()