Bluetooth Low Energy / Mbed 2 deprecated BLE_URIBeacon

Dependencies:   BLE_API mbed nRF51822

Fork of BLE_PhysicalWeb by Bluetooth Low Energy

Files at this revision

API Documentation at this revision

Comitter:
rgrover1
Date:
Thu Dec 10 07:42:47 2015 +0000
Parent:
28:061605602ef1
Commit message:
updating underlying libraries to the latest. ; also fixed a bug in main() in the loop which waits for initialization to complete.

Changed in this revision

BLE_API.lib Show annotated file Show diff for this revision Revisions of this file
main.cpp Show annotated file Show diff for this revision Revisions of this file
mbed.bld Show annotated file Show diff for this revision Revisions of this file
nRF51822.lib Show annotated file Show diff for this revision Revisions of this file
nrfConfigParamsPersistence.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/BLE_API.lib	Fri Nov 06 13:25:07 2015 +0000
+++ b/BLE_API.lib	Thu Dec 10 07:42:47 2015 +0000
@@ -1,1 +1,1 @@
-http://mbed.org/teams/Bluetooth-Low-Energy/code/BLE_API/#a097e1be76f4
+http://mbed.org/teams/Bluetooth-Low-Energy/code/BLE_API/#1a37289c954e
--- a/main.cpp	Fri Nov 06 13:25:07 2015 +0000
+++ b/main.cpp	Thu Dec 10 07:42:47 2015 +0000
@@ -104,7 +104,7 @@
 
     /* SpinWait for initialization to complete. This is necessary because the
      * BLE object is used in the main loop below. */
-    while (ble.hasInitialized()) { /* spin loop */ }
+    while (!ble.hasInitialized()) { /* spin loop */ }
 
     while (true) {
         ble.waitForEvent();
--- a/mbed.bld	Fri Nov 06 13:25:07 2015 +0000
+++ b/mbed.bld	Thu Dec 10 07:42:47 2015 +0000
@@ -1,1 +1,1 @@
-http://mbed.org/users/mbed_official/code/mbed/builds/9296ab0bfc11
\ No newline at end of file
+http://mbed.org/users/mbed_official/code/mbed/builds/165afa46840b
\ No newline at end of file
--- a/nRF51822.lib	Fri Nov 06 13:25:07 2015 +0000
+++ b/nRF51822.lib	Thu Dec 10 07:42:47 2015 +0000
@@ -1,1 +1,1 @@
-http://mbed.org/teams/Nordic-Semiconductor/code/nRF51822/#bf85bf7e73d5
+http://mbed.org/teams/Nordic-Semiconductor/code/nRF51822/#bcfe7a90edb9
--- a/nrfConfigParamsPersistence.cpp	Fri Nov 06 13:25:07 2015 +0000
+++ b/nrfConfigParamsPersistence.cpp	Thu Dec 10 07:42:47 2015 +0000
@@ -14,7 +14,9 @@
  * limitations under the License.
  */
 
+extern "C" {
 #include "pstorage.h"
+}
 #include "nrf_error.h"
 #include "ConfigParamsPersistence.h"