テスト用です。

Dependencies:   mbed

Committer:
jksoft
Date:
Tue Oct 11 11:09:42 2016 +0000
Revision:
0:8468a4403fea
SB??ver;

Who changed what in which revision?

UserRevisionLine numberNew contents of line
jksoft 0:8468a4403fea 1 /* mbed Microcontroller Library
jksoft 0:8468a4403fea 2 * Copyright (c) 2006-2013 ARM Limited
jksoft 0:8468a4403fea 3 *
jksoft 0:8468a4403fea 4 * Licensed under the Apache License, Version 2.0 (the "License");
jksoft 0:8468a4403fea 5 * you may not use this file except in compliance with the License.
jksoft 0:8468a4403fea 6 * You may obtain a copy of the License at
jksoft 0:8468a4403fea 7 *
jksoft 0:8468a4403fea 8 * http://www.apache.org/licenses/LICENSE-2.0
jksoft 0:8468a4403fea 9 *
jksoft 0:8468a4403fea 10 * Unless required by applicable law or agreed to in writing, software
jksoft 0:8468a4403fea 11 * distributed under the License is distributed on an "AS IS" BASIS,
jksoft 0:8468a4403fea 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
jksoft 0:8468a4403fea 13 * See the License for the specific language governing permissions and
jksoft 0:8468a4403fea 14 * limitations under the License.
jksoft 0:8468a4403fea 15 */
jksoft 0:8468a4403fea 16
jksoft 0:8468a4403fea 17 #ifndef __GAP_EVENTS_H__
jksoft 0:8468a4403fea 18 #define __GAP_EVENTS_H__
jksoft 0:8468a4403fea 19
jksoft 0:8468a4403fea 20 #include "blecommon.h"
jksoft 0:8468a4403fea 21
jksoft 0:8468a4403fea 22 /**************************************************************************/
jksoft 0:8468a4403fea 23 /*!
jksoft 0:8468a4403fea 24 \brief
jksoft 0:8468a4403fea 25 The base class used to abstract away the callback events that can be
jksoft 0:8468a4403fea 26 triggered with the GAP.
jksoft 0:8468a4403fea 27 */
jksoft 0:8468a4403fea 28 /**************************************************************************/
jksoft 0:8468a4403fea 29 class GapEvents
jksoft 0:8468a4403fea 30 {
jksoft 0:8468a4403fea 31 public:
jksoft 0:8468a4403fea 32 /******************************************************************/
jksoft 0:8468a4403fea 33 /*!
jksoft 0:8468a4403fea 34 \brief
jksoft 0:8468a4403fea 35 Identifies GAP events generated by the radio HW when an event
jksoft 0:8468a4403fea 36 callback occurs
jksoft 0:8468a4403fea 37 */
jksoft 0:8468a4403fea 38 /******************************************************************/
jksoft 0:8468a4403fea 39 typedef enum gapEvent_e {
jksoft 0:8468a4403fea 40 GAP_EVENT_TIMEOUT = 1, /**< Advertising timed out before a connection was established */
jksoft 0:8468a4403fea 41 GAP_EVENT_CONNECTED = 2, /**< A connection was established with a central device */
jksoft 0:8468a4403fea 42 GAP_EVENT_DISCONNECTED = 3 /**< A connection was closed or lost with a central device */
jksoft 0:8468a4403fea 43 } gapEvent_t;
jksoft 0:8468a4403fea 44 };
jksoft 0:8468a4403fea 45
jksoft 0:8468a4403fea 46 #endif // ifndef __GAP_EVENTS_H__