You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by GitBox <gi...@apache.org> on 2022/02/24 14:35:33 UTC

[GitHub] [mynewt-nimble] supperthomas commented on a change in pull request #1189: nimble/hs: fix the LE Supported feature mask

supperthomas commented on a change in pull request #1189:
URL: https://github.com/apache/mynewt-nimble/pull/1189#discussion_r813939636



##########
File path: nimble/host/src/ble_hs_startup.c
##########
@@ -40,7 +40,7 @@ ble_hs_startup_read_sup_f_tx(void)
     /* for now we don't use it outside of init sequence so check this here
      * LE Supported (Controller) byte 4, bit 6
      */
-    if (!(rsp.features & 0x0000006000000000)) {
+    if (!(rsp.features &  htole64(0x0000006000000000))) {

Review comment:
       complete .




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@mynewt.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org