File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
features/FEATURE_BLE/targets/TARGET_NORDIC
TARGET_MCU_NRF51822/source Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -220,7 +220,7 @@ class nRF5xGap : public Gap
220
220
*/
221
221
void processRadioNotificationEvent (bool param) {
222
222
radioNotificationCallbackParam = param;
223
- radioNotificationTimeout.attach_us (this , &nRF5xGap::postRadioNotificationCallback, 0 );
223
+ radioNotificationTimeout.attach_us (mbed::callback ( this , &nRF5xGap::postRadioNotificationCallback) , 0 );
224
224
}
225
225
friend void radioNotificationStaticCallback (bool param); /* allow invocations of processRadioNotificationEvent() */
226
226
Original file line number Diff line number Diff line change @@ -221,7 +221,7 @@ class nRF5xGap : public Gap
221
221
*/
222
222
void processRadioNotificationEvent (bool param) {
223
223
radioNotificationCallbackParam = param;
224
- radioNotificationTimeout.attach_us (this , &nRF5xGap::postRadioNotificationCallback, 0 );
224
+ radioNotificationTimeout.attach_us (mbed::callback ( this , &nRF5xGap::postRadioNotificationCallback) , 0 );
225
225
}
226
226
friend void radioNotificationStaticCallback (bool param); /* allow invocations of processRadioNotificationEvent() */
227
227
You can’t perform that action at this time.
0 commit comments