Home
last modified time | relevance | path

Searched refs:cdc_acm_host_data_tx_blocking (Results 1 – 5 of 5) sorted by relevance

/hal_espressif-3.6.0/examples/peripherals/usb/host/cdc/common/cdc_acm_host/test/
Dtest_cdc_acm_host.c157 TEST_ASSERT_EQUAL(ESP_OK, cdc_acm_host_data_tx_blocking(cdc_dev, tx_buf, sizeof(tx_buf), 1000));
158 TEST_ASSERT_EQUAL(ESP_OK, cdc_acm_host_data_tx_blocking(cdc_dev, tx_buf, sizeof(tx_buf), 1000));
206 … TEST_ASSERT_EQUAL(ESP_OK, cdc_acm_host_data_tx_blocking(cdc_dev1, tx_buf, sizeof(tx_buf), 1000));
207 …TEST_ASSERT_EQUAL(ESP_OK, cdc_acm_host_data_tx_blocking(cdc_dev2, tx_buf2, sizeof(tx_buf2), 1000));
231 … TEST_ASSERT_EQUAL(ESP_OK, cdc_acm_host_data_tx_blocking(cdc_dev, tx_buf, sizeof(tx_buf), 1000)); in tx_task()
359 …TEST_ASSERT_EQUAL(ESP_ERR_INVALID_SIZE, cdc_acm_host_data_tx_blocking(cdc_dev, tx_buf, 1024, 1000)…
360 TEST_ASSERT_EQUAL(ESP_ERR_INVALID_ARG, cdc_acm_host_data_tx_blocking(cdc_dev, NULL, 10, 1000));
367 …TEST_ASSERT_EQUAL(ESP_ERR_NOT_SUPPORTED, cdc_acm_host_data_tx_blocking(cdc_dev, tx_buf, sizeof(tx_…
/hal_espressif-3.6.0/examples/peripherals/usb/host/cdc/cdc_acm_host/main/
Dusb-cdc.c83 ESP_ERROR_CHECK(cdc_acm_host_data_tx_blocking(cdc_dev, (uint8_t *)text1, strlen(text1), 1000)); in app_main()
87 ESP_ERROR_CHECK(cdc_acm_host_data_tx_blocking(cdc_dev, (uint8_t *)text2, strlen(text2), 1000)); in app_main()
/hal_espressif-3.6.0/examples/peripherals/usb/host/cdc/common/cdc_acm_host/include/usb/
Dcdc_acm_host.h173 esp_err_t cdc_acm_host_data_tx_blocking(cdc_acm_dev_hdl_t cdc_hdl, const uint8_t *data, size_t data…
259 return cdc_acm_host_data_tx_blocking(this->cdc_hdl, data, len, timeout_ms);
/hal_espressif-3.6.0/examples/peripherals/usb/host/cdc/common/cdc_acm_host/
DREADME.md38 4. To transmit data, call `cdc_acm_host_data_tx_blocking()`
Dcdc_acm_host.c1022 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() function