Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of BLE_API by
public/GattServerEvents.h@260:ea7f9f14cc15, 2015-01-21 (annotated)
- Committer:
- rgrover1
- Date:
- Wed Jan 21 09:32:49 2015 +0000
- Revision:
- 260:ea7f9f14cc15
- Parent:
- 253:097be53aea02
Synchronized with git rev bec9560c
Author: Rohit Grover
fix all line endings to be Unix style
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
rgrover1 | 260:ea7f9f14cc15 | 1 | /* mbed Microcontroller Library |
rgrover1 | 260:ea7f9f14cc15 | 2 | * Copyright (c) 2006-2013 ARM Limited |
rgrover1 | 260:ea7f9f14cc15 | 3 | * |
rgrover1 | 260:ea7f9f14cc15 | 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
rgrover1 | 260:ea7f9f14cc15 | 5 | * you may not use this file except in compliance with the License. |
rgrover1 | 260:ea7f9f14cc15 | 6 | * You may obtain a copy of the License at |
rgrover1 | 260:ea7f9f14cc15 | 7 | * |
rgrover1 | 260:ea7f9f14cc15 | 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
rgrover1 | 260:ea7f9f14cc15 | 9 | * |
rgrover1 | 260:ea7f9f14cc15 | 10 | * Unless required by applicable law or agreed to in writing, software |
rgrover1 | 260:ea7f9f14cc15 | 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
rgrover1 | 260:ea7f9f14cc15 | 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
rgrover1 | 260:ea7f9f14cc15 | 13 | * See the License for the specific language governing permissions and |
rgrover1 | 260:ea7f9f14cc15 | 14 | * limitations under the License. |
rgrover1 | 260:ea7f9f14cc15 | 15 | */ |
rgrover1 | 260:ea7f9f14cc15 | 16 | |
rgrover1 | 260:ea7f9f14cc15 | 17 | #ifndef __GATT_SERVER_EVENTS_H__ |
rgrover1 | 260:ea7f9f14cc15 | 18 | #define __GATT_SERVER_EVENTS_H__ |
rgrover1 | 260:ea7f9f14cc15 | 19 | |
rgrover1 | 260:ea7f9f14cc15 | 20 | /*! |
rgrover1 | 260:ea7f9f14cc15 | 21 | \brief |
rgrover1 | 260:ea7f9f14cc15 | 22 | The base class used to abstract away the callback events that can be |
rgrover1 | 260:ea7f9f14cc15 | 23 | triggered with the GATT Server. |
rgrover1 | 260:ea7f9f14cc15 | 24 | */ |
rgrover1 | 260:ea7f9f14cc15 | 25 | class GattServerEvents |
rgrover1 | 260:ea7f9f14cc15 | 26 | { |
rgrover1 | 260:ea7f9f14cc15 | 27 | public: |
rgrover1 | 260:ea7f9f14cc15 | 28 | typedef enum gattEvent_e { |
rgrover1 | 260:ea7f9f14cc15 | 29 | GATT_EVENT_DATA_SENT = 1, /**< Fired when a msg was successfully sent out (notify only?) */ |
rgrover1 | 260:ea7f9f14cc15 | 30 | GATT_EVENT_DATA_WRITTEN = 2, /**< Client wrote data to Server (separate into char and descriptor writes?) */ |
rgrover1 | 260:ea7f9f14cc15 | 31 | GATT_EVENT_UPDATES_ENABLED = 3, /**< Notify/Indicate Enabled in CCCD */ |
rgrover1 | 260:ea7f9f14cc15 | 32 | GATT_EVENT_UPDATES_DISABLED = 4, /**< Notify/Indicate Disabled in CCCD */ |
rgrover1 | 260:ea7f9f14cc15 | 33 | GATT_EVENT_CONFIRMATION_RECEIVED = 5, /**< Response received from Indicate message */ |
rgrover1 | 260:ea7f9f14cc15 | 34 | GATT_EVENT_READ_AUTHORIZATION_REQ = 6, /**< Request application to authorize read */ |
rgrover1 | 260:ea7f9f14cc15 | 35 | GATT_EVENT_WRITE_AUTHORIZATION_REQ = 7, /**< Request application to authorize write */ |
rgrover1 | 260:ea7f9f14cc15 | 36 | } gattEvent_t; |
rgrover1 | 260:ea7f9f14cc15 | 37 | }; |
rgrover1 | 260:ea7f9f14cc15 | 38 | |
rgrover1 | 260:ea7f9f14cc15 | 39 | #endif // ifndef __GATT_SERVER_EVENTS_H__ |