From 8e12b46dc3fcc57aebd16ede47898931401b7146 Mon Sep 17 00:00:00 2001 From: Florian Grandel Date: Thu, 18 Jun 2015 03:17:38 +0200 Subject: [PATCH] tools/mgmt-tester: increase max adv inst The kernel now allows for up to five concurrent advertising instances. This patch adapts the tests to the new setting. --- tools/mgmt-tester.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/mgmt-tester.c b/tools/mgmt-tester.c index 089812ed2..ddf82c18a 100644 --- a/tools/mgmt-tester.c +++ b/tools/mgmt-tester.c @@ -3868,7 +3868,7 @@ static const uint8_t read_adv_features_rsp_1[] = { 0x1f, 0x00, 0x00, 0x00, /* supported flags */ 0x1f, /* max_adv_data_len */ 0x1f, /* max_scan_rsp_len */ - 0x01, /* max_instances */ + 0x05, /* max_instances */ 0x00, /* num_instances */ }; @@ -3883,7 +3883,7 @@ static const uint8_t read_adv_features_rsp_2[] = { 0x1f, 0x00, 0x00, 0x00, /* supported flags */ 0x1f, /* max_adv_data_len */ 0x1f, /* max_scan_rsp_len */ - 0x01, /* max_instances */ + 0x05, /* max_instances */ 0x01, /* num_instances */ 0x01, /* instance identifiers */ }; -- 2.47.3