mirror of
				https://github.com/espressif/esp-idf.git
				synced 2025-11-04 06:11:06 +00:00 
			
		
		
		
	- Adds NimBLE stack support to existing BLE variant of unified provisioning. - Uses scan response to send device name, 128 bit custom UUIDs based on service UUID. - Minimal changes to `app_prov.c`, component.mk, CMakeLists.txt and `protocomm_ble.h` to accomodate NimBLE stack for provisioning.
		
			
				
	
	
		
			12 lines
		
	
	
		
			457 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			457 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
COMPONENT_ADD_INCLUDEDIRS := include/common include/security include/transports
 | 
						|
COMPONENT_PRIV_INCLUDEDIRS := proto-c src/common src/simple_ble
 | 
						|
COMPONENT_SRCDIRS := src/common src/security proto-c src/simple_ble src/transports
 | 
						|
 | 
						|
ifndef CONFIG_BT_BLUEDROID_ENABLED
 | 
						|
	COMPONENT_OBJEXCLUDE += src/simple_ble/simple_ble.o src/transports/protocomm_ble.o
 | 
						|
endif
 | 
						|
 | 
						|
ifndef CONFIG_BT_NIMBLE_ENABLED
 | 
						|
       COMPONENT_OBJEXCLUDE += src/transports/protocomm_nimble.o
 | 
						|
endif
 |