Home
last modified time | relevance | path

Searched refs:cdc_hdl (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.h81 typedef void (*cdc_acm_host_dev_callback_t)(cdc_acm_dev_hdl_t cdc_hdl, const cdc_acm_host_dev_event…
162 esp_err_t cdc_acm_host_close(cdc_acm_dev_hdl_t cdc_hdl);
173 esp_err_t cdc_acm_host_data_tx_blocking(cdc_acm_dev_hdl_t cdc_hdl, const uint8_t *data, size_t data…
184 esp_err_t cdc_acm_host_line_coding_set(cdc_acm_dev_hdl_t cdc_hdl, const cdc_acm_line_coding_t *line…
195 esp_err_t cdc_acm_host_line_coding_get(cdc_acm_dev_hdl_t cdc_hdl, cdc_acm_line_coding_t *line_codin…
207 esp_err_t cdc_acm_host_set_control_line_state(cdc_acm_dev_hdl_t cdc_hdl, bool dtr, bool rts);
220 esp_err_t cdc_acm_host_send_break(cdc_acm_dev_hdl_t cdc_hdl, uint16_t duration_ms);
230 void cdc_acm_host_desc_print(cdc_acm_dev_hdl_t cdc_hdl);
240 esp_err_t cdc_acm_host_protocols_get(cdc_acm_dev_hdl_t cdc_hdl, cdc_comm_protocol_t *comm, cdc_data…
248 CdcAcmDevice() : cdc_hdl(NULL){}; in CdcAcmDevice()
[all …]
/hal_espressif-3.6.0/examples/peripherals/usb/host/cdc/common/cdc_acm_host/
Dcdc_acm_host.c815 esp_err_t cdc_acm_host_close(cdc_acm_dev_hdl_t cdc_hdl) in cdc_acm_host_close() argument
818 CDC_ACM_CHECK(cdc_hdl, ESP_ERR_INVALID_ARG); in cdc_acm_host_close()
822 cdc_dev_t *cdc_dev = (cdc_dev_t *)cdc_hdl; in cdc_acm_host_close()
847 void cdc_acm_host_desc_print(cdc_acm_dev_hdl_t cdc_hdl) in cdc_acm_host_desc_print() argument
849 assert(cdc_hdl); in cdc_acm_host_desc_print()
850 cdc_dev_t *cdc_dev = (cdc_dev_t *)cdc_hdl; in cdc_acm_host_desc_print()
1022 esp_err_t cdc_acm_host_data_tx_blocking(cdc_acm_dev_hdl_t cdc_hdl, const uint8_t *data, size_t data… in cdc_acm_host_data_tx_blocking() argument
1025 CDC_ACM_CHECK(cdc_hdl, ESP_ERR_INVALID_ARG); in cdc_acm_host_data_tx_blocking()
1026 cdc_dev_t *cdc_dev = (cdc_dev_t *)cdc_hdl; in cdc_acm_host_data_tx_blocking()
1061 esp_err_t cdc_acm_host_line_coding_get(cdc_acm_dev_hdl_t cdc_hdl, cdc_acm_line_coding_t *line_codin… in cdc_acm_host_line_coding_get() argument
[all …]
/hal_espressif-3.6.0/examples/peripherals/usb/host/cdc/common/cdc_acm_host/test/
Dtest_cdc_acm_host.c113 static void notif_cb(cdc_acm_dev_hdl_t cdc_hdl, const cdc_acm_host_dev_event_data_t *event, void *u… in notif_cb() argument
125 TEST_ASSERT_EQUAL(ESP_OK, cdc_acm_host_close(cdc_hdl)); in notif_cb()