* TX Flow Control and Code cleanup * Use semaphore instead of delay TX functionality is done. * Use single buffer and empty queue on exit * Fix compile issues because of LwIP code relocation * Add temporary header to fix Azure not compiling * Fix AsyncUDP early init * AsyncUDP Multicast fixes * Add source mac address and rework multicast * Allow redefinition of default pins for Serials 1 and 2 * Update IDF to 3276a13 * Update esptool.py to 2.5.0 * Fix sketches * Fix log level in BluetoothSetial
		
			
				
	
	
		
			17 lines
		
	
	
		
			482 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			482 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
option(INSTALL_MBEDTLS_HEADERS "Install mbed TLS headers." ON)
 | 
						|
 | 
						|
if(INSTALL_MBEDTLS_HEADERS)
 | 
						|
 | 
						|
    file(GLOB headers "mbedtls/*.h")
 | 
						|
 | 
						|
    install(FILES ${headers}
 | 
						|
        DESTINATION include/mbedtls
 | 
						|
        PERMISSIONS OWNER_READ OWNER_WRITE GROUP_READ WORLD_READ)
 | 
						|
 | 
						|
endif(INSTALL_MBEDTLS_HEADERS)
 | 
						|
 | 
						|
# Make config.h available in an out-of-source build. ssl-opt.sh requires it.
 | 
						|
if (NOT ${CMAKE_CURRENT_BINARY_DIR} STREQUAL ${CMAKE_CURRENT_SOURCE_DIR})
 | 
						|
    link_to_source(mbedtls)
 | 
						|
endif()
 |