Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of BLE_API by
Diff: ble/services/DFUService.h
- Revision:
- 938:66f2fab5cc3a
- Parent:
- 936:a7bedf42bfb9
- Child:
- 939:a613e75c7b9e
diff -r 4932e700daf2 -r 66f2fab5cc3a ble/services/DFUService.h --- a/ble/services/DFUService.h Thu Nov 26 12:52:06 2015 +0000 +++ b/ble/services/DFUService.h Thu Nov 26 12:52:07 2015 +0000 @@ -20,7 +20,9 @@ #include "ble/BLE.h" #include "ble/UUID.h" -extern "C" void bootloader_start(void); +extern "C" { +#include "dfu_app_handler.h" +} extern const uint8_t DFUServiceBaseUUID[]; extern const uint16_t DFUServiceShortUUID; @@ -101,7 +103,13 @@ handoverCallback(); } - bootloader_start(); + // Call bootloader_start trough a event handler + // it is a work around for bootloader_start not being public in sdk 8.1 + ble_dfu_t *p_dfu; + p_dfu-> conn_handle = params->connHandle; + ble_dfu_evt_t *p_evt; + p_evt->ble_dfu_evt_type = BLE_DFU_START; + dfu_app_on_dfu_evt(p_dfu, p_evt); } }