When handling a `BLE_GATTS_EVT_WRITE` from a queued write, the write event has the characteristic handle set to zero. How can I identify what characteristic is being written to?
Currently using sdk 12.3
When handling a `BLE_GATTS_EVT_WRITE` from a queued write, the write event has the characteristic handle set to zero. How can I identify what characteristic is being written to?
Currently using sdk 12.3
Hi
In this case the handle will be stored in the memory buffer that you provide to the SoftDevice, as shown here.
The handle is not passed in the event itself.
Best regards
Torbjørn
Hi
In this case the handle will be stored in the memory buffer that you provide to the SoftDevice, as shown here.
The handle is not passed in the event itself.
Best regards
Torbjørn
Great, thank you!