Merge pull request #11058 from paul-szczepanek-arm/make-weak-fix

BLE: allow overriding event signal
pull/11069/head
Seppo Takalo 2019-07-17 23:30:16 +03:00 committed by GitHub
commit 2f136b977f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -80,7 +80,7 @@ extern "C" void hci_mbed_os_handle_reset_sequence(uint8_t* msg)
* This function will signal to the user code by calling signalEventsToProcess.
* It is registered and called into the Wsf Stack.
*/
extern "C" void wsf_mbed_ble_signal_event(void)
extern "C" MBED_WEAK void wsf_mbed_ble_signal_event(void)
{
ble::vendor::cordio::BLE::deviceInstance().signalEventsToProcess(::BLE::DEFAULT_INSTANCE);
}