MBED OS BLE example LED

Fork of mbed-os-example-ble-LED by mbed-os-examples

Revision:
44:df8adb3bc797
Parent:
27:ff1fb7b5f9ee
diff -r 3249e80f65ba -r df8adb3bc797 source/main.cpp
--- a/source/main.cpp	Wed Oct 11 10:00:42 2017 +0100
+++ b/source/main.cpp	Wed Nov 01 15:31:06 2017 +0000
@@ -60,6 +60,19 @@
     /* Initialization error handling should go here */
 }
 
+void printMacAddress()
+{
+    /* Print out device MAC address to the console*/
+    Gap::AddressType_t addr_type;
+    Gap::Address_t address;
+    BLE::Instance().gap().getAddress(&addr_type, address);
+    printf("DEVICE MAC ADDRESS: ");
+    for (int i = 5; i >= 1; i--){
+        printf("%02x:", address[i]);
+    }
+    printf("%02x\r\n", address[0]);
+}
+
 /**
  * Callback triggered when the ble initialization process has finished
  */
@@ -92,6 +105,8 @@
     ble.gap().setAdvertisingType(GapAdvertisingParams::ADV_CONNECTABLE_UNDIRECTED);
     ble.gap().setAdvertisingInterval(1000); /* 1000ms. */
     ble.gap().startAdvertising();
+
+    printMacAddress();
 }
 
 void scheduleBleEventsProcessing(BLE::OnEventsToProcessCallbackContext* context) {