mbed os with nrf51 internal bandgap enabled to read battery level
Dependents: BLE_file_test BLE_Blink ExternalEncoder
features/FEATURE_BLE/ble/GattServerEvents.h@0:f269e3021894, 2016-10-23 (annotated)
- Committer:
- elessair
- Date:
- Sun Oct 23 15:10:02 2016 +0000
- Revision:
- 0:f269e3021894
Initial commit
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
elessair | 0:f269e3021894 | 1 | /* mbed Microcontroller Library |
elessair | 0:f269e3021894 | 2 | * Copyright (c) 2006-2013 ARM Limited |
elessair | 0:f269e3021894 | 3 | * |
elessair | 0:f269e3021894 | 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
elessair | 0:f269e3021894 | 5 | * you may not use this file except in compliance with the License. |
elessair | 0:f269e3021894 | 6 | * You may obtain a copy of the License at |
elessair | 0:f269e3021894 | 7 | * |
elessair | 0:f269e3021894 | 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
elessair | 0:f269e3021894 | 9 | * |
elessair | 0:f269e3021894 | 10 | * Unless required by applicable law or agreed to in writing, software |
elessair | 0:f269e3021894 | 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
elessair | 0:f269e3021894 | 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
elessair | 0:f269e3021894 | 13 | * See the License for the specific language governing permissions and |
elessair | 0:f269e3021894 | 14 | * limitations under the License. |
elessair | 0:f269e3021894 | 15 | */ |
elessair | 0:f269e3021894 | 16 | |
elessair | 0:f269e3021894 | 17 | #ifndef __GATT_SERVER_EVENTS_H__ |
elessair | 0:f269e3021894 | 18 | #define __GATT_SERVER_EVENTS_H__ |
elessair | 0:f269e3021894 | 19 | |
elessair | 0:f269e3021894 | 20 | /** |
elessair | 0:f269e3021894 | 21 | * @brief The base class used to abstract away the callback events that can be |
elessair | 0:f269e3021894 | 22 | * triggered with the GATT Server. |
elessair | 0:f269e3021894 | 23 | */ |
elessair | 0:f269e3021894 | 24 | class GattServerEvents |
elessair | 0:f269e3021894 | 25 | { |
elessair | 0:f269e3021894 | 26 | public: |
elessair | 0:f269e3021894 | 27 | /** |
elessair | 0:f269e3021894 | 28 | * Enumeration for GattServer events. |
elessair | 0:f269e3021894 | 29 | */ |
elessair | 0:f269e3021894 | 30 | typedef enum gattEvent_e { |
elessair | 0:f269e3021894 | 31 | GATT_EVENT_DATA_SENT = 1, /**< Fired when a message was successfully sent out (notify only?) */ |
elessair | 0:f269e3021894 | 32 | GATT_EVENT_DATA_WRITTEN = 2, /**< Client wrote data to the server (separate into char and descriptor writes?) */ |
elessair | 0:f269e3021894 | 33 | GATT_EVENT_UPDATES_ENABLED = 3, /**< Notify/Indicate enabled in CCCD. */ |
elessair | 0:f269e3021894 | 34 | GATT_EVENT_UPDATES_DISABLED = 4, /**< Notify/Indicate disabled in CCCD. */ |
elessair | 0:f269e3021894 | 35 | GATT_EVENT_CONFIRMATION_RECEIVED = 5, /**< Response received from Indicate message. */ |
elessair | 0:f269e3021894 | 36 | GATT_EVENT_READ_AUTHORIZATION_REQ = 6, /**< Request application to authorize read. */ |
elessair | 0:f269e3021894 | 37 | GATT_EVENT_WRITE_AUTHORIZATION_REQ = 7, /**< Request application to authorize write. */ |
elessair | 0:f269e3021894 | 38 | } gattEvent_t; |
elessair | 0:f269e3021894 | 39 | }; |
elessair | 0:f269e3021894 | 40 | |
elessair | 0:f269e3021894 | 41 | #endif /* ifndef __GATT_SERVER_EVENTS_H__ */ |