--- input/hog_device.c | 21 +++++++++++++++++++++ 1 files changed, 21 insertions(+), 0 deletions(-) diff --git a/input/hog_device.c b/input/hog_device.c index b06f898..3a767cd 100644 --- a/input/hog_device.c +++ b/input/hog_device.c @@ -60,9 +60,27 @@ struct hog_device { static GSList *devices = NULL; +static void report_value_cb(const uint8_t *pdu, uint16_t len, gpointer user_data) +{ + uint16_t handle; + + if (len < 3) { + error("Malformed ATT notification"); + return; + } + + handle = att_get_u16(&pdu[1]); + + DBG("Report(0x%04x): 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x " + "0x%02x", handle, pdu[2], pdu[3], pdu[4], + pdu[5], pdu[6], pdu[7], pdu[8], pdu[9]); +} + static void report_ccc_written_cb(guint8 status, const guint8 *pdu, guint16 plen, gpointer user_data) { + struct hog_device *hogdev = user_data; + if (status != 0) { error("Write report characteristic descriptor failed: %s", att_ecode2str(status)); @@ -70,6 +88,9 @@ static void report_ccc_written_cb(guint8 status, const guint8 *pdu, } DBG("Report characteristic descriptor written: notification enabled"); + + g_attrib_register(hogdev->attrib, ATT_OP_HANDLE_NOTIFY, report_value_cb, + hogdev, NULL); } static void char_discovered_cb(GSList *chars, guint8 status, gpointer user_data) -- 1.7.7.6 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html