mirror of https://github.com/ARMmbed/mbed-os.git
82 lines
4.0 KiB
C
82 lines
4.0 KiB
C
/* mbed Microcontroller Library
|
|
* Copyright (c) 2006-2013 ARM Limited
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
#ifndef __BLE_COMMON_H__
|
|
#define __BLE_COMMON_H__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
|
|
/*! @brief Assigned values for BLE UUIDs. */
|
|
enum {
|
|
BLE_UUID_UNKNOWN = 0x0000, /**< Reserved UUID. */
|
|
BLE_UUID_SERVICE_PRIMARY = 0x2800, /**< Primary Service. */
|
|
BLE_UUID_SERVICE_SECONDARY = 0x2801, /**< Secondary Service. */
|
|
BLE_UUID_SERVICE_INCLUDE = 0x2802, /**< Include. */
|
|
BLE_UUID_CHARACTERISTIC = 0x2803, /**< Characteristic. */
|
|
BLE_UUID_DESCRIPTOR_CHAR_EXT_PROP = 0x2900, /**< Characteristic Extended Properties Descriptor. */
|
|
BLE_UUID_DESCRIPTOR_CHAR_USER_DESC = 0x2901, /**< Characteristic User Description Descriptor. */
|
|
BLE_UUID_DESCRIPTOR_CLIENT_CHAR_CONFIG = 0x2902, /**< Client Characteristic Configuration Descriptor. */
|
|
BLE_UUID_DESCRIPTOR_SERVER_CHAR_CONFIG = 0x2903, /**< Server Characteristic Configuration Descriptor. */
|
|
BLE_UUID_DESCRIPTOR_CHAR_PRESENTATION_FORMAT = 0x2904, /**< Characteristic Presentation Format Descriptor. */
|
|
BLE_UUID_DESCRIPTOR_CHAR_AGGREGATE_FORMAT = 0x2905, /**< Characteristic Aggregate Format Descriptor. */
|
|
|
|
/* GATT specific UUIDs */
|
|
BLE_UUID_GATT = 0x1801, /**< Generic Attribute Profile. */
|
|
BLE_UUID_GATT_CHARACTERISTIC_SERVICE_CHANGED = 0x2A05, /**< Service Changed Characteristic. */
|
|
|
|
/* GAP specific UUIDs */
|
|
BLE_UUID_GAP = 0x1800, /**< Generic Access Profile. */
|
|
BLE_UUID_GAP_CHARACTERISTIC_DEVICE_NAME = 0x2A00, /**< Device Name Characteristic. */
|
|
BLE_UUID_GAP_CHARACTERISTIC_APPEARANCE = 0x2A01, /**< Appearance Characteristic. */
|
|
BLE_UUID_GAP_CHARACTERISTIC_PPF = 0x2A02, /**< Peripheral Privacy Flag Characteristic. */
|
|
BLE_UUID_GAP_CHARACTERISTIC_RECONN_ADDR = 0x2A03, /**< Reconnection Address Characteristic. */
|
|
BLE_UUID_GAP_CHARACTERISTIC_PPCP = 0x2A04, /**< Peripheral Preferred Connection Parameters Characteristic. */
|
|
};
|
|
|
|
/*! @brief Error codes for the BLE API. */
|
|
enum ble_error_t {
|
|
BLE_ERROR_NONE = 0, /**< No error. */
|
|
BLE_ERROR_BUFFER_OVERFLOW = 1, /**< The requested action would cause a buffer overflow and has been aborted. */
|
|
BLE_ERROR_NOT_IMPLEMENTED = 2, /**< Requested a feature that isn't yet implemented or isn't supported by the target HW. */
|
|
BLE_ERROR_PARAM_OUT_OF_RANGE = 3, /**< One of the supplied parameters is outside the valid range. */
|
|
BLE_ERROR_INVALID_PARAM = 4, /**< One of the supplied parameters is invalid. */
|
|
BLE_STACK_BUSY = 5, /**< The stack is busy. */
|
|
BLE_ERROR_INVALID_STATE = 6, /**< Invalid state. */
|
|
BLE_ERROR_NO_MEM = 7, /**< Out of memory */
|
|
BLE_ERROR_OPERATION_NOT_PERMITTED = 8,
|
|
BLE_ERROR_INITIALIZATION_INCOMPLETE = 9,
|
|
BLE_ERROR_ALREADY_INITIALIZED = 10,
|
|
BLE_ERROR_UNSPECIFIED = 11, /**< Unknown error. */
|
|
BLE_ERROR_INTERNAL_STACK_FAILURE = 12, /**< The platform-specific stack failed */
|
|
};
|
|
|
|
/** @brief Default MTU size. */
|
|
static const unsigned BLE_GATT_MTU_SIZE_DEFAULT = 23;
|
|
|
|
enum HVXType_t {
|
|
BLE_HVX_NOTIFICATION = 0x01, /**< Handle Value Notification. */
|
|
BLE_HVX_INDICATION = 0x02, /**< Handle Value Indication. */
|
|
};
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // ifndef __BLE_COMMON_H__
|