From 1364c63b9eea39b40ab07e0045ef26e76d1ade1a Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Sat, 22 Oct 2005 17:32:35 +0000 Subject: Decode reserved LMP feature bits --- src/hci.c | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/hci.c b/src/hci.c index b286d46f..80813ad6 100644 --- a/src/hci.c +++ b/src/hci.c @@ -556,10 +556,14 @@ static hci_map lmp_features_map[8][9] = { { "", LMP_PSCHEME }, /* Bit 1 */ { "", LMP_PCONTROL }, /* Bit 2 */ { "", LMP_TRSP_SCO }, /* Bit 3 */ + { "",LMP_BCAST_ENC }, /* Bit 7 */ { NULL } }, { /* Byte 3 */ + { "", 0x01 }, /* Bit 0 */ { "", LMP_EDR_ACL_2M }, /* Bit 1 */ { "", LMP_EDR_ACL_3M }, /* Bit 2 */ { "", LMP_ENH_ISCAN }, /* Bit 3 */ @@ -572,13 +576,18 @@ static hci_map lmp_features_map[8][9] = { { /* Byte 4 */ { "", LMP_EV4 }, /* Bit 0 */ { "", LMP_EV5 }, /* Bit 1 */ + { "", 0x04 }, /* Bit 2 */ { "", LMP_AFH_CAP_SLV }, /* Bit 3 */ { "", LMP_AFH_CLS_SLV }, /* Bit 4 */ + { "", 0x20 }, /* Bit 5 */ + { "", 0x40 }, /* Bit 6 */ { "<3-slot EDR ACL>", LMP_EDR_3SLOT }, /* Bit 7 */ { NULL } }, { /* Byte 5 */ { "<5-slot EDR ACL>", LMP_EDR_5SLOT }, /* Bit 0 */ + { "", 0x02 }, /* Bit 1 */ + { "", 0x04 }, /* Bit 2 */ { "", LMP_AFH_CAP_MST }, /* Bit 3 */ { "",LMP_AFH_CLS_MST }, /* Bit 4 */ { "", LMP_EDR_ESCO_2M }, /* Bit 5 */ -- cgit