File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed
connectivity/FEATURE_BLE/source/cordio Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 24
24
#include " source/pal/PalAttClient.h"
25
25
26
26
namespace ble {
27
- namespace cordio {
27
+ namespace impl {
28
28
29
29
class PalAttClient final : public ble::PalAttClient {
30
30
@@ -474,7 +474,7 @@ class PalAttClient final : public ble::PalAttClient {
474
474
mbed::Callback<void (connection_handle_t )> _transaction_timeout_cb;
475
475
};
476
476
477
- } // namespace cordio
477
+ } // namespace impl
478
478
} // namespace ble
479
479
480
480
#endif /* IMPL_PAL_ATT_CLIENT_ */
Original file line number Diff line number Diff line change @@ -257,7 +257,7 @@ ble::GattClient &BLEInstanceBase::getGattClient()
257
257
258
258
PalGattClient &BLEInstanceBase::getPalGattClient ()
259
259
{
260
- static PalAttClientToGattClient pal_gatt_client (cordio ::PalAttClient::get_client ());
260
+ static PalAttClientToGattClient pal_gatt_client (impl ::PalAttClient::get_client ());
261
261
return pal_gatt_client;
262
262
}
263
263
@@ -598,7 +598,7 @@ void BLEInstanceBase::stack_setup()
598
598
599
599
#if BLE_FEATURE_ATT
600
600
#if BLE_FEATURE_GATT_CLIENT
601
- AttRegister ((attCback_t) cordio ::PalAttClient::att_client_handler);
601
+ AttRegister ((attCback_t) impl ::PalAttClient::att_client_handler);
602
602
#else
603
603
AttRegister ((attCback_t) ble::GattServer::att_cb);
604
604
#endif // BLE_FEATURE_GATT_CLIENT
Original file line number Diff line number Diff line change 27
27
#include " att_defs.h"
28
28
29
29
namespace ble {
30
- namespace cordio {
30
+ namespace impl {
31
31
32
32
PalAttClient::PalAttClient () : _local_sign_counter(0 )
33
33
{
@@ -451,5 +451,5 @@ void PalAttClient::att_client_handler(const attEvt_t *event)
451
451
#endif // BLE_FEATURE_GATT_SERVER
452
452
}
453
453
454
- } // namespace cordio
454
+ } // namespace impl
455
455
} // ble
Original file line number Diff line number Diff line change @@ -364,7 +364,7 @@ ble_error_t PalSecurityManager::set_csrk(
364
364
_csrk = csrk;
365
365
DmSecSetLocalCsrk (_csrk.data ());
366
366
// extra set the sign counter used by the client
367
- cordio ::PalAttClient::get_client ().set_sign_counter (sign_counter);
367
+ impl ::PalAttClient::get_client ().set_sign_counter (sign_counter);
368
368
369
369
return BLE_ERROR_NONE;
370
370
}
You can’t perform that action at this time.
0 commit comments