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 2020/05/14 10:46:50 UTC

[GitHub] [mynewt-nimble] apache-mynewt-bot removed a comment on pull request #815: nimble/ll: Add controller-to-host flow control support

apache-mynewt-bot removed a comment on pull request #815:
URL: https://github.com/apache/mynewt-nimble/pull/815#issuecomment-627996392


   
   <!-- style-bot -->
   
   ## Style check summary
   
   ### Our coding style is [here!](https://github.com/apache/mynewt-core/blob/master/CODING_STANDARDS.md)
   
   
   #### nimble/controller/src/ble_ll_supp_cmd.c
   <details>
   
   ```diff
   @@ -46,31 +46,31 @@
    #define BLE_SUPP_CMD_HOST_NUM_COMP_PACKETS  (0 << 7)
    #endif
    #define BLE_LL_SUPP_CMD_OCTET_10            \
   -(                                           \
   -    BLE_SUPP_CMD_RD_TX_PWR              |   \
   -    BLE_SUPP_CMD_SET_CTRL_TO_HOST_FLOW  |   \
   -    BLE_SUPP_CMD_HOST_BUFFER_SIZE       |   \
   -    BLE_SUPP_CMD_HOST_NUM_COMP_PACKETS      \
   -)
   +    (                                           \
   +        BLE_SUPP_CMD_RD_TX_PWR              |   \
   +        BLE_SUPP_CMD_SET_CTRL_TO_HOST_FLOW  |   \
   +        BLE_SUPP_CMD_HOST_BUFFER_SIZE       |   \
   +        BLE_SUPP_CMD_HOST_NUM_COMP_PACKETS      \
   +    )
    
    /* Octet 14 */
    #define BLE_SUPP_CMD_RD_LOC_VER             (1 << 3)
    #define BLE_SUPP_CMD_RD_LOC_SUPP_FEAT       (1 << 5)
    #define BLE_LL_SUPP_CMD_OCTET_14            \
   -(                                           \
   -    BLE_SUPP_CMD_RD_LOC_VER         |       \
   -    BLE_SUPP_CMD_RD_LOC_SUPP_FEAT           \
   -)
   +    (                                           \
   +        BLE_SUPP_CMD_RD_LOC_VER         |       \
   +        BLE_SUPP_CMD_RD_LOC_SUPP_FEAT           \
   +    )
    
    /* Octet 15 */
    #define BLE_SUPP_CMD_RD_BD_ADDR             (1 << 1)
    #define BLE_SUPP_CMD_RD_RSSI                (1 << 5)
    
    #define BLE_LL_SUPP_CMD_OCTET_15            \
   -(                                           \
   -    BLE_SUPP_CMD_RD_BD_ADDR         |       \
   -    BLE_SUPP_CMD_RD_RSSI                    \
   -)
   +    (                                           \
   +        BLE_SUPP_CMD_RD_BD_ADDR         |       \
   +        BLE_SUPP_CMD_RD_RSSI                    \
   +    )
    
    /* Octet 25 */
    #define BLE_SUPP_CMD_LE_SET_EV_MASK         (1 << 0)
   ```
   
   </details>


----------------------------------------------------------------
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.

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