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
The following commit(s) were added to refs/heads/master by this push:
new 44712aa apps/bttester: Enable Friend feature
44712aa is described below
commit 44712aa5af155fd57ae11e8c0411c65c60b67b03
Author: MichaĆ Narajowski <[email protected]>
AuthorDate: Mon Sep 30 05:29:27 2019 -0500
apps/bttester: Enable Friend feature
Friend feature test cases in auto-pts require this option to be enabled.
---
apps/bttester/src/mesh.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/apps/bttester/src/mesh.c b/apps/bttester/src/mesh.c
index 6bac3cc..e18a2a4 100644
--- a/apps/bttester/src/mesh.c
+++ b/apps/bttester/src/mesh.c
@@ -125,7 +125,7 @@ static struct bt_mesh_cfg_srv cfg_srv = {
.relay = BT_MESH_RELAY_ENABLED,
.beacon = BT_MESH_BEACON_ENABLED,
#if MYNEWT_VAL(BLE_MESH_FRIEND)
- .frnd = BT_MESH_FRIEND_DISABLED,
+ .frnd = BT_MESH_FRIEND_ENABLED,
#else
.frnd = BT_MESH_FRIEND_NOT_SUPPORTED,
#endif