mirror of https://github.com/ARMmbed/mbed-os.git
Merge pull request #13653 from jrobeson/ble-incorrectly-qualified-namespace
Use impl namespace in GattServer att_cb registration, not blepull/13663/head
commit
d896ea34f7
|
@ -600,7 +600,7 @@ void BLEInstanceBase::stack_setup()
|
|||
#if BLE_FEATURE_GATT_CLIENT
|
||||
AttRegister((attCback_t) impl::PalAttClient::att_client_handler);
|
||||
#else
|
||||
AttRegister((attCback_t) ble::GattServer::att_cb);
|
||||
AttRegister((attCback_t) impl::GattServer::att_cb);
|
||||
#endif // BLE_FEATURE_GATT_CLIENT
|
||||
#endif
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue