vo dung
/
eddystone_URL
first commit
Fork of BLE_WallbotBLE_Challenge by
BLE_API/public/GattServerEvents.h@0:76dfa9657d9d, 2014-11-12 (annotated)
- Committer:
- jksoft
- Date:
- Wed Nov 12 02:40:34 2014 +0000
- Revision:
- 0:76dfa9657d9d
????????
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
jksoft | 0:76dfa9657d9d | 1 | /* mbed Microcontroller Library |
jksoft | 0:76dfa9657d9d | 2 | * Copyright (c) 2006-2013 ARM Limited |
jksoft | 0:76dfa9657d9d | 3 | * |
jksoft | 0:76dfa9657d9d | 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
jksoft | 0:76dfa9657d9d | 5 | * you may not use this file except in compliance with the License. |
jksoft | 0:76dfa9657d9d | 6 | * You may obtain a copy of the License at |
jksoft | 0:76dfa9657d9d | 7 | * |
jksoft | 0:76dfa9657d9d | 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
jksoft | 0:76dfa9657d9d | 9 | * |
jksoft | 0:76dfa9657d9d | 10 | * Unless required by applicable law or agreed to in writing, software |
jksoft | 0:76dfa9657d9d | 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
jksoft | 0:76dfa9657d9d | 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
jksoft | 0:76dfa9657d9d | 13 | * See the License for the specific language governing permissions and |
jksoft | 0:76dfa9657d9d | 14 | * limitations under the License. |
jksoft | 0:76dfa9657d9d | 15 | */ |
jksoft | 0:76dfa9657d9d | 16 | |
jksoft | 0:76dfa9657d9d | 17 | #ifndef __GATT_SERVER_EVENTS_H__ |
jksoft | 0:76dfa9657d9d | 18 | #define __GATT_SERVER_EVENTS_H__ |
jksoft | 0:76dfa9657d9d | 19 | |
jksoft | 0:76dfa9657d9d | 20 | #include "blecommon.h" |
jksoft | 0:76dfa9657d9d | 21 | #include "mbed.h" |
jksoft | 0:76dfa9657d9d | 22 | |
jksoft | 0:76dfa9657d9d | 23 | /**************************************************************************/ |
jksoft | 0:76dfa9657d9d | 24 | /*! |
jksoft | 0:76dfa9657d9d | 25 | \brief |
jksoft | 0:76dfa9657d9d | 26 | The base class used to abstract away the callback events that can be |
jksoft | 0:76dfa9657d9d | 27 | triggered with the GATT Server. |
jksoft | 0:76dfa9657d9d | 28 | */ |
jksoft | 0:76dfa9657d9d | 29 | /**************************************************************************/ |
jksoft | 0:76dfa9657d9d | 30 | class GattServerEvents |
jksoft | 0:76dfa9657d9d | 31 | { |
jksoft | 0:76dfa9657d9d | 32 | public: |
jksoft | 0:76dfa9657d9d | 33 | /******************************************************************/ |
jksoft | 0:76dfa9657d9d | 34 | /*! |
jksoft | 0:76dfa9657d9d | 35 | \brief |
jksoft | 0:76dfa9657d9d | 36 | Identifies GATT events generated by the radio HW when an event |
jksoft | 0:76dfa9657d9d | 37 | callback occurs |
jksoft | 0:76dfa9657d9d | 38 | */ |
jksoft | 0:76dfa9657d9d | 39 | /******************************************************************/ |
jksoft | 0:76dfa9657d9d | 40 | typedef enum gattEvent_e { |
jksoft | 0:76dfa9657d9d | 41 | GATT_EVENT_DATA_SENT = 1, /**< Fired when a msg was successfully sent out (notify only?) */ |
jksoft | 0:76dfa9657d9d | 42 | GATT_EVENT_DATA_WRITTEN = 2, /**< Client wrote data to Server (separate into char and descriptor writes?) */ |
jksoft | 0:76dfa9657d9d | 43 | GATT_EVENT_UPDATES_ENABLED = 3, /**< Notify/Indicate Enabled in CCCD */ |
jksoft | 0:76dfa9657d9d | 44 | GATT_EVENT_UPDATES_DISABLED = 4, /**< Notify/Indicate Disabled in CCCD */ |
jksoft | 0:76dfa9657d9d | 45 | GATT_EVENT_CONFIRMATION_RECEIVED = 5 /**< Response received from Indicate message */ |
jksoft | 0:76dfa9657d9d | 46 | } gattEvent_t; |
jksoft | 0:76dfa9657d9d | 47 | }; |
jksoft | 0:76dfa9657d9d | 48 | |
jksoft | 0:76dfa9657d9d | 49 | #endif // ifndef __GATT_SERVER_EVENTS_H__ |