BLE Temperature Service Mobile and Ubiquitous Computing Module Birkbeck College

Dependencies:   DS1820

Committer:
gkroussos
Date:
Sun Mar 08 19:42:20 2015 +0000
Revision:
0:dd0fea342ad2
BLE Temperature Service ; Mobile and Ubiquitous Computing Module; Birkbeck College

Who changed what in which revision?

UserRevisionLine numberNew contents of line
gkroussos 0:dd0fea342ad2 1 /* mbed Microcontroller Library
gkroussos 0:dd0fea342ad2 2 * Copyright (c) 2006-2013 ARM Limited
gkroussos 0:dd0fea342ad2 3 *
gkroussos 0:dd0fea342ad2 4 * Licensed under the Apache License, Version 2.0 (the "License");
gkroussos 0:dd0fea342ad2 5 * you may not use this file except in compliance with the License.
gkroussos 0:dd0fea342ad2 6 * You may obtain a copy of the License at
gkroussos 0:dd0fea342ad2 7 *
gkroussos 0:dd0fea342ad2 8 * http://www.apache.org/licenses/LICENSE-2.0
gkroussos 0:dd0fea342ad2 9 *
gkroussos 0:dd0fea342ad2 10 * Unless required by applicable law or agreed to in writing, software
gkroussos 0:dd0fea342ad2 11 * distributed under the License is distributed on an "AS IS" BASIS,
gkroussos 0:dd0fea342ad2 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
gkroussos 0:dd0fea342ad2 13 * See the License for the specific language governing permissions and
gkroussos 0:dd0fea342ad2 14 * limitations under the License.
gkroussos 0:dd0fea342ad2 15 */
gkroussos 0:dd0fea342ad2 16
gkroussos 0:dd0fea342ad2 17 #ifndef __BLE_COMMON_H__
gkroussos 0:dd0fea342ad2 18 #define __BLE_COMMON_H__
gkroussos 0:dd0fea342ad2 19
gkroussos 0:dd0fea342ad2 20 #define NRF51
gkroussos 0:dd0fea342ad2 21 #define DEBUG_NRF_USER
gkroussos 0:dd0fea342ad2 22 #define BLE_STACK_SUPPORT_REQD
gkroussos 0:dd0fea342ad2 23 #define BOARD_PCA10001
gkroussos 0:dd0fea342ad2 24
gkroussos 0:dd0fea342ad2 25 #ifdef __cplusplus
gkroussos 0:dd0fea342ad2 26 extern "C" {
gkroussos 0:dd0fea342ad2 27 #endif
gkroussos 0:dd0fea342ad2 28
gkroussos 0:dd0fea342ad2 29 #include <stdint.h>
gkroussos 0:dd0fea342ad2 30
gkroussos 0:dd0fea342ad2 31 /**************************************************************************/
gkroussos 0:dd0fea342ad2 32 /*!
gkroussos 0:dd0fea342ad2 33 \brief Error codes for the BLE API
gkroussos 0:dd0fea342ad2 34 */
gkroussos 0:dd0fea342ad2 35 /**************************************************************************/
gkroussos 0:dd0fea342ad2 36 typedef enum ble_error_e
gkroussos 0:dd0fea342ad2 37 {
gkroussos 0:dd0fea342ad2 38 BLE_ERROR_NONE = 0, /**< No error */
gkroussos 0:dd0fea342ad2 39 BLE_ERROR_BUFFER_OVERFLOW = 1, /**< The requested action would cause a buffer overflow and has been aborted */
gkroussos 0:dd0fea342ad2 40 BLE_ERROR_NOT_IMPLEMENTED = 2, /**< Requested a feature that isn't yet implement or isn't supported by the target HW */
gkroussos 0:dd0fea342ad2 41 BLE_ERROR_PARAM_OUT_OF_RANGE = 3 /**< One of the supplied parameters is outside the valid range */
gkroussos 0:dd0fea342ad2 42 } ble_error_t;
gkroussos 0:dd0fea342ad2 43
gkroussos 0:dd0fea342ad2 44 #ifdef __cplusplus
gkroussos 0:dd0fea342ad2 45 }
gkroussos 0:dd0fea342ad2 46 #endif
gkroussos 0:dd0fea342ad2 47
gkroussos 0:dd0fea342ad2 48 #endif