Home
last modified time | relevance | path

Searched refs:ESP_GATT_MAX_ATTR_LEN (Results 1 – 4 of 4) sorted by relevance

/hal_espressif-3.6.0/components/bt/host/bluedroid/api/
Desp_gattc_api.c509 … arg.write_char.value_len = value_len > ESP_GATT_MAX_ATTR_LEN ? ESP_GATT_MAX_ATTR_LEN : value_len; in esp_ble_gattc_write_char()
547 … arg.write_descr.value_len = value_len > ESP_GATT_MAX_ATTR_LEN ? ESP_GATT_MAX_ATTR_LEN : value_len; in esp_ble_gattc_write_char_descr()
586 …arg.prep_write.value_len = value_len > ESP_GATT_MAX_ATTR_LEN ? ESP_GATT_MAX_ATTR_LEN : value_len; … in esp_ble_gattc_prepare_write()
622 …arg.prep_write_descr.value_len = value_len > ESP_GATT_MAX_ATTR_LEN ? ESP_GATT_MAX_ATTR_LEN : value… in esp_ble_gattc_prepare_write_char_descr()
/hal_espressif-3.6.0/components/bt/host/bluedroid/api/include/api/
Desp_gatt_defs.h303 #define ESP_GATT_MAX_ATTR_LEN 600 //as same as GATT_MAX_ATTR_LEN macro
382 uint8_t value[ESP_GATT_MAX_ATTR_LEN]; /*!< Gatt attribute value */
/hal_espressif-3.6.0/components/bt/host/bluedroid/btc/profile/std/gatt/
Dbtc_gatt_util.c161 memcpy(p_dest->attr_value.value, p_src->attr_value.value, ESP_GATT_MAX_ATTR_LEN); in btc_to_bta_response()
Dbtc_gattc.c884 param.notify.value_len = (notify->len > ESP_GATT_MAX_ATTR_LEN) ? \ in btc_gattc_cb_handler()
885 ESP_GATT_MAX_ATTR_LEN : notify->len; in btc_gattc_cb_handler()