Lancaster University's fork of the mbed BLE API. Lives on github, https://github.com/lancaster-university/BLE_API

Dependents:   microbit-dal microbit-dal microbit-ble-open microbit-dal ... more

Fork of BLE_API by Bluetooth Low Energy

Committer:
LancasterUniversity
Date:
Wed Apr 06 18:40:40 2016 +0100
Revision:
1140:dd2f69fad8c6
Parent:
1111:30326e58c830
Synchronized with git rev bbc2dc58
Author: Joe Finney
microbit: Additional callback to indicate to applications when System
Attributes require initialisation from persistent storage.

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