Hello,
Our customer has a project that uses nrf52833 as the master and want to connect to the slave of portable ECG meter (ble is Realtek). But they tried for a long time and still failed.
1. ECG meter (slave device) --- Realtek ble device Information :
UUID types: 128bit
UUID = {0xFB, 0x34, 0x9B, 0x5F, 0x80, 0x00, 0x00, 0x80, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}
2. nrf52833 DK as master device:
a. BLE central base on "nRF5_SDK_17.1.0_ddde560\examples\ble_central\ble_app_uart_c\pca10100\s122\arm5_no_packs"
b. Scan filter for UUIDs and UUID config is below:
#define NUS_BASE_UUID {{0xFB, 0x34, 0x9B, 0x5F, 0x80, 0x00, 0x00, 0x80, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}} /**< Used vendor-specific UUID. */
#define BLE_UUID_NUS_SERVICE 0xFF12 /**< The UUID of the Nordic UART Service. */
#define BLE_UUID_NUS_RX_CHARACTERISTIC 0xFF01 /**< The UUID of the RX Characteristic. */
#define BLE_UUID_NUS_TX_CHARACTERISTIC 0xFF02 /**< The UUID of the TX Characteristic. */
c. If "#define NUS_SERVICE_UUID_TYPE BLE_UUID_TYPE_BLE", 52833 can be connected to ECG meter, but the service cannot be found that log is "Service UUID 0xFF12 not found.".
If "#define NUS_SERVICE_UUID_TYPE BLE_UUID_TYPE_VENDOR_BEGIN" , 52833 cannot connect to ECG meter and the function of ble_advdata_uuid_find() return 7 (NRF_ERROR_INVALID_PARAM). This function is called by adv_uuid_compare() in the file "nrf_ble_scan.c".
3. My question:
a. Whether nRF52833 interconnect and communicate with Realtek are feasible?
b. If feasible, what is missing from the customer's above configuration?
c. Is there any other way to solve this problem?
Thanks
Pany