Hello, is there a possibility on nrf51 8.0.0 softdevice to determine whether particular notification has been received by remote device?
I use sd_ble_gatts_hvx() to send notifications and I know that softdevice can buffer multiple notifications and then send them serially. I want to receive callback each time notification is received by remote and I want to be able to determine what notification (because there can be more notifications buffered in softdevice) it was.
I know I can use indications, but I don't want to confirm on application level on the remote and I also like that I can buffer multiple notifications.