mirror of
https://git.kernel.org/pub/scm/bluetooth/bluez.git
synced 2024-11-15 00:04:29 +08:00
9a550d43b8
This allows gatt.select-attribute local to select from the registered attributes: [bluetooth]# gatt.select-attribute local /org/bluez/app/service0/chrc0 [/org/bluez/app/service0/chrc0]# gatt.write 0x01 [CHG] Attribute /org/bluez/app/service0/chrc0 (%UUID) written [/org/bluez/app/service0/chrc0]# gatt.read 01 . [/org/bluez/app/service0/chrc0]# gatt.select-attribute local /org/bluez/app/service0/chrc1 [/org/bluez/app/service0/chrc1]# gatt.write 0x01 [CHG] Attribute /org/bluez/app/service0/chrc1 (%UUID) written [/org/bluez/app/service0/chrc1]# gatt.read 01 . [/org/bluez/app/service0/chrc1]#
65 lines
2.3 KiB
C
65 lines
2.3 KiB
C
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/*
|
|
*
|
|
* BlueZ - Bluetooth protocol stack for Linux
|
|
*
|
|
* Copyright (C) 2014 Intel Corporation. All rights reserved.
|
|
*
|
|
*
|
|
*/
|
|
|
|
void gatt_add_service(GDBusProxy *proxy);
|
|
void gatt_remove_service(GDBusProxy *proxy);
|
|
|
|
void gatt_add_characteristic(GDBusProxy *proxy);
|
|
void gatt_remove_characteristic(GDBusProxy *proxy);
|
|
|
|
void gatt_add_descriptor(GDBusProxy *proxy);
|
|
void gatt_remove_descriptor(GDBusProxy *proxy);
|
|
|
|
void gatt_list_attributes(const char *device);
|
|
GDBusProxy *gatt_select_attribute(GDBusProxy *parent, const char *path);
|
|
char *gatt_attribute_generator(const char *text, int state);
|
|
|
|
void gatt_read_attribute(GDBusProxy *proxy, int argc, char *argv[]);
|
|
void gatt_write_attribute(GDBusProxy *proxy, int argc, char *argv[]);
|
|
void gatt_notify_attribute(GDBusProxy *proxy, bool enable);
|
|
void gatt_clone_attribute(GDBusProxy *proxy, int argc, char *argv[]);
|
|
|
|
void gatt_acquire_write(GDBusProxy *proxy, const char *arg);
|
|
void gatt_release_write(GDBusProxy *proxy, const char *arg);
|
|
|
|
void gatt_acquire_notify(GDBusProxy *proxy, const char *arg);
|
|
void gatt_release_notify(GDBusProxy *proxy, const char *arg);
|
|
|
|
char *gatt_select_local_attribute(const char *arg);
|
|
void gatt_read_local_attribute(char *data, int argc, char *argv[]);
|
|
void gatt_write_local_attribute(char *data, int argc, char *argv[]);
|
|
|
|
void gatt_add_manager(GDBusProxy *proxy);
|
|
void gatt_remove_manager(GDBusProxy *proxy);
|
|
|
|
void gatt_register_app(DBusConnection *conn, GDBusProxy *proxy,
|
|
int argc, char *argv[]);
|
|
void gatt_unregister_app(DBusConnection *conn, GDBusProxy *proxy);
|
|
|
|
void gatt_register_service(DBusConnection *conn, GDBusProxy *proxy,
|
|
int argc, char *argv[]);
|
|
void gatt_unregister_service(DBusConnection *conn, GDBusProxy *proxy,
|
|
int argc, char *argv[]);
|
|
|
|
void gatt_register_chrc(DBusConnection *conn, GDBusProxy *proxy,
|
|
int argc, char *argv[]);
|
|
void gatt_unregister_chrc(DBusConnection *conn, GDBusProxy *proxy,
|
|
int argc, char *argv[]);
|
|
|
|
void gatt_register_desc(DBusConnection *conn, GDBusProxy *proxy,
|
|
int argc, char *argv[]);
|
|
void gatt_unregister_desc(DBusConnection *conn, GDBusProxy *proxy,
|
|
int argc, char *argv[]);
|
|
|
|
void gatt_register_include(DBusConnection *conn, GDBusProxy *proxy,
|
|
int argc, char *argv[]);
|
|
void gatt_unregister_include(DBusConnection *conn, GDBusProxy *proxy,
|
|
int argc, char *argv[]);
|