USB host driver for Vendor interface.
Copyright (c) 2012-2018 Microchip Technology Inc. and its subsidiaries.
#include "conf_usb_host.h"
#include "usb_protocol.h"
#include "usb_protocol_vendor.h"
#include "uhi.h"
Macros | |
#define | UHI_VENDOR |
Global define which contains standard UHI API for UHC It must be added in USB_HOST_UHI define from conf_usb_host.h file. More... | |
Functions | |
bool | uhi_vendor_bulk_in_run (uint8_t *buf, iram_size_t buf_size, uhd_callback_trans_t callback) |
Start a transfer on bulk IN. More... | |
bool | uhi_vendor_bulk_is_available (void) |
Check if a transfer on BULK is possible. More... | |
bool | uhi_vendor_bulk_out_run (uint8_t *buf, iram_size_t buf_size, uhd_callback_trans_t callback) |
Start a transfer on bulk OUT. More... | |
bool | uhi_vendor_control_in_run (uint8_t *buf, iram_size_t buf_size, uhd_callback_setup_end_t callback) |
Start a transfer on control IN. More... | |
bool | uhi_vendor_control_out_run (uint8_t *buf, iram_size_t buf_size, uhd_callback_setup_end_t callback) |
Start a transfer on control OUT. More... | |
bool | uhi_vendor_int_in_run (uint8_t *buf, iram_size_t buf_size, uhd_callback_trans_t callback) |
Start a transfer on interrupt IN. More... | |
bool | uhi_vendor_int_is_available (void) |
Check if a transfer on INTERRUPT is possible. More... | |
bool | uhi_vendor_int_out_run (uint8_t *buf, iram_size_t buf_size, uhd_callback_trans_t callback) |
Start a transfer on interrupt OUT. More... | |
bool | uhi_vendor_iso_in_run (uint8_t *buf, iram_size_t buf_size, uhd_callback_trans_t callback) |
Start a transfer on ISO IN. More... | |
bool | uhi_vendor_iso_is_available (void) |
Check if a transfer on ISO is possible. More... | |
bool | uhi_vendor_iso_out_run (uint8_t *buf, iram_size_t buf_size, uhd_callback_trans_t callback) |
Start a transfer on ISO OUT. More... | |
Functions required by UHC | |
uhc_enum_status_t | uhi_vendor_install (uhc_device_t *dev) |
void | uhi_vendor_enable (uhc_device_t *dev) |
void | uhi_vendor_uninstall (uhc_device_t *dev) |