mirror of
				https://github.com/espressif/esp-idf.git
				synced 2025-11-04 00:51:42 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			45 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			CMake
		
	
	
	
	
	
idf_build_get_property(target IDF_TARGET)
 | 
						|
 | 
						|
if(${target} STREQUAL "linux")
 | 
						|
    return() # This component is not supported by the POSIX/Linux simulator
 | 
						|
endif()
 | 
						|
 | 
						|
set(srcs)
 | 
						|
set(include)
 | 
						|
set(priv_includes)
 | 
						|
# As CONFIG_SOC_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_requires esp_driver_gpio esp_mm)  # usb_phy driver relies on gpio driver API
 | 
						|
 | 
						|
if(CONFIG_SOC_USB_OTG_SUPPORTED)
 | 
						|
    list(APPEND srcs "hcd_dwc.c"
 | 
						|
                     "enum.c"
 | 
						|
                     "hub.c"
 | 
						|
                     "usb_helpers.c"
 | 
						|
                     "usb_host.c"
 | 
						|
                     "usb_private.c"
 | 
						|
                     "usbh.c")
 | 
						|
    if(NOT ${target} STREQUAL "esp32p4")
 | 
						|
        list(APPEND srcs "usb_phy.c")
 | 
						|
    else()
 | 
						|
        list(APPEND srcs "usb_phy_p4.c")
 | 
						|
    endif()
 | 
						|
    list(APPEND include "include")
 | 
						|
    list(APPEND priv_includes "private_include")
 | 
						|
endif()
 | 
						|
 | 
						|
if(CONFIG_USB_HOST_HUBS_SUPPORTED)
 | 
						|
    list(APPEND srcs "ext_hub.c")
 | 
						|
endif()
 | 
						|
 | 
						|
idf_component_register(SRCS ${srcs}
 | 
						|
                       INCLUDE_DIRS ${include}
 | 
						|
                       PRIV_INCLUDE_DIRS ${priv_includes}
 | 
						|
                       PRIV_REQUIRES ${priv_requires}
 | 
						|
                       )
 | 
						|
 | 
						|
if(CONFIG_COMPILER_STATIC_ANALYZER AND CMAKE_C_COMPILER_ID STREQUAL "GNU") # TODO GCC-366 (segfault)
 | 
						|
    set_property(SOURCE usb_host.c PROPERTY COMPILE_FLAGS -fno-analyzer)
 | 
						|
endif()
 |