Hi Bea, > I mentioned on IRC a while back that a "Class" property for the Adapter > interface might be useful. I've attached a patch to this effect. Please > let me know if there are any issues. + /* Class */ + class = adapter->dev.class[0] + | (adapter->dev.class[1] << 8) + | (adapter->dev.class[2] << 16); + dict_append_entry(&dict, "Class", DBUS_TYPE_UINT32, &class); + This should more like this: class = adapter->dev.class[0] | adapter->dev.class[1] << 8 | ... Regards Marcel -- 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