Where can I find discriptors handle other than cccd, sccd? I already know sd_ble_gatts_characteristic_add() return cccd, sccd handles in m_nus->service_handle->cccd_handle/sccd_handle. But I don't know where the rest is in..
Where can I find discriptors handle other than cccd, sccd? I already know sd_ble_gatts_characteristic_add() return cccd, sccd handles in m_nus->service_handle->cccd_handle/sccd_handle. But I don't know where the rest is in..
If present, the handle of the user description descriptor is outputed together with the CCCD handle and the SCCD handle.
Other descriptors should be added with sd_ble_gatts_descriptor_add(), which returns the handle.
But I can't find cpf handle.. Where can I find this?
What is cpf?
It is characteristic presentation format descriptor..
Ok. Actually it seems that this handle is not outputed anywhere, but you add it with sd_ble_gatts_characteristic_add(), not sd_ble_gatts_descriptor_add(), my mistake, sorry. Can I ask why you need the handle?