You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by na...@apache.org on 2020/01/07 11:18:15 UTC

[mynewt-nimble] 08/14: apps/bttester: Add missing supported commands bits

This is an automated email from the ASF dual-hosted git repository.

naraj pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mynewt-nimble.git

commit 482c71f5690c87541c48667ce26090956c00ab36
Author: MichaƂ Narajowski <mi...@codecoup.pl>
AuthorDate: Mon Dec 2 11:43:10 2019 +0100

    apps/bttester: Add missing supported commands bits
---
 apps/bttester/src/gap.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/apps/bttester/src/gap.c b/apps/bttester/src/gap.c
index 175020b..7325e59 100644
--- a/apps/bttester/src/gap.c
+++ b/apps/bttester/src/gap.c
@@ -115,6 +115,8 @@ static void supported_commands(u8_t *data, u16_t len)
 	tester_set_bit(cmds, GAP_UNPAIR);
 	tester_set_bit(cmds, GAP_PASSKEY_ENTRY);
 	tester_set_bit(cmds, GAP_PASSKEY_CONFIRM);
+	tester_set_bit(cmds, GAP_START_DIRECT_ADV);
+	tester_set_bit(cmds, GAP_CONN_PARAM_UPDATE);
 
 	tester_send(BTP_SERVICE_ID_GAP, GAP_READ_SUPPORTED_COMMANDS,
 		    CONTROLLER_INDEX, (u8_t *) rp, sizeof(cmds));