mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
708e99497b
Some components were including esp_timer.h without declaring a dependency on esp_timer component. This used to work due to a transitive public dependency on esp_timer from freertos component. Add explicit dependencies where needed. Also some source files were using esp_timer functions without including the header file. This used to work because esp_timer.h was included from freertos port header file. This commit adds esp_timer.h includes where needed.
21 lines
801 B
CMake
21 lines
801 B
CMake
idf_component_register(SRCS "vfs.c"
|
|
"vfs_eventfd.c"
|
|
"vfs_uart.c"
|
|
"vfs_semihost.c"
|
|
"vfs_console.c"
|
|
INCLUDE_DIRS include
|
|
PRIV_INCLUDE_DIRS private_include
|
|
PRIV_REQUIRES driver esp_timer)
|
|
|
|
if(CONFIG_ESP_CONSOLE_USB_CDC)
|
|
target_sources(${COMPONENT_LIB} PRIVATE "vfs_cdcacm.c")
|
|
endif()
|
|
|
|
if(CONFIG_ESP_CONSOLE_SECONDARY_USB_SERIAL_JTAG OR CONFIG_ESP_CONSOLE_USB_SERIAL_JTAG)
|
|
target_sources(${COMPONENT_LIB} PRIVATE "vfs_usb_serial_jtag.c")
|
|
endif()
|
|
|
|
# Some newlib syscalls are implemented in vfs.c, make sure these are always
|
|
# seen by the linker
|
|
target_link_libraries(${COMPONENT_LIB} INTERFACE "-u vfs_include_syscalls_impl")
|