You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by ry...@apache.org on 2018/11/05 11:31:10 UTC

[mynewt-nimble] 01/04: nimble/ll: Add missing check for support BLE_LL_CTRL_PHY_UPD_IND

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

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

commit 5ce4a27c81842b655a3a4c23b7c12efbf75f9876
Author: Ɓukasz Rymanowski <lu...@codecoup.pl>
AuthorDate: Fri Oct 19 00:09:17 2018 +0200

    nimble/ll: Add missing check for support BLE_LL_CTRL_PHY_UPD_IND
    
    This is needed for LL/PAC/SLA/BV-01
---
 nimble/controller/src/ble_ll_ctrl.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/nimble/controller/src/ble_ll_ctrl.c b/nimble/controller/src/ble_ll_ctrl.c
index 0dc6a78..0f0a29b 100644
--- a/nimble/controller/src/ble_ll_ctrl.c
+++ b/nimble/controller/src/ble_ll_ctrl.c
@@ -2248,6 +2248,9 @@ ble_ll_ctrl_rx_pdu(struct ble_ll_conn_sm *connsm, struct os_mbuf *om)
     case BLE_LL_CTRL_PHY_REQ:
         feature = BLE_LL_FEAT_LE_2M_PHY | BLE_LL_FEAT_LE_CODED_PHY;
         break;
+    case BLE_LL_CTRL_MIN_USED_CHAN_IND:
+        feature = BLE_LL_FEAT_MIN_USED_CHAN;
+        break;
     default:
         feature = 0;
         break;