You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by we...@apache.org on 2017/03/30 21:12:54 UTC

[37/37] incubator-mynewt-core git commit: The number of concurrent connections should be default to 1.

The number of concurrent connections should be default to 1.


Project: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/commit/244227b7
Tree: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/tree/244227b7
Diff: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/diff/244227b7

Branch: refs/heads/nrf_cputime
Commit: 244227b77eddce0a2a09034b436e5fafcf2815fb
Parents: 3c78595
Author: William San Filippo <wi...@runtime.io>
Authored: Thu Mar 30 13:59:58 2017 -0700
Committer: William San Filippo <wi...@runtime.io>
Committed: Thu Mar 30 14:10:22 2017 -0700

----------------------------------------------------------------------
 apps/bletest/src/main.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/244227b7/apps/bletest/src/main.c
----------------------------------------------------------------------
diff --git a/apps/bletest/src/main.c b/apps/bletest/src/main.c
index efb3fd4..e2519eb 100755
--- a/apps/bletest/src/main.c
+++ b/apps/bletest/src/main.c
@@ -172,7 +172,7 @@ bletest_multi_adv_instances[BLETEST_CFG_ADV_TEST_INSTANCES] = {
 #define BLETEST_CFG_MAX_CE_LEN          (BLETEST_CFG_CONN_ITVL)
 #define BLETEST_CFG_CONN_PEER_ADDR_TYPE (BLE_HCI_CONN_PEER_ADDR_PUBLIC)
 #define BLETEST_CFG_CONN_OWN_ADDR_TYPE  (BLE_HCI_ADV_OWN_ADDR_PUBLIC)
-#define BLETEST_CFG_CONCURRENT_CONNS    (8)
+#define BLETEST_CFG_CONCURRENT_CONNS    (1)
 
 /* Test packet config */
 #define BLETEST_CFG_RAND_PKT_SIZE       (1)