File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
connectivity/FEATURE_BLE/source/generic Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -242,7 +242,7 @@ ble_error_t PrivateAddressController::add_device_to_resolving_list(
242
242
peer_irk
243
243
);
244
244
} else {
245
- tr_error (" Host based private address resolution enabled but not supported by the controller" );
245
+ tr_error (" Privacy used but not supported on the controller nor the host " );
246
246
return BLE_ERROR_NOT_IMPLEMENTED;
247
247
}
248
248
#endif // BLE_GAP_HOST_BASED_PRIVATE_ADDRESS_RESOLUTION
@@ -276,7 +276,7 @@ ble_error_t PrivateAddressController::remove_device_from_resolving_list(
276
276
if (is_controller_privacy_supported ()) {
277
277
return queue_remove_device_from_resolving_list (peer_address_type, peer_identity_address);
278
278
} else {
279
- tr_error (" Host based private address resolution enabled but not supported by the controller" );
279
+ tr_error (" Privacy used but not supported on the controller nor the host " );
280
280
return BLE_ERROR_NOT_IMPLEMENTED;
281
281
}
282
282
#endif // BLE_GAP_HOST_BASED_PRIVATE_ADDRESS_RESOLUTION
@@ -303,7 +303,7 @@ ble_error_t PrivateAddressController::clear_resolving_list()
303
303
if (is_controller_privacy_supported ()) {
304
304
return queue_clear_resolving_list ();
305
305
} else {
306
- tr_error (" Host based private address resolution enabled but not supported by the controller" );
306
+ tr_error (" Privacy used but not supported on the controller nor the host " );
307
307
return BLE_ERROR_NOT_IMPLEMENTED;
308
308
}
309
309
#endif // BLE_GAP_HOST_BASED_PRIVATE_ADDRESS_RESOLUTION
You can’t perform that action at this time.
0 commit comments