使用BlueZ添加GATT服务时(使用' gatt_service_add()'),您可以为ATTRIB_READ,ATTRIB_WRITE等指定各种回调方法。有一个例子可以读取'已经给出的特征:
static uint8_t battery_state_read(struct attribute *a, struct btd_device *device, gpointer user_data);
其他功能的方法如何(例如:写入)?
答案 0 :(得分:2)
我一直在使用bluez 4.101最近打开一个GATT服务器,你需要看一下位于“proximity”目录中的“linkloss.c”(至少在bluez 4.101中)。或者在这里我猜: https://github.com/pauloborges/bluez/blob/master/profiles/proximity/linkloss.c
链接丢失服务已注册可写回调,例如:
svc_added = gatt_service_add(adapter,
GATT_PRIM_SVC_UUID, &uuid,
/* Alert level characteristic */
GATT_OPT_CHR_UUID16, ALERT_LEVEL_CHR_UUID,
GATT_OPT_CHR_PROPS,
ATT_CHAR_PROPER_READ | ATT_CHAR_PROPER_WRITE,
GATT_OPT_CHR_VALUE_CB, ATTRIB_READ,
link_loss_alert_lvl_read, lladapter,
GATT_OPT_CHR_VALUE_CB, ATTRIB_WRITE,
link_loss_alert_lvl_write, lladapter,
GATT_OPT_CHR_VALUE_GET_HANDLE,
&lladapter->alert_lvl_value_handle,
GATT_OPT_INVALID);
回调结构如下:
static uint8_t link_loss_alert_lvl_write(struct attribute *a, struct btd_device *device, gpointer user_data)
{
/*stuff*/
}
“attribute”结构包含传递给可写回调的数据。