Skip to content

Commit fb9e0dc

Browse files
committed
BLE: Fix resolvable private address identification.
1 parent b973a8a commit fb9e0dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

features/FEATURE_BLE/source/Gap.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ ble_error_t Gap::getRandomAddressType(
175175
case 0x00:
176176
*type = RandomAddressType_t::NON_RESOLVABLE_PRIVATE;
177177
return BLE_ERROR_NONE;
178-
case 0x02:
178+
case 0x01:
179179
*type = RandomAddressType_t::RESOLVABLE_PRIVATE;
180180
return BLE_ERROR_NONE;
181181
default:

0 commit comments

Comments
 (0)