Home
last modified time | relevance | path

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

/hal_espressif-latest/components/bt/host/bluedroid/api/include/api/
Desp_gatt_defs.h481 #define ESP_GATT_MAX_ATTR_LEN 512 /*!< As same as GATT_MAX_ATTR_LEN. */ macro
592 uint8_t value[ESP_GATT_MAX_ATTR_LEN]; /*!< Array holding the value of the GATT attribute. */
/hal_espressif-latest/components/bt/host/bluedroid/api/
Desp_gattc_api.c653 … 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()
696 … 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()
740 …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()
781 …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-latest/components/bt/host/bluedroid/btc/profile/std/gatt/
Dbtc_gatt_util.c119 memcpy(p_dest->attr_value.value, p_src->attr_value.value, ESP_GATT_MAX_ATTR_LEN); in btc_to_bta_response()
Dbtc_gattc.c908 param.notify.value_len = (notify->len > ESP_GATT_MAX_ATTR_LEN) ? \ in btc_gattc_cb_handler()
909 ESP_GATT_MAX_ATTR_LEN : notify->len; in btc_gattc_cb_handler()