mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-02 12:14:32 +02:00
Merge branch 'bugfix/btdm_unable_use_esp_ble_gatts_get_attr_value_after_long_write' into 'master'
component/bt: Fix the bug cann't use esp_ble_gatts_get_attr_value to get the att… See merge request !1381
This commit is contained in:
@@ -421,6 +421,8 @@ void gatt_process_exec_write_req (tGATT_TCB *p_tcb, UINT8 op_code, UINT16 len, U
|
|||||||
if (is_prepare_write_valid){
|
if (is_prepare_write_valid){
|
||||||
if((queue_data->p_attr->p_value != NULL) && (queue_data->p_attr->p_value->attr_val.attr_val != NULL)){
|
if((queue_data->p_attr->p_value != NULL) && (queue_data->p_attr->p_value->attr_val.attr_val != NULL)){
|
||||||
memcpy(queue_data->p_attr->p_value->attr_val.attr_val+queue_data->offset, queue_data->value, queue_data->len);
|
memcpy(queue_data->p_attr->p_value->attr_val.attr_val+queue_data->offset, queue_data->value, queue_data->len);
|
||||||
|
//don't forget to increase the attribute value length in the gatts database.
|
||||||
|
queue_data->p_attr->p_value->attr_val.attr_len += queue_data->len;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
osi_free(queue_data);
|
osi_free(queue_data);
|
||||||
|
Reference in New Issue
Block a user