Skip to content

Commit 3bf91aa

Browse files
committed
fix: wrong Le Event Mask set
See LE_META_EVENT supported. Note: Value should be 0x3B3 but set to 0x1B3 to explicitly ignore ENHANCED_CONN_COMPLETE event Signed-off-by: Frederic Pillon <[email protected]>
1 parent aca548f commit 3bf91aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/local/BLELocalDevice.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ int BLELocalDevice::begin()
174174
end();
175175
return 0;
176176
}
177-
if (HCI.setLeEventMask(0x00000000000003FF) != 0) {
177+
if (HCI.setLeEventMask(0x00000000000001B3) != 0) {
178178
end();
179179
return 0;
180180
}

0 commit comments

Comments
 (0)