mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
d8d4e3acb0
This commit updates the DWC_OTG based struct/ll/hal file names to use the prefix "usb_dwc". This naming scheme reduces ambiguity if another USB controller implementation is added. As a result, "hcd.c" has been renamed to "hcd_dwc.c"
26 lines
866 B
CMake
26 lines
866 B
CMake
set(srcs)
|
|
set(include)
|
|
set(priv_include)
|
|
# As CONFIG_USB_OTG_SUPPORTED comes from Kconfig, it is not evaluated yet
|
|
# when components are being registered.
|
|
# Thus, always add the (private) requirements, regardless of Kconfig
|
|
set(priv_require driver) # usb_phy driver relies on gpio driver API
|
|
|
|
if(CONFIG_USB_OTG_SUPPORTED)
|
|
list(APPEND srcs "hcd_dwc.c"
|
|
"hub.c"
|
|
"usb_helpers.c"
|
|
"usb_host.c"
|
|
"usb_private.c"
|
|
"usbh.c"
|
|
"usb_phy.c")
|
|
list(APPEND include "include")
|
|
list(APPEND priv_include "private_include")
|
|
endif()
|
|
|
|
idf_component_register(SRCS ${srcs}
|
|
INCLUDE_DIRS ${include}
|
|
PRIV_INCLUDE_DIRS ${priv_include}
|
|
PRIV_REQUIRES ${priv_require}
|
|
)
|