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/09/12 08:12:52 UTC

[GitHub] [mynewt-nimble] apache-mynewt-bot commented on pull request #1356: nimble/ll: Add dummy FEM option

apache-mynewt-bot commented on PR #1356:
URL: https://github.com/apache/mynewt-nimble/pull/1356#issuecomment-1243371364

   
   <!-- style-bot -->
   
   ## Style check summary
   
   ### Our coding style is [here!](https://github.com/apache/mynewt-core/blob/master/CODING_STANDARDS.md)
   
   
   #### nimble/controller/include/controller/ble_ll_fem.h
   <details>
   
   ```diff
   @@ -28,9 +28,18 @@
    
    #if MYNEWT_VAL(BLE_LL_FEM_PA)
    #if MYNEWT_VAL(BLE_LL_FEM_DUMMY)
   -static inline void ble_ll_fem_pa_init(void) {}
   -static inline void ble_ll_fem_pa_enable(void) {}
   -static inline void ble_ll_fem_pa_disable(void) {}
   +static inline void
   +ble_ll_fem_pa_init(void)
   +{
   +}
   +static inline void
   +ble_ll_fem_pa_enable(void)
   +{
   +}
   +static inline void
   +ble_ll_fem_pa_disable(void)
   +{
   +}
    #else
    void ble_ll_fem_pa_init(void);
    void ble_ll_fem_pa_enable(void);
   @@ -40,9 +49,18 @@
    
    #if MYNEWT_VAL(BLE_LL_FEM_LNA)
    #if MYNEWT_VAL(BLE_LL_FEM_DUMMY)
   -static inline void ble_ll_fem_lna_init(void) {}
   -static inline void ble_ll_fem_lna_enable(void) {}
   -static inline void ble_ll_fem_lna_disable(void) {}
   +static inline void
   +ble_ll_fem_lna_init(void)
   +{
   +}
   +static inline void
   +ble_ll_fem_lna_enable(void)
   +{
   +}
   +static inline void
   +ble_ll_fem_lna_disable(void)
   +{
   +}
    #else
    void ble_ll_fem_lna_init(void);
    void ble_ll_fem_lna_enable(void);
   ```
   
   </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.

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

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