mirror of
				https://github.com/espressif/esp-idf.git
				synced 2025-10-30 20:51:41 +00:00 
			
		
		
		
	 d6cdb3e0ae
			
		
	
	d6cdb3e0ae
	
	
	
		
			
			USB serial/jtag controller: Add vfs (logging/printf), panic handler, gdb support. See merge request espressif/esp-idf!12925
		
			
				
	
	
		
			17 lines
		
	
	
		
			560 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			560 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
| idf_component_register(SRCS "vfs.c"
 | |
|                             "vfs_uart.c"
 | |
|                             "vfs_semihost.c"
 | |
|                     INCLUDE_DIRS include)
 | |
| 
 | |
| if(CONFIG_ESP_CONSOLE_USB_CDC)
 | |
|     target_sources(${COMPONENT_LIB} PRIVATE "vfs_cdcacm.c")
 | |
| endif()
 | |
| 
 | |
| if(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")
 |