High level Bluetooth Low Energy API and radio abstraction layer

Dependents:   BLE_ANCS_SDAPI BLE_temperature BLE_HeartRate BLE_ANCS_SDAPI_IRC ... more

Overview

The BLE_API is a high level abstraction for using Bluetooth Low Energy on multiple platforms. For details and examples using the BLE_API please see the BLE_API Summary Page. Or click on the API Documentation tab above.

Supported Services

Supported services can be found in the BLE_API/services folder.

Committer:
vcoubard
Date:
Mon Jan 11 08:52:02 2016 +0000
Revision:
1116:9cb51490b3f7
Parent:
1111:30326e58c830
Synchronized with git rev 54977ed9
Author: Andres Amaya Garcia
Merge branch 'develop' of github.com:ARMmbed/ble into whitelisting

Who changed what in which revision?

UserRevisionLine numberNew contents of line
vcoubard 1111:30326e58c830 1 /* mbed Microcontroller Library
vcoubard 1111:30326e58c830 2 * Copyright (c) 2006-2013 ARM Limited
vcoubard 1111:30326e58c830 3 *
vcoubard 1111:30326e58c830 4 * Licensed under the Apache License, Version 2.0 (the "License");
vcoubard 1111:30326e58c830 5 * you may not use this file except in compliance with the License.
vcoubard 1111:30326e58c830 6 * You may obtain a copy of the License at
vcoubard 1111:30326e58c830 7 *
vcoubard 1111:30326e58c830 8 * http://www.apache.org/licenses/LICENSE-2.0
vcoubard 1111:30326e58c830 9 *
vcoubard 1111:30326e58c830 10 * Unless required by applicable law or agreed to in writing, software
vcoubard 1111:30326e58c830 11 * distributed under the License is distributed on an "AS IS" BASIS,
vcoubard 1111:30326e58c830 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
vcoubard 1111:30326e58c830 13 * See the License for the specific language governing permissions and
vcoubard 1111:30326e58c830 14 * limitations under the License.
vcoubard 1111:30326e58c830 15 */
vcoubard 1111:30326e58c830 16
vcoubard 1111:30326e58c830 17 #ifndef __DEPRECATE_H__
vcoubard 1111:30326e58c830 18 #define __DEPRECATE_H__
vcoubard 1111:30326e58c830 19
vcoubard 1111:30326e58c830 20 #ifdef YOTTA_CFG_MBED_OS
vcoubard 1111:30326e58c830 21 #include "compiler-polyfill/attributes.h"
vcoubard 1111:30326e58c830 22 #else
vcoubard 1111:30326e58c830 23 #define __deprecated_message(msg)
vcoubard 1111:30326e58c830 24 #endif
vcoubard 1111:30326e58c830 25
vcoubard 1111:30326e58c830 26 #endif