Use Multi-NUS in one central device to get two peripheral's data

Hi,

I have used the sample given in blog , however, my purpose is to get data from two device "IMU1" and "IMU2", using callback "static uint8_t ble_data_received " to print out, I am using the coded_phy in NCS 2.91 with nRF21540 DK to be the central device.

My main.c is 

Fullscreen
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
* Copyright (c) 2018 Nordic Semiconductor ASA
*
* SPDX-License-Identifier: LicenseRef-BSD-5-Clause-Nordic
*/
/** @file
* @brief Nordic UART Service Client sample
*/
#include "uart_async_adapter.h"//WRC
#include <zephyr/usb/usb_device.h> //WRC
#include <errno.h>
#include <zephyr/kernel.h>
#include <zephyr/sys/byteorder.h>
#include <zephyr/sys/printk.h>
#include <zephyr/device.h>
#include <zephyr/devicetree.h>
#include <soc.h>
#include <zephyr/bluetooth/bluetooth.h>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

My config is:

Fullscreen
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#
# Copyright (c) 2018 Nordic Semiconductor
#
# SPDX-License-Identifier: LicenseRef-BSD-5-Clause-Nordic
#
# Enable the UART driver
CONFIG_UART_ASYNC_API=y
CONFIG_NRFX_UARTE0=y
CONFIG_SERIAL=y
CONFIG_CONSOLE=y
CONFIG_UART_CONSOLE=y
# Enable the BLE stack with GATT Client configuration
CONFIG_BT=y
CONFIG_BT_CENTRAL=y
CONFIG_BT_SMP=y
CONFIG_BT_GATT_CLIENT=y
CONFIG_BT_MAX_CONN=20
CONFIG_BT_MAX_PAIRED=20
CONFIG_BT_CONN_CTX=y
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

The result is

I cannot even get IMU1 data, I have test in anther central device code served for one peripheral, it works well, the code is:

Fullscreen
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
* Copyright (c) 2018 Nordic Semiconductor ASA
*
* SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
*/
/** @file
* @brief Nordic UART Service Client sample
*/
#include <errno.h>
#include <zephyr/kernel.h>
#include <zephyr/device.h>
#include <zephyr/devicetree.h>
#include <zephyr/sys/byteorder.h>
#include <zephyr/sys/printk.h>
#include <zephyr/bluetooth/bluetooth.h>
#include <zephyr/bluetooth/hci.h>
#include <zephyr/bluetooth/conn.h>
#include <zephyr/bluetooth/uuid.h>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Could you please help me get data form 2 nus peripheral with coded_phy? Thank you so much!

Parents
  • Hi Zhou, 
    Have you make sure you handle each connection with correct bt_conn conn id ? 
    From what I can see here you are assigning them to the same pointer: default_conn

    Fullscreen
    1
    2
    3
    err = bt_conn_le_create(device_info->recv_info->addr, conn_params,
    BT_LE_CONN_PARAM_DEFAULT,
    &default_conn);
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    Each connection should be assigned to a different "conn", so that you can use them later on. Or you can compare them with the "conn" in each of the BLE event. 

    Please try to test with one single peripheral and make sure it works fine before testing with 2 peripherals. 

Reply
  • Hi Zhou, 
    Have you make sure you handle each connection with correct bt_conn conn id ? 
    From what I can see here you are assigning them to the same pointer: default_conn

    Fullscreen
    1
    2
    3
    err = bt_conn_le_create(device_info->recv_info->addr, conn_params,
    BT_LE_CONN_PARAM_DEFAULT,
    &default_conn);
    XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

    Each connection should be assigned to a different "conn", so that you can use them later on. Or you can compare them with the "conn" in each of the BLE event. 

    Please try to test with one single peripheral and make sure it works fine before testing with 2 peripherals. 

Children
No Data