This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

How to use BLE_GATTS_VLOC_USER ?

Do I still have to call sd_ble_gatts_value_set() on the characteristic handle [using whatever temporary buffer I would have been using anyway for BLE_GATTS_VLOC_STACK]?

Or can I simply modify the referenced buffer, and characteristic reads will magically start returning the updated buffer value? (I am not using rd_auth for characteristic reads; the ble_gatts_attr_md_t for the characteristic has rd_auth=0.)

Thanks!

Parents
  • You can in principle just modify the buffer, but if the attribute is of variable length it may cause problems since the softdevice will not know any longer how much of the buffer is actually valid. If the attribute has constant length, modifying the buffer directly shouldn't cause any problems.

    I'd still recommend to do the sd_ble_gatts_value_set(), just for consistency and code style, but that's your call. :-)

Reply
  • You can in principle just modify the buffer, but if the attribute is of variable length it may cause problems since the softdevice will not know any longer how much of the buffer is actually valid. If the attribute has constant length, modifying the buffer directly shouldn't cause any problems.

    I'd still recommend to do the sd_ble_gatts_value_set(), just for consistency and code style, but that's your call. :-)

Children
No Data
Related