Found 7 other functions taking a
tGATT_ATTR_VAL
argument:
* Function GATTS_AddCharacteristic * Description This function is called to add a characteristic into a service. * It will add a characteristic declaration and characteristic * value declaration into the service database identified by the * service handle. * Parameter service_handle : To which service this included service is added to. * char_uuid : Characteristic UUID. * perm : Characteristic value declaration attribute permission. * property : Characteristic Properties * Returns Characteristic value declaration attribute handle. 0 if failed.
* Function BTA_GATTS_AddCharacteristic * Description This function is called to add a characteristic into a service. * Parameters service_id: service ID to which this included service is to * be added. * p_char_uuid : Characteristic UUID. * perm : Characteristic value declaration attribute permission. * property : Characteristic Properties * Returns None
* Function BTA_GATTS_AddCharDescriptor * Description This function is called to add characteristic descriptor. When * it's done, a callback event BTA_GATTS_ADD_DESCR_EVT is called * to report the status and an ID number for this descriptor. * Parameters service_id: service ID to which this charatceristic descriptor is to * be added. * perm: descriptor access permission. * p_descr_uuid: descriptor UUID. * Returns returns status.
* Function GATTS_AddCharDescriptor * Description This function is called to add a characteristic descriptor * into a service database. Add descriptor should follow add char * to which it belongs, and next add char should be done only * after all add descriptors for the previous char. * Parameter service_handle : To which service this characteristic descriptor * is added to. * perm : Characteristic value declaration attribute * permission. * p_descr_uuid : Characteristic descriptor UUID * Returns Characteristic descriptor attribute handle. 0 if add * characteristic descriptor failed.
* Function gatts_add_char_desc_value_check * Description parameters validation check for gatts add char/descriptor functions * Parameter attr_val: attribute value for char/descriptor. * control: control variable for char/descriptor. * Returns void
* Function gatts_add_characteristic * Description This function add a characteristics and its descriptor into * a service identified by the service database pointer. * Parameter p_db: database pointer. * perm: permission (authentication and key size requirements) * property: property of the characteristic. * p_char: characteristic value information. * Returns Status of the operation.
* Function gatts_add_char_descr * Description This function add a characteristics descriptor. * Parameter p_db: database pointer. * perm: characteristic descriptor permission type. * char_dscp_tpye: the characteristic descriptor masks. * p_dscp_params: characteristic descriptors values. * Returns Status of the operation.