mirror of
				https://github.com/espressif/esp-idf.git
				synced 2025-11-04 06:11:06 +00:00 
			
		
		
		
	If the efuse description from esptool contained semi-colons it would be interpretted as a list delimiter in CMake. Summary is now passed as in quotes to escape this behavior.
		
			
				
	
	
		
			9 lines
		
	
	
		
			280 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			280 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
cmake_minimum_required(VERSION 3.16)
 | 
						|
 | 
						|
include(${esptool_py_dir}/espefuse.cmake)
 | 
						|
espefuse_get_json_summary(efuse_json)
 | 
						|
foreach(name ${efuse_names})
 | 
						|
    espefuse_get_efuse(ret_data "${efuse_json}" ${name} "value")
 | 
						|
    message(STATUS "FROM_CMAKE: ${name}: ${ret_data}")
 | 
						|
endforeach()
 |