BLE Library with custom services for the tortuga bike
Fork of BLE_API by
ble/deprecate.h@1207:da7745688342, 2016-07-18 (annotated)
- Committer:
- ptuytsch
- Date:
- Mon Jul 18 09:25:32 2016 +0000
- Revision:
- 1207:da7745688342
- Parent:
- 1111:30326e58c830
make it working with tortuga itself
Who changed what in which revision?
User | Revision | Line number | New 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 |