Hi,
I am using BLE5 Project Zero code from SDK :simplelink_cc2640r2_sdk_3_30_00_20 for my project.
I am facing some issues with pairing. In the project we are using custom profile with 4 Characteristics, One Characteristic has permission : GATT_PERMIT_AUTHEN_READ|GATT_PERMIT_AUTHEN_WRITE and properties: GATT_PROP_INDICATE.
I am able to pair and communicate with Samsung S10, but same pheripheral device not able to communicate with one plus 3.
following are GAP bond settings.
uint8_t pairMode = GAPBOND_PAIRING_MODE_WAIT_FOR_REQ;
 uint8_t mitm = TRUE;
 uint8_t ioCap = GAPBOND_IO_CAP_DISPLAY_ONLY;
 uint8_t bonding = TRUE;
GAPBondMgr_SetParameter(GAPBOND_PAIRING_MODE, sizeof(uint8_t),
 &pairMode);
 GAPBondMgr_SetParameter(GAPBOND_MITM_PROTECTION, sizeof(uint8_t), &mitm);
 GAPBondMgr_SetParameter(GAPBOND_IO_CAPABILITIES, sizeof(uint8_t),
 &ioCap);
 GAPBondMgr_SetParameter(GAPBOND_BONDING_ENABLED, sizeof(uint8_t),
 &bonding);
Can you please help me with this issue.
Thanks and Regards,
Neville