This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

multiple peripheral to Single central connection

Dear Nordic Team,

Thanks for supporting.

I am try to work multiple (Peripheral) tag ID read with one central and stored in my PC via UART communication. Which example I want to choose?. please anybody Give me a suggestion. Thanks in advance.

I am using nRF51 and nRF52 DK and SDK version is 11.0

Simply explained Here :Untitled.png

Parents Reply
  • device_addr is a ble_gap_addr_t struct that looks like this:

    	typedef struct
    {
      uint8_t addr_id_peer : 1;       /**< Only valid for peer addresses.
                                           Reference to peer in device identities list (as set with @ref sd_ble_gap_device_identities_set) when peer is using privacy. */
      uint8_t addr_type    : 7;       /**< See @ref BLE_GAP_ADDR_TYPES. */
      uint8_t addr[BLE_GAP_ADDR_LEN]; /**< 48-bit address, LSB format. */
    } ble_gap_addr_t;
    

    So the adress is stored in device_addr.addr

Children
No Data
Related