I've made a project that scans and advertises.
The first problem:
When i have one central link, I get the problem that the client service gets events twice.
<debug> ble_db_disc: Starting discovery of service with UUID 0x180F on connection handle 0x0.
<debug> nrf_ble_gatt: ATT MTU updated to 247 bytes on connection 0x0 (response).
<debug> ble_db_disc: Found service UUID 0x180F.
<debug> ble_scan: Connecting
<debug> ble_scan: Connection status: 0
<debug> app: Filter match:
<debug> app: 143:117:224:141:81:108
<debug> ble_db_disc: Discovery of service with UUID 0x180F completed with success on connection handle 0x0.
<debug> app: Db discovery Handler
<debug> ble_bas_c: Battery Service discovered at peer.
<debug> app: Battery Service discovered. Reading battery level.
<debug> ble_bas_c: SD Read/Write API returns Success..
<debug> app: Enabling Battery Level Notification.
<debug> ble_bas_c: Configuring CCCD. CCCD Handle = 43, Connection Handle = 0
<debug> ble_bas_c: SD Read/Write API returns error. This message sending will be attempted again..
<info> app: Battery Level Read as 99 %.
<debug> ble_bas_c: SD Read/Write API returns Success..
<info> app: Battery Level Read as 99 %.
The second problem:
When i have more central links it established a connection to the same device twice.
<debug> nrf_ble_gatt: Requesting to update ATT MTU to 247 bytes on connection 0x0.
...
<debug> nrf_ble_gatt: Requesting to update ATT MTU to 247 bytes on connection 0x1.
...
etc.
I've made a filter that triggers on a certain service UUID, and a name. That works fine.
The second problem i can't seem to figure out - I thought i should be in the Peer Manager's domain, but i'm not certain.
So at what module can I make some logic to ensure that the central(device 1) doesn't connect to the same device twice.