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 nRF51822 by
Diff: nRF51822n.cpp
- Revision:
- 16:d8161e2af6c6
- Parent:
- 4:534c2146e5ec
- Child:
- 22:c6ee8136847e
--- a/nRF51822n.cpp Fri May 30 08:44:28 2014 +0100 +++ b/nRF51822n.cpp Fri May 30 13:32:48 2014 +0100 @@ -13,7 +13,7 @@ * See the License for the specific language governing permissions and * limitations under the License. */ - + #include "mbed.h" #include "nRF51822n.h" @@ -54,12 +54,12 @@ /**************************************************************************/ /*! @brief Initialises anything required to start using BLE - + @returns ble_error_t - + @retval BLE_ERROR_NONE Everything executed properly - + @section EXAMPLE @code @@ -72,6 +72,8 @@ /* ToDo: Clear memory contents, reset the SD, etc. */ btle_init(); + reset(); + return BLE_ERROR_NONE; } @@ -79,12 +81,12 @@ /*! @brief Resets the BLE HW, removing any existing services and characteristics - + @returns ble_error_t - + @retval BLE_ERROR_NONE Everything executed properly - + @section EXAMPLE @code @@ -95,9 +97,9 @@ ble_error_t nRF51822n::reset(void) { wait(0.5); - + /* Wait for the radio to come back up */ wait(1); - + return BLE_ERROR_NONE; }