You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by an...@apache.org on 2017/04/11 22:45:38 UTC

[09/14] incubator-mynewt-core git commit: nimble/controller: Rename and move ble_ll_conn_csa2_remapped_channel

nimble/controller: Rename and move ble_ll_conn_csa2_remapped_channel

This function is use both by CSA #1 and #2 so name it accordingly. Also
move it up in the source file - this is in preparation for optional
CSA #2 support.


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

Branch: refs/heads/bluetooth5
Commit: 22271049c61f4796f23f272cadd5d555ece37136
Parents: a7d39f9
Author: Szymon Janc <sz...@codecoup.pl>
Authored: Tue Apr 11 11:13:38 2017 +0200
Committer: Szymon Janc <sz...@codecoup.pl>
Committed: Tue Apr 11 11:13:38 2017 +0200

----------------------------------------------------------------------
 net/nimble/controller/src/ble_ll_conn.c | 76 ++++++++++++++--------------
 1 file changed, 38 insertions(+), 38 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/22271049/net/nimble/controller/src/ble_ll_conn.c
----------------------------------------------------------------------
diff --git a/net/nimble/controller/src/ble_ll_conn.c b/net/nimble/controller/src/ble_ll_conn.c
index 10b5cc7..b827182 100644
--- a/net/nimble/controller/src/ble_ll_conn.c
+++ b/net/nimble/controller/src/ble_ll_conn.c
@@ -563,6 +563,42 @@ ble_ll_conn_calc_access_addr(void)
     return aa;
 }
 
+static uint8_t
+ble_ll_conn_remapped_channel(uint8_t remap_index, const uint8_t *chanmap)
+{
+    uint8_t cntr;
+    uint8_t mask;
+    uint8_t usable_chans;
+    uint8_t chan;
+    int i, j;
+
+    /* NOTE: possible to build a map but this would use memory. For now,
+       we just calculate */
+    /* Iterate through channel map to find this channel */
+    chan = 0;
+    cntr = 0;
+    for (i = 0; i < BLE_LL_CONN_CHMAP_LEN; i++) {
+        usable_chans = chanmap[i];
+        if (usable_chans != 0) {
+            mask = 0x01;
+            for (j = 0; j < 8; j++) {
+                if (usable_chans & mask) {
+                    if (cntr == remap_index) {
+                        return (chan + j);
+                    }
+                    ++cntr;
+                }
+                mask <<= 1;
+            }
+        }
+        chan += 8;
+    }
+
+    /* we should never reach here */
+    assert(0);
+    return 0;
+}
+
 static uint16_t
 ble_ll_conn_csa2_perm(uint16_t in)
 {
@@ -601,42 +637,6 @@ ble_ll_conn_csa2_prng(uint16_t counter, uint16_t ch_id)
     return prn_e;
 }
 
-static uint8_t
-ble_ll_conn_csa2_remapped_channel(uint8_t remap_index, const uint8_t *chanmap)
-{
-    uint8_t cntr;
-    uint8_t mask;
-    uint8_t usable_chans;
-    uint8_t chan;
-    int i, j;
-
-    /* NOTE: possible to build a map but this would use memory. For now,
-       we just calculate */
-    /* Iterate through channel map to find this channel */
-    chan = 0;
-    cntr = 0;
-    for (i = 0; i < BLE_LL_CONN_CHMAP_LEN; i++) {
-        usable_chans = chanmap[i];
-        if (usable_chans != 0) {
-            mask = 0x01;
-            for (j = 0; j < 8; j++) {
-                if (usable_chans & mask) {
-                    if (cntr == remap_index) {
-                        return (chan + j);
-                    }
-                    ++cntr;
-                }
-                mask <<= 1;
-            }
-        }
-        chan += 8;
-    }
-
-    /* we should never reach here */
-    assert(0);
-    return 0;
-}
-
 uint8_t
 ble_ll_conn_calc_dci_csa2(struct ble_ll_conn_sm *conn)
 {
@@ -661,7 +661,7 @@ ble_ll_conn_calc_dci_csa2(struct ble_ll_conn_sm *conn)
 
     remap_index = (conn->num_used_chans * prn_e) / 0x10000;
 
-    return ble_ll_conn_csa2_remapped_channel(remap_index, conn->chanmap);
+    return ble_ll_conn_remapped_channel(remap_index, conn->chanmap);
 }
 
 /**
@@ -697,7 +697,7 @@ ble_ll_conn_calc_dci(struct ble_ll_conn_sm *conn)
     /* Calculate remap index */
     remap_index = curchan % conn->num_used_chans;
 
-    return ble_ll_conn_csa2_remapped_channel(remap_index, conn->chanmap);
+    return ble_ll_conn_remapped_channel(remap_index, conn->chanmap);
 }
 
 /**