Searched refs:refh (Results 1 – 7 of 7) sorted by relevance
/hal_espressif-latest/components/driver/touch_sensor/ |
D | touch_sensor_common.c | 56 esp_err_t touch_pad_set_voltage(touch_high_volt_t refh, touch_low_volt_t refl, touch_volt_atten_t a… in touch_pad_set_voltage() argument 58 TOUCH_CHECK(((refh < TOUCH_HVOLT_MAX) && (refh >= (int )TOUCH_HVOLT_KEEP)), "touch refh error", in touch_pad_set_voltage() 60 TOUCH_CHECK(((refl < TOUCH_LVOLT_MAX) && (refh >= (int )TOUCH_LVOLT_KEEP)), "touch refl error", in touch_pad_set_voltage() 62 …TOUCH_CHECK(((atten < TOUCH_HVOLT_ATTEN_MAX) && (refh >= (int )TOUCH_HVOLT_ATTEN_KEEP)), "touch at… in touch_pad_set_voltage() 66 .refh = refh, in touch_pad_set_voltage() 77 esp_err_t touch_pad_get_voltage(touch_high_volt_t *refh, touch_low_volt_t *refl, touch_volt_atten_t… in touch_pad_get_voltage() argument 83 *refh = volt.refh; in touch_pad_get_voltage()
|
/hal_espressif-latest/components/hal/ |
D | touch_sensor_hal.c | 30 touch_ll_set_voltage_high(volt->refh); in touch_hal_set_voltage() 37 touch_ll_get_voltage_high(&volt->refh); in touch_hal_get_voltage()
|
/hal_espressif-latest/components/driver/touch_sensor/include/driver/ |
D | touch_sensor_common.h | 56 esp_err_t touch_pad_set_voltage(touch_high_volt_t refh, touch_low_volt_t refl, touch_volt_atten_t a… 66 esp_err_t touch_pad_get_voltage(touch_high_volt_t *refh, touch_low_volt_t *refl, touch_volt_atten_t…
|
/hal_espressif-latest/components/hal/esp32/include/hal/ |
D | touch_sensor_ll.h | 105 static inline void touch_ll_set_voltage_high(touch_high_volt_t refh) in touch_ll_set_voltage_high() argument 107 RTCIO.touch_cfg.drefh = refh; in touch_ll_set_voltage_high() 117 static inline void touch_ll_get_voltage_high(touch_high_volt_t *refh) in touch_ll_get_voltage_high() argument 119 *refh = (touch_high_volt_t)RTCIO.touch_cfg.drefh; in touch_ll_get_voltage_high()
|
/hal_espressif-latest/components/hal/include/hal/ |
D | touch_sensor_hal.h | 25 touch_high_volt_t refh; member
|
/hal_espressif-latest/components/hal/esp32s2/include/hal/ |
D | touch_sensor_ll.h | 92 static inline void touch_ll_set_voltage_high(touch_high_volt_t refh) in touch_ll_set_voltage_high() argument 94 RTCCNTL.touch_ctrl2.touch_drefh = refh; in touch_ll_set_voltage_high() 104 static inline void touch_ll_get_voltage_high(touch_high_volt_t *refh) in touch_ll_get_voltage_high() argument 106 *refh = (touch_high_volt_t)RTCCNTL.touch_ctrl2.touch_drefh; in touch_ll_get_voltage_high()
|
/hal_espressif-latest/components/hal/esp32s3/include/hal/ |
D | touch_sensor_ll.h | 92 static inline void touch_ll_set_voltage_high(touch_high_volt_t refh) in touch_ll_set_voltage_high() argument 94 RTCCNTL.touch_ctrl2.touch_drefh = refh; in touch_ll_set_voltage_high() 104 static inline void touch_ll_get_voltage_high(touch_high_volt_t *refh) in touch_ll_get_voltage_high() argument 106 *refh = (touch_high_volt_t)RTCCNTL.touch_ctrl2.touch_drefh; in touch_ll_get_voltage_high()
|