Searched refs:cdc_acm_dev_hdl_t (Results 1 – 4 of 4) sorted by relevance
/hal_espressif-3.6.0/examples/peripherals/usb/host/cdc/common/cdc_acm_host/include/usb/ |
D | cdc_acm_host.h | 17 typedef struct cdc_dev_s *cdc_acm_dev_hdl_t; typedef 81 typedef void (*cdc_acm_host_dev_callback_t)(cdc_acm_dev_hdl_t cdc_hdl, const cdc_acm_host_dev_event… 138 …t8_t interface_idx, const cdc_acm_host_device_config_t *dev_config, cdc_acm_dev_hdl_t *cdc_hdl_ret… 153 …t8_t interface_num, const cdc_acm_host_device_config_t *dev_config, cdc_acm_dev_hdl_t *cdc_hdl_ret… 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); [all …]
|
/hal_espressif-3.6.0/examples/peripherals/usb/host/cdc/common/cdc_acm_host/test/ |
D | test_cdc_acm_host.c | 113 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() 139 cdc_acm_dev_hdl_t cdc_dev = NULL; 191 cdc_acm_dev_hdl_t cdc_dev1, cdc_dev2; 227 cdc_acm_dev_hdl_t cdc_dev = (cdc_acm_dev_hdl_t) arg; in tx_task() 250 cdc_acm_dev_hdl_t cdc_dev; 285 cdc_acm_dev_hdl_t cdc_dev; 322 cdc_acm_dev_hdl_t cdc_dev;
|
/hal_espressif-3.6.0/examples/peripherals/usb/host/cdc/common/cdc_acm_host/ |
D | cdc_acm_host.c | 706 …t8_t interface_idx, const cdc_acm_host_device_config_t *dev_config, cdc_acm_dev_hdl_t *cdc_hdl_ret) in cdc_acm_host_open() 742 *cdc_hdl_ret = (cdc_acm_dev_hdl_t)cdc_dev; in cdc_acm_host_open() 754 …t8_t interface_num, const cdc_acm_host_device_config_t *dev_config, cdc_acm_dev_hdl_t *cdc_hdl_ret) in cdc_acm_host_open_vendor_specific() 805 *cdc_hdl_ret = (cdc_acm_dev_hdl_t)cdc_dev; in cdc_acm_host_open_vendor_specific() 815 esp_err_t cdc_acm_host_close(cdc_acm_dev_hdl_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() 923 cdc_dev->notif.cb((cdc_acm_dev_hdl_t) cdc_dev, &error_event, cdc_dev->cb_arg); in cdc_acm_is_transfer_completed() 958 cdc_dev->notif.cb((cdc_acm_dev_hdl_t) cdc_dev, &net_conn_event, cdc_dev->cb_arg); in notif_xfer_cb() 969 … cdc_dev->notif.cb((cdc_acm_dev_hdl_t) cdc_dev, &serial_state_event, cdc_dev->cb_arg); in notif_xfer_cb() 1011 cdc_dev->notif.cb((cdc_acm_dev_hdl_t) cdc_dev, &disconn_event, cdc_dev->cb_arg); in usb_event_cb() [all …]
|
/hal_espressif-3.6.0/examples/peripherals/usb/host/cdc/cdc_acm_host/main/ |
D | usb-cdc.c | 68 cdc_acm_dev_hdl_t cdc_dev; in app_main()
|