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/11/24 14:27:27 UTC

[GitHub] [mynewt-nimble] haukepetersen commented on issue #1105: Extended Advertising: TX freezes after ~65535 seconds

haukepetersen commented on issue #1105:
URL: https://github.com/apache/mynewt-nimble/issues/1105#issuecomment-977929621


   of course:
   ```
       _adv_params.scannable = 0;
       _adv_params.directed = 0;
       _adv_params.own_addr_type = nimble_riot_own_addr_type;
       _adv_params.channel_map = BLE_GAP_ADV_DFLT_CHANNEL_MAP;
       _adv_params.filter_policy = 0;
       _adv_params.itvl_min = _config.advertiser_itvl_min;
       _adv_params.itvl_max = _config.advertiser_itvl_max;
       _adv_params.tx_power = 127;
       _adv_params.primary_phy = BLE_HCI_LE_PHY_1M;
       _adv_params.secondary_phy = BLE_HCI_LE_PHY_1M;
       _adv_params.directed = 1;
       _adv_params.peer.type = nimble_riot_own_addr_type;
   // and then setting the peer address, of course ...
   ```
   As said, for the first 18 hours this configuration works flawlessly, its only then that something breaks :-)


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