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 mbed nRF51822
Fork of BLE_PhysicalWeb by
Revision 29:5a1112254406, committed 2015-12-10
- 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
diff -r 061605602ef1 -r 5a1112254406 BLE_API.lib --- 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
diff -r 061605602ef1 -r 5a1112254406 main.cpp --- 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();
diff -r 061605602ef1 -r 5a1112254406 mbed.bld --- 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
diff -r 061605602ef1 -r 5a1112254406 nRF51822.lib --- 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
diff -r 061605602ef1 -r 5a1112254406 nrfConfigParamsPersistence.cpp --- 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"