From 670cd995ca1de3dece7dd5e08ac44dea152fcc56 Mon Sep 17 00:00:00 2001 From: Matthias Ringwald Date: Tue, 16 Jul 2019 21:45:39 +0200 Subject: [PATCH] mesh: print iv index after provisioning in pts test --- test/mesh/mesh_pts.c | 1 + 1 file changed, 1 insertion(+) diff --git a/test/mesh/mesh_pts.c b/test/mesh/mesh_pts.c index 86e35fc6b..95715f328 100644 --- a/test/mesh/mesh_pts.c +++ b/test/mesh/mesh_pts.c @@ -91,6 +91,7 @@ static void mesh_provisioning_dump(const mesh_provisioning_data_t * data){ mesh_network_key_t * key = data->network_key; printf("UnicastAddr: 0x%02x\n", data->unicast_address); printf("DevKey: "); printf_hexdump(data->device_key, 16); + printf("IV Index: 0x%08x\n", data->iv_index); printf("Flags: 0x%02x\n", data->flags); printf("NetKey: "); printf_hexdump(key->net_key, 16); printf("-- Derived from NetKey --\n");