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 2016/08/11 21:27:24 UTC

[24/50] [abbrv] incubator-mynewt-core git commit: bletiny - Be consistent with addr type strings.

bletiny - Be consistent with addr type strings.


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/582201db
Tree: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/tree/582201db
Diff: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/diff/582201db

Branch: refs/heads/phyrx_no_mbuf
Commit: 582201db07f0c9bcf68449f070e921cc2d19f3c8
Parents: dff04c8
Author: Christopher Collins <cc...@apache.org>
Authored: Thu Aug 4 18:31:32 2016 -0700
Committer: William San Filippo <wi...@runtime.io>
Committed: Thu Aug 11 14:26:25 2016 -0700

----------------------------------------------------------------------
 apps/bletiny/src/cmd.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/582201db/apps/bletiny/src/cmd.c
----------------------------------------------------------------------
diff --git a/apps/bletiny/src/cmd.c b/apps/bletiny/src/cmd.c
index 1d133da..e50d6b0 100644
--- a/apps/bletiny/src/cmd.c
+++ b/apps/bletiny/src/cmd.c
@@ -363,8 +363,8 @@ cmd_adv(int argc, char **argv)
 static struct kv_pair cmd_conn_peer_addr_types[] = {
     { "public",         BLE_HCI_CONN_PEER_ADDR_PUBLIC },
     { "random",         BLE_HCI_CONN_PEER_ADDR_RANDOM },
-    { "public_ident",   BLE_HCI_CONN_PEER_ADDR_PUBLIC_IDENT },
-    { "random_ident",   BLE_HCI_CONN_PEER_ADDR_RANDOM_IDENT },
+    { "rpa_pub",        BLE_HCI_CONN_PEER_ADDR_PUBLIC_IDENT },
+    { "rpa_rnd",        BLE_HCI_CONN_PEER_ADDR_RANDOM_IDENT },
     { "wl",             BLE_GAP_ADDR_TYPE_WL },
     { NULL }
 };