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 2021/02/05 21:00:26 UTC

[GitHub] [mynewt-nimble] andrzej-kaczmarek opened a new pull request #910: nimble/phy: Fix tx_late handling

andrzej-kaczmarek opened a new pull request #910:
URL: https://github.com/apache/mynewt-nimble/pull/910


   Disabling some errors temporarily to avoid tx_late does not work
   properly because those errors are not reset when BS is reset and we
   may still have CMAC error after those errors are enabled.
   
   To make things work let's just keep all relevant errors disabled and
   ignore them since we can use exceptions status to detect tx_late pretty
   consistently.


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



[GitHub] [mynewt-nimble] apache-mynewt-bot commented on pull request #910: nimble/phy: Fix tx_late handling

Posted by GitBox <gi...@apache.org>.
apache-mynewt-bot commented on pull request #910:
URL: https://github.com/apache/mynewt-nimble/pull/910#issuecomment-779306456


   
   <!-- style-bot -->
   
   ## Style check summary
   
   ### Our coding style is [here!](https://github.com/apache/mynewt-core/blob/master/CODING_STANDARDS.md)
   
   
   #### nimble/drivers/dialog_cmac/src/ble_phy.c
   <details>
   
   ```diff
   @@ -42,42 +42,42 @@
    
    /* Statistics */
    STATS_SECT_START(ble_phy_stats)
   -    STATS_SECT_ENTRY(phy_isrs)
   -    STATS_SECT_ENTRY(tx_good)
   -    STATS_SECT_ENTRY(tx_fail)
   -    STATS_SECT_ENTRY(tx_late)
   -    STATS_SECT_ENTRY(tx_late_sched)
   -    STATS_SECT_ENTRY(tx_late_frame)
   -    STATS_SECT_ENTRY(tx_late_field)
   -    STATS_SECT_ENTRY(tx_bytes)
   -    STATS_SECT_ENTRY(rx_starts)
   -    STATS_SECT_ENTRY(rx_aborts)
   -    STATS_SECT_ENTRY(rx_valid)
   -    STATS_SECT_ENTRY(rx_crc_err)
   -    STATS_SECT_ENTRY(rx_late)
   -    STATS_SECT_ENTRY(radio_state_errs)
   -    STATS_SECT_ENTRY(rx_hw_err)
   -    STATS_SECT_ENTRY(tx_hw_err)
   +STATS_SECT_ENTRY(phy_isrs)
   +STATS_SECT_ENTRY(tx_good)
   +STATS_SECT_ENTRY(tx_fail)
   +STATS_SECT_ENTRY(tx_late)
   +STATS_SECT_ENTRY(tx_late_sched)
   +STATS_SECT_ENTRY(tx_late_frame)
   +STATS_SECT_ENTRY(tx_late_field)
   +STATS_SECT_ENTRY(tx_bytes)
   +STATS_SECT_ENTRY(rx_starts)
   +STATS_SECT_ENTRY(rx_aborts)
   +STATS_SECT_ENTRY(rx_valid)
   +STATS_SECT_ENTRY(rx_crc_err)
   +STATS_SECT_ENTRY(rx_late)
   +STATS_SECT_ENTRY(radio_state_errs)
   +STATS_SECT_ENTRY(rx_hw_err)
   +STATS_SECT_ENTRY(tx_hw_err)
    STATS_SECT_END
    STATS_SECT_DECL(ble_phy_stats) ble_phy_stats;
    
    STATS_NAME_START(ble_phy_stats)
   -    STATS_NAME(ble_phy_stats, phy_isrs)
   -    STATS_NAME(ble_phy_stats, tx_good)
   -    STATS_NAME(ble_phy_stats, tx_fail)
   -    STATS_NAME(ble_phy_stats, tx_late)
   -    STATS_NAME(ble_phy_stats, tx_late_sched)
   -    STATS_NAME(ble_phy_stats, tx_late_frame)
   -    STATS_NAME(ble_phy_stats, tx_late_field)
   -    STATS_NAME(ble_phy_stats, tx_bytes)
   -    STATS_NAME(ble_phy_stats, rx_starts)
   -    STATS_NAME(ble_phy_stats, rx_aborts)
   -    STATS_NAME(ble_phy_stats, rx_valid)
   -    STATS_NAME(ble_phy_stats, rx_crc_err)
   -    STATS_NAME(ble_phy_stats, rx_late)
   -    STATS_NAME(ble_phy_stats, radio_state_errs)
   -    STATS_NAME(ble_phy_stats, rx_hw_err)
   -    STATS_NAME(ble_phy_stats, tx_hw_err)
   +STATS_NAME(ble_phy_stats, phy_isrs)
   +STATS_NAME(ble_phy_stats, tx_good)
   +STATS_NAME(ble_phy_stats, tx_fail)
   +STATS_NAME(ble_phy_stats, tx_late)
   +STATS_NAME(ble_phy_stats, tx_late_sched)
   +STATS_NAME(ble_phy_stats, tx_late_frame)
   +STATS_NAME(ble_phy_stats, tx_late_field)
   +STATS_NAME(ble_phy_stats, tx_bytes)
   +STATS_NAME(ble_phy_stats, rx_starts)
   +STATS_NAME(ble_phy_stats, rx_aborts)
   +STATS_NAME(ble_phy_stats, rx_valid)
   +STATS_NAME(ble_phy_stats, rx_crc_err)
   +STATS_NAME(ble_phy_stats, rx_late)
   +STATS_NAME(ble_phy_stats, radio_state_errs)
   +STATS_NAME(ble_phy_stats, rx_hw_err)
   +STATS_NAME(ble_phy_stats, tx_hw_err)
    STATS_NAME_END(ble_phy_stats)
    
    #if MYNEWT_VAL(BLE_LL_CFG_FEAT_LE_CODED_PHY)
   ```
   
   </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



[GitHub] [mynewt-nimble] benmccrea merged pull request #910: nimble/phy: Fix tx_late handling

Posted by GitBox <gi...@apache.org>.
benmccrea merged pull request #910:
URL: https://github.com/apache/mynewt-nimble/pull/910


   


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



[GitHub] [mynewt-nimble] apache-mynewt-bot commented on pull request #910: nimble/phy: Fix tx_late handling

Posted by GitBox <gi...@apache.org>.
apache-mynewt-bot commented on pull request #910:
URL: https://github.com/apache/mynewt-nimble/pull/910#issuecomment-774286632


   
   <!-- style-bot -->
   
   ## Style check summary
   
   #### No suggestions at this time!
   


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



[GitHub] [mynewt-nimble] apache-mynewt-bot commented on pull request #910: nimble/phy: Fix tx_late handling

Posted by GitBox <gi...@apache.org>.
apache-mynewt-bot commented on pull request #910:
URL: https://github.com/apache/mynewt-nimble/pull/910#issuecomment-779348571


   
   <!-- style-bot -->
   
   ## Style check summary
   
   ### Our coding style is [here!](https://github.com/apache/mynewt-core/blob/master/CODING_STANDARDS.md)
   
   
   #### nimble/drivers/dialog_cmac/src/ble_phy.c
   <details>
   
   ```diff
   @@ -42,42 +42,42 @@
    
    /* Statistics */
    STATS_SECT_START(ble_phy_stats)
   -    STATS_SECT_ENTRY(phy_isrs)
   -    STATS_SECT_ENTRY(tx_good)
   -    STATS_SECT_ENTRY(tx_fail)
   -    STATS_SECT_ENTRY(tx_late)
   -    STATS_SECT_ENTRY(tx_late_sched)
   -    STATS_SECT_ENTRY(tx_late_frame)
   -    STATS_SECT_ENTRY(tx_late_field)
   -    STATS_SECT_ENTRY(tx_bytes)
   -    STATS_SECT_ENTRY(rx_starts)
   -    STATS_SECT_ENTRY(rx_aborts)
   -    STATS_SECT_ENTRY(rx_valid)
   -    STATS_SECT_ENTRY(rx_crc_err)
   -    STATS_SECT_ENTRY(rx_late)
   -    STATS_SECT_ENTRY(radio_state_errs)
   -    STATS_SECT_ENTRY(rx_hw_err)
   -    STATS_SECT_ENTRY(tx_hw_err)
   +STATS_SECT_ENTRY(phy_isrs)
   +STATS_SECT_ENTRY(tx_good)
   +STATS_SECT_ENTRY(tx_fail)
   +STATS_SECT_ENTRY(tx_late)
   +STATS_SECT_ENTRY(tx_late_sched)
   +STATS_SECT_ENTRY(tx_late_frame)
   +STATS_SECT_ENTRY(tx_late_field)
   +STATS_SECT_ENTRY(tx_bytes)
   +STATS_SECT_ENTRY(rx_starts)
   +STATS_SECT_ENTRY(rx_aborts)
   +STATS_SECT_ENTRY(rx_valid)
   +STATS_SECT_ENTRY(rx_crc_err)
   +STATS_SECT_ENTRY(rx_late)
   +STATS_SECT_ENTRY(radio_state_errs)
   +STATS_SECT_ENTRY(rx_hw_err)
   +STATS_SECT_ENTRY(tx_hw_err)
    STATS_SECT_END
    STATS_SECT_DECL(ble_phy_stats) ble_phy_stats;
    
    STATS_NAME_START(ble_phy_stats)
   -    STATS_NAME(ble_phy_stats, phy_isrs)
   -    STATS_NAME(ble_phy_stats, tx_good)
   -    STATS_NAME(ble_phy_stats, tx_fail)
   -    STATS_NAME(ble_phy_stats, tx_late)
   -    STATS_NAME(ble_phy_stats, tx_late_sched)
   -    STATS_NAME(ble_phy_stats, tx_late_frame)
   -    STATS_NAME(ble_phy_stats, tx_late_field)
   -    STATS_NAME(ble_phy_stats, tx_bytes)
   -    STATS_NAME(ble_phy_stats, rx_starts)
   -    STATS_NAME(ble_phy_stats, rx_aborts)
   -    STATS_NAME(ble_phy_stats, rx_valid)
   -    STATS_NAME(ble_phy_stats, rx_crc_err)
   -    STATS_NAME(ble_phy_stats, rx_late)
   -    STATS_NAME(ble_phy_stats, radio_state_errs)
   -    STATS_NAME(ble_phy_stats, rx_hw_err)
   -    STATS_NAME(ble_phy_stats, tx_hw_err)
   +STATS_NAME(ble_phy_stats, phy_isrs)
   +STATS_NAME(ble_phy_stats, tx_good)
   +STATS_NAME(ble_phy_stats, tx_fail)
   +STATS_NAME(ble_phy_stats, tx_late)
   +STATS_NAME(ble_phy_stats, tx_late_sched)
   +STATS_NAME(ble_phy_stats, tx_late_frame)
   +STATS_NAME(ble_phy_stats, tx_late_field)
   +STATS_NAME(ble_phy_stats, tx_bytes)
   +STATS_NAME(ble_phy_stats, rx_starts)
   +STATS_NAME(ble_phy_stats, rx_aborts)
   +STATS_NAME(ble_phy_stats, rx_valid)
   +STATS_NAME(ble_phy_stats, rx_crc_err)
   +STATS_NAME(ble_phy_stats, rx_late)
   +STATS_NAME(ble_phy_stats, radio_state_errs)
   +STATS_NAME(ble_phy_stats, rx_hw_err)
   +STATS_NAME(ble_phy_stats, tx_hw_err)
    STATS_NAME_END(ble_phy_stats)
    
    #if MYNEWT_VAL(BLE_LL_CFG_FEAT_LE_CODED_PHY)
   ```
   
   </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



[GitHub] [mynewt-nimble] apache-mynewt-bot removed a comment on pull request #910: nimble/phy: Fix tx_late handling

Posted by GitBox <gi...@apache.org>.
apache-mynewt-bot removed a comment on pull request #910:
URL: https://github.com/apache/mynewt-nimble/pull/910#issuecomment-779306456


   
   <!-- style-bot -->
   
   ## Style check summary
   
   ### Our coding style is [here!](https://github.com/apache/mynewt-core/blob/master/CODING_STANDARDS.md)
   
   
   #### nimble/drivers/dialog_cmac/src/ble_phy.c
   <details>
   
   ```diff
   @@ -42,42 +42,42 @@
    
    /* Statistics */
    STATS_SECT_START(ble_phy_stats)
   -    STATS_SECT_ENTRY(phy_isrs)
   -    STATS_SECT_ENTRY(tx_good)
   -    STATS_SECT_ENTRY(tx_fail)
   -    STATS_SECT_ENTRY(tx_late)
   -    STATS_SECT_ENTRY(tx_late_sched)
   -    STATS_SECT_ENTRY(tx_late_frame)
   -    STATS_SECT_ENTRY(tx_late_field)
   -    STATS_SECT_ENTRY(tx_bytes)
   -    STATS_SECT_ENTRY(rx_starts)
   -    STATS_SECT_ENTRY(rx_aborts)
   -    STATS_SECT_ENTRY(rx_valid)
   -    STATS_SECT_ENTRY(rx_crc_err)
   -    STATS_SECT_ENTRY(rx_late)
   -    STATS_SECT_ENTRY(radio_state_errs)
   -    STATS_SECT_ENTRY(rx_hw_err)
   -    STATS_SECT_ENTRY(tx_hw_err)
   +STATS_SECT_ENTRY(phy_isrs)
   +STATS_SECT_ENTRY(tx_good)
   +STATS_SECT_ENTRY(tx_fail)
   +STATS_SECT_ENTRY(tx_late)
   +STATS_SECT_ENTRY(tx_late_sched)
   +STATS_SECT_ENTRY(tx_late_frame)
   +STATS_SECT_ENTRY(tx_late_field)
   +STATS_SECT_ENTRY(tx_bytes)
   +STATS_SECT_ENTRY(rx_starts)
   +STATS_SECT_ENTRY(rx_aborts)
   +STATS_SECT_ENTRY(rx_valid)
   +STATS_SECT_ENTRY(rx_crc_err)
   +STATS_SECT_ENTRY(rx_late)
   +STATS_SECT_ENTRY(radio_state_errs)
   +STATS_SECT_ENTRY(rx_hw_err)
   +STATS_SECT_ENTRY(tx_hw_err)
    STATS_SECT_END
    STATS_SECT_DECL(ble_phy_stats) ble_phy_stats;
    
    STATS_NAME_START(ble_phy_stats)
   -    STATS_NAME(ble_phy_stats, phy_isrs)
   -    STATS_NAME(ble_phy_stats, tx_good)
   -    STATS_NAME(ble_phy_stats, tx_fail)
   -    STATS_NAME(ble_phy_stats, tx_late)
   -    STATS_NAME(ble_phy_stats, tx_late_sched)
   -    STATS_NAME(ble_phy_stats, tx_late_frame)
   -    STATS_NAME(ble_phy_stats, tx_late_field)
   -    STATS_NAME(ble_phy_stats, tx_bytes)
   -    STATS_NAME(ble_phy_stats, rx_starts)
   -    STATS_NAME(ble_phy_stats, rx_aborts)
   -    STATS_NAME(ble_phy_stats, rx_valid)
   -    STATS_NAME(ble_phy_stats, rx_crc_err)
   -    STATS_NAME(ble_phy_stats, rx_late)
   -    STATS_NAME(ble_phy_stats, radio_state_errs)
   -    STATS_NAME(ble_phy_stats, rx_hw_err)
   -    STATS_NAME(ble_phy_stats, tx_hw_err)
   +STATS_NAME(ble_phy_stats, phy_isrs)
   +STATS_NAME(ble_phy_stats, tx_good)
   +STATS_NAME(ble_phy_stats, tx_fail)
   +STATS_NAME(ble_phy_stats, tx_late)
   +STATS_NAME(ble_phy_stats, tx_late_sched)
   +STATS_NAME(ble_phy_stats, tx_late_frame)
   +STATS_NAME(ble_phy_stats, tx_late_field)
   +STATS_NAME(ble_phy_stats, tx_bytes)
   +STATS_NAME(ble_phy_stats, rx_starts)
   +STATS_NAME(ble_phy_stats, rx_aborts)
   +STATS_NAME(ble_phy_stats, rx_valid)
   +STATS_NAME(ble_phy_stats, rx_crc_err)
   +STATS_NAME(ble_phy_stats, rx_late)
   +STATS_NAME(ble_phy_stats, radio_state_errs)
   +STATS_NAME(ble_phy_stats, rx_hw_err)
   +STATS_NAME(ble_phy_stats, tx_hw_err)
    STATS_NAME_END(ble_phy_stats)
    
    #if MYNEWT_VAL(BLE_LL_CFG_FEAT_LE_CODED_PHY)
   ```
   
   </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



[GitHub] [mynewt-nimble] apache-mynewt-bot removed a comment on pull request #910: nimble/phy: Fix tx_late handling

Posted by GitBox <gi...@apache.org>.
apache-mynewt-bot removed a comment on pull request #910:
URL: https://github.com/apache/mynewt-nimble/pull/910#issuecomment-774286632


   
   <!-- style-bot -->
   
   ## Style check summary
   
   #### No suggestions at this time!
   


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