From 1cbafa7ff4125e46b36c685e28fa5be5d9611ae0 Mon Sep 17 00:00:00 2001 From: Matthias Ringwald Date: Wed, 7 Nov 2018 18:28:22 +0100 Subject: [PATCH] mesh: set AID for PTS Application Key --- test/mesh/mesh.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/mesh/mesh.c b/test/mesh/mesh.c index 19e680bd4..845cc7ae3 100644 --- a/test/mesh/mesh.c +++ b/test/mesh/mesh.c @@ -774,7 +774,7 @@ int btstack_main(void) uint8_t application_key[16]; const char * application_key_string = "3216D1509884B533248541792B877F98"; btstack_parse_hex(application_key_string, 16, application_key); - mesh_application_key_set(0x26, application_key); // TODO: figure out correct AID + mesh_application_key_set(0x38, application_key); printf("Application Key: "); printf_hexdump(application_key, 16);