From 9055bfe58fab10a1f33a73245c8fc058848fd9e8 Mon Sep 17 00:00:00 2001 From: Mariusz Skamra Date: Wed, 24 Feb 2016 15:48:48 +0100 Subject: 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 --- tests/bluetooth/tester/src/gap.c | 1 + 1 file changed, 1 insertion(+) 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); -- cgit v1.2.3