Home
last modified time | relevance | path

Searched refs:duration_ms (Results 1 – 3 of 3) sorted by relevance

/hal_espressif-3.6.0/examples/peripherals/usb/host/cdc/common/cdc_acm_host/include/usb/
Dcdc_acm_host.h220 esp_err_t cdc_acm_host_send_break(cdc_acm_dev_hdl_t cdc_hdl, uint16_t duration_ms);
293 inline esp_err_t send_break(uint16_t duration_ms) in send_break() argument
295 return cdc_acm_host_send_break(this->cdc_hdl, duration_ms); in send_break()
/hal_espressif-3.6.0/components/esp_wifi/include/
Desp_mesh_internal.h45 …int duration_ms; /* parent weak RSSI monitor duration, if the RSSI continues to be weak during t… member
/hal_espressif-3.6.0/examples/peripherals/usb/host/cdc/common/cdc_acm_host/
Dcdc_acm_host.c1098 esp_err_t cdc_acm_host_send_break(cdc_acm_dev_hdl_t cdc_hdl, uint16_t duration_ms) in cdc_acm_host_send_break() argument
1103 send_cdc_request((cdc_dev_t *)cdc_hdl, false, CDC_REQ_SEND_BREAK, NULL, 0, duration_ms), in cdc_acm_host_send_break()
1107 vTaskDelay(pdMS_TO_TICKS(duration_ms + 1)); in cdc_acm_host_send_break()