This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts
This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Central and a custom peripheral device

Hi,

Can the central device (ble_app_hrs_c for example) scan for and connect to a custom peripheral device (not nRF based)?

Parents Reply
  • @endnode thanks for the info. I found it really easy to scan for a custom peripheral device with the ble_app_hrs_c example. Just disable the whitelist and enable active scanning mode in the scan_start() function:

    m_scan_param.active   = 1;
    m_scan_param.use_whitelist  = 0;
    m_whitelist_disabled = true;
    
Children
No Data
Related