/hal_espressif-3.5.0/components/hal/include/hal/ |
D | touch_sensor_hal.h | 158 #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/ |
D | touch_sensor.c | 136 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/ |
D | touch_sensor.c | 160 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/ |
D | touch_sensor_ll.h | 379 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/ |
D | touch_sensor.h | 124 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/ |
D | touch_sensor.h | 124 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/ |
D | gpio.h | 100 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/ |
D | gpio.h | 94 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/ |
D | gpio.h | 94 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/ |
D | gpio.h | 94 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/ |
D | gpio.h | 91 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/ |
D | touch_sensor_ll.h | 356 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/ |
D | touch_sensor_ll.h | 356 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/ |
D | uart.h | 297 esp_err_t uart_enable_intr_mask(uart_port_t uart_num, uint32_t enable_mask);
|
/hal_espressif-3.5.0/components/driver/ |
D | uart.c | 357 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()
|