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.
Dependencies: BLE_API SDFileSystem mbed-rtos mbed nRF51822 X_NUCLEO_IDB0XA1
Fork of BLE_iBeacon by
Diff: main.cpp
- Revision:
- 74:7754bf460f52
- Parent:
- 72:eb4de3de66b8
- Child:
- 75:b0385b4fdc3e
--- a/main.cpp Tue Sep 29 09:45:56 2015 +0000
+++ b/main.cpp Fri Nov 06 13:12:00 2015 +0000
@@ -18,11 +18,16 @@
#include "ble/services/iBeacon.h"
BLE ble;
-
-int main(void)
+
+void bleInitComplete(BLE::InitializationCompleteCallbackContext *params)
{
- ble.init();
+ BLE &ble = params->ble;
+ ble_error_t error = params->error;
+ if (error != BLE_ERROR_NONE) {
+ return;
+ }
+
/**
* The Beacon payload has the following composition:
* 128-Bit / 16byte UUID = E2 0A 39 F4 73 F5 4B C4 A1 2F 17 D1 AD 07 A9 61
@@ -36,10 +41,15 @@
uint16_t majorNumber = 1122;
uint16_t minorNumber = 3344;
uint16_t txPower = 0xC8;
- iBeacon ibeacon(ble, uuid, majorNumber, minorNumber, txPower);
+ iBeacon *ibeacon = new iBeacon(ble, uuid, majorNumber, minorNumber, txPower);
ble.gap().setAdvertisingInterval(1000); /* 1000ms. */
ble.gap().startAdvertising();
+}
+
+int main(void)
+{
+ ble.init(bleInitComplete);
while (true) {
ble.waitForEvent(); // allows or low power operation
