From 953541817f531f486d50cf16c0afe0a6b187ac7b Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Mon, 1 May 2017 23:43:18 -0700 Subject: [PATCH] emulator: Enable LE power class and minimum channels feature --- emulator/le.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/emulator/le.c b/emulator/le.c index 132b190b1..33abbd31e 100644 --- a/emulator/le.c +++ b/emulator/le.c @@ -360,8 +360,8 @@ static void reset_defaults(struct bt_le *hci) //hci->le_features[1] |= 0x10; /* LE Extended Advertising */ //hci->le_features[1] |= 0x20; /* LE Periodic Advertising */ hci->le_features[1] |= 0x40; /* Channel Selection Algorithm #2 */ - //hci->le_features[1] |= 0x80; /* LE Power Class 1 */ - //hci->le_features[2] |= 0x01; /* Minimum Number of Used Channels Procedure */ + hci->le_features[1] |= 0x80; /* LE Power Class 1 */ + hci->le_features[2] |= 0x01; /* Minimum Number of Used Channels Procedure */ memset(hci->le_random_addr, 0, sizeof(hci->le_random_addr)); -- 2.47.3