File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
features/FEATURE_BLE/targets/TARGET_CORDIO/source Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ ble_error_t CordioSecurityManager::reset()
62
62
63
63
uint8_t CordioSecurityManager::read_resolving_list_capacity ()
64
64
{
65
- // FIXME: implement
65
+ // FIXME: Implement with privacy support.
66
66
return 0 ;
67
67
}
68
68
@@ -71,18 +71,21 @@ ble_error_t CordioSecurityManager::add_device_to_resolving_list(
71
71
const address_t &peer_identity_address,
72
72
const irk_t &peer_irk
73
73
) {
74
+ // FIXME: Implement with privacy support.
74
75
return BLE_ERROR_NOT_IMPLEMENTED;
75
76
}
76
77
77
78
ble_error_t CordioSecurityManager::remove_device_from_resolving_list (
78
79
advertising_peer_address_type_t peer_identity_address_type,
79
80
const address_t & peer_identity_address
80
81
) {
82
+ // FIXME: Implement with privacy support.
81
83
return BLE_ERROR_NOT_IMPLEMENTED;
82
84
}
83
85
84
86
ble_error_t CordioSecurityManager::clear_resolving_list ()
85
87
{
88
+ // FIXME: Implement with privacy support.
86
89
return BLE_ERROR_NOT_IMPLEMENTED;
87
90
}
88
91
You can’t perform that action at this time.
0 commit comments