mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
7f42104893
This commit adds support for interrupt and isochronous pipes to the HCD: - HCD now internally uses double buffering - Added test cases for interrupt and isochronous transfers - Reorganized test cases for each transfer type - Updated API comments and maintainer's notes Some minor bugs were also fixed
12 lines
338 B
CMake
12 lines
338 B
CMake
idf_build_get_property(target IDF_TARGET)
|
|
|
|
#USB Host is currently only supported on ESP32-S2
|
|
if(NOT "${target}" STREQUAL "esp32s2")
|
|
return()
|
|
endif()
|
|
|
|
idf_component_register(SRC_DIRS "hcd"
|
|
PRIV_INCLUDE_DIRS "../private_include" "." "hcd"
|
|
PRIV_REQUIRES cmock usb test_utils
|
|
)
|