Home
last modified time | relevance | path

Searched refs:te_dev_t (Results 1 – 5 of 5) sorted by relevance

/hal_espressif-3.6.0/components/touch_element/include/touch_element/
Dtouch_element_private.h65 } te_dev_t; typedef
84 te_dev_t *guard_device; //Waterproof guard channel device
102 te_dev_t *device; //Base device information
123 te_dev_t **device; //Base device information set
154 te_dev_t **device; //Base device information
172 esp_err_t te_dev_init(te_dev_t **device, uint8_t device_num, te_dev_type_t type, const touch_pad_t …
173 void te_dev_deinit(te_dev_t **device, uint8_t device_num);
174 esp_err_t te_dev_set_threshold(te_dev_t *device);
/hal_espressif-3.6.0/components/touch_element/
Dtouch_slider.c42 static inline te_state_t slider_get_state(te_dev_t **device, int device_num);
131 te_slider->device = (te_dev_t **)calloc(slider_config->channel_num, sizeof(te_dev_t *)); in touch_slider_create()
141 te_slider->device[idx] = (te_dev_t *)calloc(1, sizeof(te_dev_t)); in touch_slider_create()
337 te_dev_t *device; in slider_channel_check()
361 te_dev_t *device = slider_handle->device[idx]; in slider_update_benchmark()
369 te_dev_t *device; in slider_update_state()
479 static inline te_state_t slider_get_state(te_dev_t **device, int device_num) in slider_get_state()
511 te_dev_t *device = slider_handle->device[idx]; in slider_quantify_signal()
522 te_dev_t *device = slider_handle->device[idx]; in slider_quantify_signal()
Dtouch_matrix.c128 …te_matrix->device = (te_dev_t **)calloc(matrix_config->x_channel_num + matrix_config->y_channel_nu… in touch_matrix_create()
131 te_matrix->device[idx] = (te_dev_t *)calloc(1, sizeof(te_dev_t)); in touch_matrix_create()
345 te_dev_t *device; in matrix_channel_check()
366 te_dev_t *device; in matrix_update_state()
427 te_dev_t *device = matrix_handle->device[idx]; in matrix_scan_axis()
456 te_dev_t *device; in matrix_pre_fixed()
Dtouch_button.c35 static inline te_state_t button_get_state(te_dev_t *device);
117 te_button->device = (te_dev_t *)calloc(1, sizeof(te_dev_t)); in touch_button_create()
316 te_dev_t *device = button_handle->device; in button_update_state()
415 static inline te_state_t button_get_state(te_dev_t *device) in button_get_state()
Dtouch_element.c503 esp_err_t te_dev_init(te_dev_t **device, uint8_t device_num, te_dev_type_t type, const touch_pad_t … in te_dev_init()
516 void te_dev_deinit(te_dev_t **device, uint8_t device_num) in te_dev_deinit()
523 esp_err_t te_dev_set_threshold(te_dev_t *device) in te_dev_set_threshold()
693 waterproof_handle->guard_device = (te_dev_t *)calloc(1, sizeof(te_dev_t)); in touch_element_waterproof_install()
881 te_dev_t *guard_device = s_te_obj->waterproof_handle->guard_device; in waterproof_guard_update_state()