Nordic stack and drivers for the mbed BLE API
Fork of nRF51822 by
TARGET_MCU_NRF51822/source/btle/btle.h@638:c90ae1400bf2, 2016-09-14 (annotated)
- Committer:
- Vincent Coubard
- Date:
- Wed Sep 14 14:39:43 2016 +0100
- Revision:
- 638:c90ae1400bf2
Sync with bdab10dc0f90748b6989c8b577771bb403ca6bd8 from ARMmbed/mbed-os.
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
Vincent Coubard |
638:c90ae1400bf2 | 1 | /* mbed Microcontroller Library |
Vincent Coubard |
638:c90ae1400bf2 | 2 | * Copyright (c) 2006-2013 ARM Limited |
Vincent Coubard |
638:c90ae1400bf2 | 3 | * |
Vincent Coubard |
638:c90ae1400bf2 | 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
Vincent Coubard |
638:c90ae1400bf2 | 5 | * you may not use this file except in compliance with the License. |
Vincent Coubard |
638:c90ae1400bf2 | 6 | * You may obtain a copy of the License at |
Vincent Coubard |
638:c90ae1400bf2 | 7 | * |
Vincent Coubard |
638:c90ae1400bf2 | 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
Vincent Coubard |
638:c90ae1400bf2 | 9 | * |
Vincent Coubard |
638:c90ae1400bf2 | 10 | * Unless required by applicable law or agreed to in writing, software |
Vincent Coubard |
638:c90ae1400bf2 | 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
Vincent Coubard |
638:c90ae1400bf2 | 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
Vincent Coubard |
638:c90ae1400bf2 | 13 | * See the License for the specific language governing permissions and |
Vincent Coubard |
638:c90ae1400bf2 | 14 | * limitations under the License. |
Vincent Coubard |
638:c90ae1400bf2 | 15 | */ |
Vincent Coubard |
638:c90ae1400bf2 | 16 | |
Vincent Coubard |
638:c90ae1400bf2 | 17 | #ifndef _BTLE_H_ |
Vincent Coubard |
638:c90ae1400bf2 | 18 | #define _BTLE_H_ |
Vincent Coubard |
638:c90ae1400bf2 | 19 | |
Vincent Coubard |
638:c90ae1400bf2 | 20 | #ifdef __cplusplus |
Vincent Coubard |
638:c90ae1400bf2 | 21 | extern "C" { |
Vincent Coubard |
638:c90ae1400bf2 | 22 | #endif |
Vincent Coubard |
638:c90ae1400bf2 | 23 | |
Vincent Coubard |
638:c90ae1400bf2 | 24 | #include "common/common.h" |
Vincent Coubard |
638:c90ae1400bf2 | 25 | |
Vincent Coubard |
638:c90ae1400bf2 | 26 | #include "ble_srv_common.h" |
Vincent Coubard |
638:c90ae1400bf2 | 27 | #include "nrf_ble.h" |
Vincent Coubard |
638:c90ae1400bf2 | 28 | |
Vincent Coubard |
638:c90ae1400bf2 | 29 | error_t btle_init(void); |
Vincent Coubard |
638:c90ae1400bf2 | 30 | |
Vincent Coubard |
638:c90ae1400bf2 | 31 | // flag indicating if events have been signaled or not |
Vincent Coubard |
638:c90ae1400bf2 | 32 | // It is used by processEvents and signalEventsToProcess |
Vincent Coubard |
638:c90ae1400bf2 | 33 | // signalEventsToProcess raise the flag and processEvents |
Vincent Coubard |
638:c90ae1400bf2 | 34 | // clears it. |
Vincent Coubard |
638:c90ae1400bf2 | 35 | extern bool isEventsSignaled; |
Vincent Coubard |
638:c90ae1400bf2 | 36 | |
Vincent Coubard |
638:c90ae1400bf2 | 37 | #ifdef __cplusplus |
Vincent Coubard |
638:c90ae1400bf2 | 38 | } |
Vincent Coubard |
638:c90ae1400bf2 | 39 | #endif |
Vincent Coubard |
638:c90ae1400bf2 | 40 | |
Vincent Coubard |
638:c90ae1400bf2 | 41 | #endif // ifndef _BTLE_H_ |