mirror of
				https://github.com/espressif/esp-idf.git
				synced 2025-11-04 00:51:42 +01:00 
			
		
		
		
	List of changes: * New component esp_local_ctrl added * Example added under examples/protocols/esp_local_ctrl * Documentation added under protocols/esp_local_ctrl * Demo client side app esp_local_ctrl.py added under examples/protocols/esp_local_ctrl/scripts * protocomm_ble : protocomm_ble_config_t given struct name for allowing forward declaration * esp_prov/transport_softap renamed to transport_http * transport_http module supports verification of server certificate * transport_http module performs name resolution before connection
		
			
				
	
	
		
			8 lines
		
	
	
		
			209 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			209 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
all: c_proto python_proto
 | 
						|
 | 
						|
c_proto: *.proto
 | 
						|
	@protoc-c --c_out=../proto-c/ -I . -I ../../protocomm/proto/ *.proto
 | 
						|
 | 
						|
python_proto: *.proto
 | 
						|
	@protoc --python_out=../python/ -I . -I ../../protocomm/proto/ *.proto
 |