summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMariusz Skamra <mariusz.skamra@tieto.com>2016-02-24 15:48:48 +0100
committerMariusz Skamra <mariusz.skamra@tieto.com>2016-03-02 11:38:00 +0100
commit9055bfe58fab10a1f33a73245c8fc058848fd9e8 (patch)
treeb659adb59ec188d742e7f66613cb9c031eeb1037
parentc76bd33d614dbf365df0284d1cfcd8d31751bbde (diff)
Bluetooth: tester: Fix missing bit in GAP supported commands
GAP_CONNECT bit was missing in supported commands. Change-Id: I9d009c55327ae67bed38c45b7c11fb67665e1cd0 Signed-off-by: Mariusz Skamra <mariusz.skamra@tieto.com>
-rw-r--r--tests/bluetooth/tester/src/gap.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/bluetooth/tester/src/gap.c b/tests/bluetooth/tester/src/gap.c
index 94cdc5f90..587b1c94a 100644
--- a/tests/bluetooth/tester/src/gap.c
+++ b/tests/bluetooth/tester/src/gap.c
@@ -86,6 +86,7 @@ static void supported_commands(uint8_t *data, uint16_t len)
tester_set_bit(cmds, GAP_STOP_ADVERTISING);
tester_set_bit(cmds, GAP_START_DISCOVERY);
tester_set_bit(cmds, GAP_STOP_DISCOVERY);
+ tester_set_bit(cmds, GAP_CONNECT);
tester_set_bit(cmds, GAP_DISCONNECT);
tester_set_bit(cmds, GAP_SET_IO_CAP);
tester_set_bit(cmds, GAP_PAIR);