4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef MBED_GAP_EVENTS_H__
18#define MBED_GAP_EVENTS_H__
19
20#include "blecommon.h"
21
22/// @cond INVALID_SECTIONS
23
24/*!
25 \brief
26 The base class used to abstract away the callback events that can be
27 triggered with the GAP.
28
29 @deprecated Do not use; it is not used by BLE API.
30*/
31class GapEvents
32 {
33public:
34 /*!
35 \brief
36 Identifies GAP events generated by the radio HW when an event
37 callback occurs.
38
39 @deprecated Do not use; it is not used by BLE API.
40 */
41typedefenum gapEvent_e {
42 GAP_EVENT_TIMEOUT = 1, /**< Advertising timed out before a connection could be established. */
43 GAP_EVENT_CONNECTED = 2, /**< A connection was established with a central device. */
44 GAP_EVENT_DISCONNECTED = 3 /**< A connection was closed or lost with a central device. */
45 } gapEvent_t;
46 };
47
48/// @endcond
49
50#endif // ifndef MBED_GAP_EVENTS_H__
Important Information for this Arm website
This site uses cookies to store information on your computer.
By continuing to use our site, you consent to our cookies.
If you are not happy with the use of these cookies, please review our
Cookie Policy
to learn how they can be disabled.
By disabling cookies, some features of the site will not work.