esp-idf/components/usb/CMakeLists.txt

12 wiersze
347 B
CMake
Czysty Zwykły widok Historia

idf_build_get_property(target IDF_TARGET)
#USB Host is currently only supported on ESP32-S2, ESP32S3 chips
if(NOT "${target}" MATCHES "^esp32s[2-3]")
return()
endif()
idf_component_register(SRCS "hcd.c"
INCLUDE_DIRS ""
2021-03-19 12:03:13 +00:00
PRIV_INCLUDE_DIRS "private_include"
PRIV_REQUIRES hal driver)