Wifi_provisioning_ble: Change service_uuid to non standard 128 bit UUID

- Modifies UUIDs in scheme_ble, manager example and esp_prov tool to custom 128
  bit UUID
This commit is contained in:
Prasad Alatkar
2020-03-11 10:59:52 +05:30
committed by bot
parent 88fd09111c
commit 8419aa85a9
3 changed files with 5 additions and 5 deletions

View File

@@ -72,8 +72,8 @@ static void *new_config(void)
const uint8_t service_uuid[16] = {
/* LSB <---------------------------------------
* ---------------------------------------> MSB */
0xfb, 0x34, 0x9b, 0x5f, 0x80, 0x00, 0x00, 0x80,
0x00, 0x10, 0x00, 0x00, 0xFF, 0xFF, 0x00, 0x00,
0x07, 0xed, 0x9b, 0x2d, 0x0f, 0x06, 0x7c, 0x87,
0x9b, 0x43, 0x43, 0x6b, 0x4d, 0x24, 0x75, 0x17,
};
memcpy(ble_config->service_uuid, service_uuid, sizeof(ble_config->service_uuid));