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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to