Home
last modified time | relevance | path

Searched refs:enable_mask (Results 1 – 15 of 15) sorted by relevance

/hal_espressif-3.5.0/components/hal/include/hal/
Dtouch_sensor_hal.h158 #define touch_hal_set_channel_mask(enable_mask) touch_ll_set_channel_mask(enable_mask) argument
166 #define touch_hal_get_channel_mask(enable_mask) touch_ll_get_channel_mask(enable_mask) argument
/hal_espressif-3.5.0/components/driver/esp32s3/
Dtouch_sensor.c136 esp_err_t touch_pad_set_channel_mask(uint16_t enable_mask) in touch_pad_set_channel_mask() argument
138 TOUCH_CH_MASK_CHECK(enable_mask); in touch_pad_set_channel_mask()
140 touch_hal_set_channel_mask(enable_mask); in touch_pad_set_channel_mask()
146 esp_err_t touch_pad_get_channel_mask(uint16_t *enable_mask) in touch_pad_get_channel_mask() argument
148 TOUCH_NULL_POINTER_CHECK(enable_mask, "enable_mask"); in touch_pad_get_channel_mask()
150 touch_hal_get_channel_mask(enable_mask); in touch_pad_get_channel_mask()
156 esp_err_t touch_pad_clear_channel_mask(uint16_t enable_mask) in touch_pad_clear_channel_mask() argument
158 TOUCH_CH_MASK_CHECK(enable_mask); in touch_pad_clear_channel_mask()
160 touch_hal_clear_channel_mask(enable_mask); in touch_pad_clear_channel_mask()
/hal_espressif-3.5.0/components/driver/esp32s2/
Dtouch_sensor.c160 esp_err_t touch_pad_set_channel_mask(uint16_t enable_mask) in touch_pad_set_channel_mask() argument
162 TOUCH_CH_MASK_CHECK(enable_mask); in touch_pad_set_channel_mask()
164 touch_hal_set_channel_mask(enable_mask); in touch_pad_set_channel_mask()
170 esp_err_t touch_pad_get_channel_mask(uint16_t *enable_mask) in touch_pad_get_channel_mask() argument
172 TOUCH_NULL_POINTER_CHECK(enable_mask, "enable_mask"); in touch_pad_get_channel_mask()
174 touch_hal_get_channel_mask(enable_mask); in touch_pad_get_channel_mask()
180 esp_err_t touch_pad_clear_channel_mask(uint16_t enable_mask) in touch_pad_clear_channel_mask() argument
182 TOUCH_CH_MASK_CHECK(enable_mask); in touch_pad_clear_channel_mask()
184 touch_hal_clear_channel_mask(enable_mask); in touch_pad_clear_channel_mask()
/hal_espressif-3.5.0/components/hal/esp32/include/hal/
Dtouch_sensor_ll.h379 static inline void touch_ll_set_channel_mask(uint16_t enable_mask) in touch_ll_set_channel_mask() argument
381 SENS.sar_touch_enable.touch_pad_worken |= TOUCH_LL_BITS_SWAP(enable_mask); in touch_ll_set_channel_mask()
390 static inline void touch_ll_get_channel_mask(uint16_t *enable_mask) in touch_ll_get_channel_mask() argument
392 *enable_mask = TOUCH_LL_BITS_SWAP(SENS.sar_touch_enable.touch_pad_worken); in touch_ll_get_channel_mask()
/hal_espressif-3.5.0/components/driver/esp32s2/include/driver/
Dtouch_sensor.h124 esp_err_t touch_pad_set_channel_mask(uint16_t enable_mask);
133 esp_err_t touch_pad_get_channel_mask(uint16_t *enable_mask);
145 esp_err_t touch_pad_clear_channel_mask(uint16_t enable_mask);
/hal_espressif-3.5.0/components/driver/esp32s3/include/driver/
Dtouch_sensor.h124 esp_err_t touch_pad_set_channel_mask(uint16_t enable_mask);
133 esp_err_t touch_pad_get_channel_mask(uint16_t *enable_mask);
145 esp_err_t touch_pad_clear_channel_mask(uint16_t enable_mask);
/hal_espressif-3.5.0/components/esp_rom/include/esp32/rom/
Dgpio.h100 void gpio_output_set(uint32_t set_mask, uint32_t clear_mask, uint32_t enable_mask, uint32_t disable…
117 void gpio_output_set_high(uint32_t set_mask, uint32_t clear_mask, uint32_t enable_mask, uint32_t di…
/hal_espressif-3.5.0/components/esp_rom/include/esp32c3/rom/
Dgpio.h94 void gpio_output_set(uint32_t set_mask, uint32_t clear_mask, uint32_t enable_mask, uint32_t disable…
111 void gpio_output_set_high(uint32_t set_mask, uint32_t clear_mask, uint32_t enable_mask, uint32_t di…
/hal_espressif-3.5.0/components/esp_rom/include/esp32h2/rom/
Dgpio.h94 void gpio_output_set(uint32_t set_mask, uint32_t clear_mask, uint32_t enable_mask, uint32_t disable…
111 void gpio_output_set_high(uint32_t set_mask, uint32_t clear_mask, uint32_t enable_mask, uint32_t di…
/hal_espressif-3.5.0/components/esp_rom/include/esp32s2/rom/
Dgpio.h94 void gpio_output_set(uint32_t set_mask, uint32_t clear_mask, uint32_t enable_mask, uint32_t disable…
111 void gpio_output_set_high(uint32_t set_mask, uint32_t clear_mask, uint32_t enable_mask, uint32_t di…
/hal_espressif-3.5.0/components/esp_rom/include/esp32s3/rom/
Dgpio.h91 void gpio_output_set(uint32_t set_mask, uint32_t clear_mask, uint32_t enable_mask, uint32_t disable…
108 void gpio_output_set_high(uint32_t set_mask, uint32_t clear_mask, uint32_t enable_mask, uint32_t di…
/hal_espressif-3.5.0/components/hal/esp32s3/include/hal/
Dtouch_sensor_ll.h356 static inline void touch_ll_set_channel_mask(uint16_t enable_mask) in touch_ll_set_channel_mask() argument
358 RTCCNTL.touch_scan_ctrl.touch_scan_pad_map |= (enable_mask & TOUCH_PAD_BIT_MASK_ALL); in touch_ll_set_channel_mask()
359 SENS.sar_touch_conf.touch_outen |= (enable_mask & TOUCH_PAD_BIT_MASK_ALL); in touch_ll_set_channel_mask()
368 static inline void touch_ll_get_channel_mask(uint16_t *enable_mask) in touch_ll_get_channel_mask() argument
370 *enable_mask = SENS.sar_touch_conf.touch_outen \ in touch_ll_get_channel_mask()
/hal_espressif-3.5.0/components/hal/esp32s2/include/hal/
Dtouch_sensor_ll.h356 static inline void touch_ll_set_channel_mask(uint16_t enable_mask) in touch_ll_set_channel_mask() argument
358 RTCCNTL.touch_scan_ctrl.touch_scan_pad_map |= (enable_mask & TOUCH_PAD_BIT_MASK_ALL); in touch_ll_set_channel_mask()
359 SENS.sar_touch_conf.touch_outen |= (enable_mask & TOUCH_PAD_BIT_MASK_ALL); in touch_ll_set_channel_mask()
368 static inline void touch_ll_get_channel_mask(uint16_t *enable_mask) in touch_ll_get_channel_mask() argument
370 *enable_mask = SENS.sar_touch_conf.touch_outen \ in touch_ll_get_channel_mask()
/hal_espressif-3.5.0/components/driver/include/driver/
Duart.h297 esp_err_t uart_enable_intr_mask(uart_port_t uart_num, uint32_t enable_mask);
/hal_espressif-3.5.0/components/driver/
Duart.c357 esp_err_t uart_enable_intr_mask(uart_port_t uart_num, uint32_t enable_mask) in uart_enable_intr_mask() argument
366 p_uart_obj[uart_num]->rx_int_usr_mask |= enable_mask; in uart_enable_intr_mask()
367 uart_hal_clr_intsts_mask(&(uart_context[uart_num].hal), enable_mask); in uart_enable_intr_mask()
368 uart_hal_ena_intr_mask(&(uart_context[uart_num].hal), enable_mask); in uart_enable_intr_mask()
382 static esp_err_t uart_reenable_intr_mask(uart_port_t uart_num, uint32_t enable_mask) in uart_reenable_intr_mask() argument
388 uint32_t mask = p_uart_obj[uart_num]->rx_int_usr_mask & enable_mask; in uart_reenable_intr_mask()