Changed the device name.

Dependents:   BLE_Health_Thermometer_HeartRateMonitor

Fork of BLE_API_Native_IRC by Yoshihiro TSUBOI

Committer:
ktownsend
Date:
Thu Feb 06 11:51:06 2014 +0000
Revision:
0:4c3097c65247
Native mode drivers

Who changed what in which revision?

UserRevisionLine numberNew contents of line
ktownsend 0:4c3097c65247 1 /* mbed Microcontroller Library
ktownsend 0:4c3097c65247 2 * Copyright (c) 2006-2013 ARM Limited
ktownsend 0:4c3097c65247 3 *
ktownsend 0:4c3097c65247 4 * Licensed under the Apache License, Version 2.0 (the "License");
ktownsend 0:4c3097c65247 5 * you may not use this file except in compliance with the License.
ktownsend 0:4c3097c65247 6 * You may obtain a copy of the License at
ktownsend 0:4c3097c65247 7 *
ktownsend 0:4c3097c65247 8 * http://www.apache.org/licenses/LICENSE-2.0
ktownsend 0:4c3097c65247 9 *
ktownsend 0:4c3097c65247 10 * Unless required by applicable law or agreed to in writing, software
ktownsend 0:4c3097c65247 11 * distributed under the License is distributed on an "AS IS" BASIS,
ktownsend 0:4c3097c65247 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
ktownsend 0:4c3097c65247 13 * See the License for the specific language governing permissions and
ktownsend 0:4c3097c65247 14 * limitations under the License.
ktownsend 0:4c3097c65247 15 */
ktownsend 0:4c3097c65247 16
ktownsend 0:4c3097c65247 17 #include "mbed.h"
ktownsend 0:4c3097c65247 18 #include "nRF51822n.h"
ktownsend 0:4c3097c65247 19
ktownsend 0:4c3097c65247 20 #include "btle/btle.h"
ktownsend 0:4c3097c65247 21
ktownsend 0:4c3097c65247 22 /**************************************************************************/
ktownsend 0:4c3097c65247 23 /*!
ktownsend 0:4c3097c65247 24 @brief Constructor
ktownsend 0:4c3097c65247 25 */
ktownsend 0:4c3097c65247 26 /**************************************************************************/
ktownsend 0:4c3097c65247 27 nRF51822n::nRF51822n(void)
ktownsend 0:4c3097c65247 28 {
ktownsend 0:4c3097c65247 29 }
ktownsend 0:4c3097c65247 30
ktownsend 0:4c3097c65247 31 /**************************************************************************/
ktownsend 0:4c3097c65247 32 /*!
ktownsend 0:4c3097c65247 33 @brief Destructor
ktownsend 0:4c3097c65247 34 */
ktownsend 0:4c3097c65247 35 /**************************************************************************/
ktownsend 0:4c3097c65247 36 nRF51822n::~nRF51822n(void)
ktownsend 0:4c3097c65247 37 {
ktownsend 0:4c3097c65247 38 }
ktownsend 0:4c3097c65247 39
ktownsend 0:4c3097c65247 40 /**************************************************************************/
ktownsend 0:4c3097c65247 41 /*!
ktownsend 0:4c3097c65247 42 @brief Initialises anything required to start using BLE
ktownsend 0:4c3097c65247 43
ktownsend 0:4c3097c65247 44 @returns ble_error_t
ktownsend 0:4c3097c65247 45
ktownsend 0:4c3097c65247 46 @retval BLE_ERROR_NONE
ktownsend 0:4c3097c65247 47 Everything executed properly
ktownsend 0:4c3097c65247 48
ktownsend 0:4c3097c65247 49 @section EXAMPLE
ktownsend 0:4c3097c65247 50
ktownsend 0:4c3097c65247 51 @code
ktownsend 0:4c3097c65247 52
ktownsend 0:4c3097c65247 53 @endcode
ktownsend 0:4c3097c65247 54 */
ktownsend 0:4c3097c65247 55 /**************************************************************************/
ktownsend 0:4c3097c65247 56 ble_error_t nRF51822n::init(void)
ktownsend 0:4c3097c65247 57 {
ktownsend 0:4c3097c65247 58 /* ToDo: Clear memory contents, reset the SD, etc. */
ktownsend 0:4c3097c65247 59 btle_init();
ktownsend 0:4c3097c65247 60
ktownsend 0:4c3097c65247 61 return BLE_ERROR_NONE;
ktownsend 0:4c3097c65247 62 }
ktownsend 0:4c3097c65247 63
ktownsend 0:4c3097c65247 64 /**************************************************************************/
ktownsend 0:4c3097c65247 65 /*!
ktownsend 0:4c3097c65247 66 @brief Resets the BLE HW, removing any existing services and
ktownsend 0:4c3097c65247 67 characteristics
ktownsend 0:4c3097c65247 68
ktownsend 0:4c3097c65247 69 @returns ble_error_t
ktownsend 0:4c3097c65247 70
ktownsend 0:4c3097c65247 71 @retval BLE_ERROR_NONE
ktownsend 0:4c3097c65247 72 Everything executed properly
ktownsend 0:4c3097c65247 73
ktownsend 0:4c3097c65247 74 @section EXAMPLE
ktownsend 0:4c3097c65247 75
ktownsend 0:4c3097c65247 76 @code
ktownsend 0:4c3097c65247 77
ktownsend 0:4c3097c65247 78 @endcode
ktownsend 0:4c3097c65247 79 */
ktownsend 0:4c3097c65247 80 /**************************************************************************/
ktownsend 0:4c3097c65247 81 ble_error_t nRF51822n::reset(void)
ktownsend 0:4c3097c65247 82 {
ktownsend 0:4c3097c65247 83 wait(0.5);
ktownsend 0:4c3097c65247 84
ktownsend 0:4c3097c65247 85 /* Wait for the radio to come back up */
ktownsend 0:4c3097c65247 86 wait(1);
ktownsend 0:4c3097c65247 87
ktownsend 0:4c3097c65247 88 return BLE_ERROR_NONE;
ktownsend 0:4c3097c65247 89 }