I have a characteristic that is 80bytes long which is sometimes read by the client using long read. I also want to send the complete attribute value when its state changes using gatts_hvx. This is where it got fuzzy and the documentation wasn't of much help.
Is it possible to use gatts_hvx function specifying the length to the attribute size (80 in this case) and have the hvx function send it out 20bytes at a time? I have tried but couldn't make it work.
Or is it limited to 20bytes and the app has to call it multiple times with 20bytes at a time? I did this - calling hvx with the p_data member pointing to the consecutive 20byte values and this does work - but to a point. The problem is if I do a value read after the four hvx calls, it always reads the last 20bytes as if some internal pointer is stuck pointing to the last 20bytes. The only way I could get it to read starting from the first byte is by calling hvx again with p_value set to the first byte. Is there a way to reset this so I don't have the extra hvx call?
Here is the code with the last hvx call commented out. Uncommenting it kind of works, but I shouldn't need to do this. Is there any documentation that sheds some light as to what the hvx does to the attribute table? What am I doing wrong?
if((p_tag->conn_handle != BLE_CONN_HANDLE_INVALID) && p_tag-is_notification_supported) { ble_gatts_hvx_params_t hvx_params; memset(&hvx_params, 0, sizeof(hvx_params));
len = 20; // not necessary since offset is 0
hvx_params.handle = p_tag->tag_char_handles.value_handle;
hvx_params.type = BLE_GATT_HVX_NOTIFICATION;
hvx_params.offset = 0;
hvx_params.p_len = &len;
hvx_params.p_data = (uint8_t*)(&state->data[0]);
err_code = sd_ble_gatts_hvx(p_tag->conn_handle, &hvx_params);
hvx_params.p_data = (uint8_t*)(&state->data[10]);
err_code = sd_ble_gatts_hvx(p_tag->conn_handle, &hvx_params);
hvx_params.p_data = (uint8_t*)(&state->data[20]);
err_code = sd_ble_gatts_hvx(p_tag->conn_handle, &hvx_params);
hvx_params.p_data = (uint8_t*)(&state->data[30]);
err_code = sd_ble_gatts_hvx(p_tag->conn_handle, &hvx_params);
// hvx_params.p_data = (uint8_t*)(&state->data[0]); // err_code = sd_ble_gatts_hvx(p_tag->conn_handle, &hvx_params); }
Note: state->data[] is of uint16_t type.
Also, in order to send all the attribute values, I had to use p_data which will update the attribute value in the stack which is where the value is stored in my application. Is there a way to do multiple hvx calls with p_data set to NULL? In other words, without gatts_hvx() updating the attribute value?
Thanks.