/hal_espressif-3.6.0/components/hal/esp32s2/include/hal/ |
D | touch_sensor_hal.h | 239 #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
|
D | touch_sensor_ll.h | 749 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/ |
D | touch_sensor_hal.h | 231 #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
|
D | touch_sensor_ll.h | 761 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/ |
D | test_touch_v2.c | 352 .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/ |
D | touch_sensor_hal.c | 71 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/ |
D | touch_sensor_hal.c | 64 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/ |
D | touch_sensor_types.h | 274 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/ |
D | tp_interrupt_main.c | 90 .noise_thr = 0, // 50% in touchsensor_filter_set()
|
/hal_espressif-3.6.0/examples/system/deep_sleep/main/ |
D | deep_sleep_example_main.c | 232 .noise_thr = 0, // 50% in app_main()
|
/hal_espressif-3.6.0/components/driver/esp32s3/ |
D | touch_sensor.c | 333 …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/ |
D | touch_sensor.c | 353 …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/ |
D | touch_element.c | 631 filter_config.noise_thr = hardware_init->benchmark_calibration_threshold; in te_hw_init()
|