Home
last modified time | relevance | path

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

/hal_espressif-3.6.0/components/driver/test/touch_sensor_test/
Dtest_touch_v2.c351 .debounce_cnt = 1, // 1 time count. in test_touch_filtered_read()
445 .debounce_cnt = 1, // 1 time count. in test_touch_base_parameter()
814 .debounce_cnt = 1, // 1 time count. in test_touch_interrupt()
881 .debounce_cnt = 1, // 1 time count. in test_touch_scan_done_interrupt()
948 .debounce_cnt = 1, // 1 time count. in test_touch_timeout_interrupt()
1050 .debounce_cnt = ((deb_cnt < 0) ? 1 : deb_cnt) , // 1 time count. in test_touch_filter_parameter_debounce()
1115 .debounce_cnt = 1, // 1 time count. in test_touch_filter_parameter_reset()
1194 test_touch_measure_step(filter_info.debounce_cnt + 1); in test_touch_filter_parameter_reset()
1200 test_touch_measure_step(filter_info.debounce_cnt + 1); in test_touch_filter_parameter_reset()
1229 .debounce_cnt = 1, // 1 time count. in test_touch_filter_parameter_jitter()
[all …]
/hal_espressif-3.6.0/components/hal/esp32s2/
Dtouch_sensor_hal.c70 touch_ll_filter_set_debounce(filter_info->debounce_cnt); in touch_hal_filter_set_config()
79 touch_ll_filter_get_debounce(&filter_info->debounce_cnt); in touch_hal_filter_get_config()
/hal_espressif-3.6.0/components/hal/esp32s3/
Dtouch_sensor_hal.c63 touch_ll_filter_set_debounce(filter_info->debounce_cnt); in touch_hal_filter_set_config()
72 touch_ll_filter_get_debounce(&filter_info->debounce_cnt); in touch_hal_filter_get_config()
/hal_espressif-3.6.0/components/hal/include/hal/
Dtouch_sensor_types.h271 …uint32_t debounce_cnt; /*!<Set debounce count, such as `n`. If the measured values continue t… member
/hal_espressif-3.6.0/examples/peripherals/touch_sensor/touch_sensor_v2/touch_pad_interrupt/main/
Dtp_interrupt_main.c89 .debounce_cnt = 1, // 1 time count. in touchsensor_filter_set()
/hal_espressif-3.6.0/examples/system/deep_sleep/main/
Ddeep_sleep_example_main.c231 .debounce_cnt = 1, // 1 time count. in app_main()
/hal_espressif-3.6.0/components/driver/esp32s3/
Dtouch_sensor.c332 …ESP_RETURN_ON_FALSE(filter_info->debounce_cnt <= TOUCH_DEBOUNCE_CNT_MAX, ESP_ERR_INVALID_ARG, TOUC… in touch_pad_filter_set_config()
/hal_espressif-3.6.0/components/driver/esp32s2/
Dtouch_sensor.c352 …ESP_RETURN_ON_FALSE(filter_info->debounce_cnt <= TOUCH_DEBOUNCE_CNT_MAX, ESP_ERR_INVALID_ARG, TOUC… in touch_pad_filter_set_config()
/hal_espressif-3.6.0/components/touch_element/
Dtouch_element.c630 filter_config.debounce_cnt = hardware_init->benchmark_debounce_count; in te_hw_init()