Hi, I'm working on Wacom Graphire bluetooth tablet driver. It's a HID driver and it's almost ready to be released, but I still have some problems. The main one is that the tablet works in mouse mode and I need to send a control message to switch to tablet mode. Currently I'm using an ugly hack in /net/bluetooth/hidp/core.c - hidp_add_connection: rep_data [0] = 0x03; rep_data [1] = 0x00; hidp_send_ctrl_message(session, HIDP_TRANS_SET_REPORT | HIDP_DATA_RTYPE_FEATURE, rep_data, 2); /* 0x06 - high reporting speed, 0x05 - low speed */ rep_data [0] = 0x05; rep_data [1] = 0x00; hidp_send_ctrl_message(session, HIDP_TRANS_SET_REPORT | HIDP_DATA_RTYPE_FEATURE, rep_data, 2); That hack is based on wacom graphire bluetooth driver created by Andrew Zabolotny, that driver has never neen mainstreamed, beacause of some philosophy issues (as far as I understand it) Any ideas how I can send the control message from HID driver level? Is it possible? -- Przemo Firszt -- 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