2014-12-16 08:18:36 +00:00
|
|
|
/* mbed Microcontroller Library
|
|
|
|
* Copyright (c) 2006-2013 ARM Limited
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __GAP_H__
|
|
|
|
#define __GAP_H__
|
|
|
|
|
|
|
|
#include "GapEvents.h"
|
|
|
|
#include "CallChain.h"
|
2015-05-18 06:41:24 +00:00
|
|
|
#include "FunctionPointerWithContext.h"
|
2014-12-16 08:18:36 +00:00
|
|
|
|
|
|
|
using namespace mbed;
|
|
|
|
|
2015-05-20 09:18:19 +00:00
|
|
|
/* Forward declarations for classes which will only be used for pointers or references in the following. */
|
|
|
|
class GapAdvertisingParams;
|
|
|
|
class GapScanningParams;
|
|
|
|
class GapAdvertisingData;
|
2015-05-11 13:29:01 +00:00
|
|
|
|
2014-12-16 08:18:36 +00:00
|
|
|
class Gap {
|
|
|
|
public:
|
2015-05-11 13:45:13 +00:00
|
|
|
enum AddressType_t {
|
2014-12-16 08:18:36 +00:00
|
|
|
ADDR_TYPE_PUBLIC = 0,
|
|
|
|
ADDR_TYPE_RANDOM_STATIC,
|
|
|
|
ADDR_TYPE_RANDOM_PRIVATE_RESOLVABLE,
|
|
|
|
ADDR_TYPE_RANDOM_PRIVATE_NON_RESOLVABLE
|
2015-05-11 13:45:13 +00:00
|
|
|
};
|
2015-05-11 14:00:10 +00:00
|
|
|
typedef enum AddressType_t addr_type_t; /* @Note: deprecated. Use AddressType_t instead. */
|
2014-12-16 08:18:36 +00:00
|
|
|
|
|
|
|
static const unsigned ADDR_LEN = 6;
|
2015-05-11 13:45:13 +00:00
|
|
|
typedef uint8_t Address_t[ADDR_LEN]; /* 48-bit address, LSB format. */
|
2015-05-11 14:00:10 +00:00
|
|
|
typedef Address_t address_t; /* @Note: deprecated. Use Address_t instead. */
|
2014-12-16 08:18:36 +00:00
|
|
|
|
2015-04-24 13:54:57 +00:00
|
|
|
enum AdvertisementType_t {
|
|
|
|
ADV_IND = 0x00, /**< Connectable undirected. */
|
|
|
|
ADV_DIRECT_IND = 0x01, /**< Connectable directed. */
|
|
|
|
ADV_SCAN_IND = 0x02, /**< Scannable undirected. */
|
|
|
|
ADV_NONCONN_IND = 0x03, /**< Non connectable undirected. */
|
|
|
|
};
|
|
|
|
|
2014-12-16 08:18:36 +00:00
|
|
|
/**
|
|
|
|
* Enumeration for disconnection reasons. The values for these reasons are
|
|
|
|
* derived from Nordic's implementation; but the reasons are meant to be
|
|
|
|
* independent of the transport. If you are returned a reason which is not
|
|
|
|
* covered by this enumeration, then please refer to the underlying
|
|
|
|
* transport library.
|
|
|
|
*/
|
|
|
|
enum DisconnectionReason_t {
|
|
|
|
REMOTE_USER_TERMINATED_CONNECTION = 0x13,
|
|
|
|
LOCAL_HOST_TERMINATED_CONNECTION = 0x16,
|
|
|
|
CONN_INTERVAL_UNACCEPTABLE = 0x3B,
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Describes the current state of the device (more than one bit can be set) */
|
2015-05-21 10:24:02 +00:00
|
|
|
struct GapState_t {
|
2014-12-16 08:18:36 +00:00
|
|
|
unsigned advertising : 1; /**< peripheral is currently advertising */
|
|
|
|
unsigned connected : 1; /**< peripheral is connected to a central */
|
2015-05-21 10:24:02 +00:00
|
|
|
};
|
2014-12-16 08:18:36 +00:00
|
|
|
|
|
|
|
typedef uint16_t Handle_t;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
uint16_t minConnectionInterval; /**< Minimum Connection Interval in 1.25 ms units, see @ref BLE_GAP_CP_LIMITS.*/
|
|
|
|
uint16_t maxConnectionInterval; /**< Maximum Connection Interval in 1.25 ms units, see @ref BLE_GAP_CP_LIMITS.*/
|
|
|
|
uint16_t slaveLatency; /**< Slave Latency in number of connection events, see @ref BLE_GAP_CP_LIMITS.*/
|
|
|
|
uint16_t connectionSupervisionTimeout; /**< Connection Supervision Timeout in 10 ms units, see @ref BLE_GAP_CP_LIMITS.*/
|
|
|
|
} ConnectionParams_t;
|
|
|
|
|
2015-05-08 10:12:23 +00:00
|
|
|
enum SecurityMode_t {
|
2015-05-08 10:38:37 +00:00
|
|
|
SECURITY_MODE_NO_ACCESS,
|
2015-05-11 06:54:30 +00:00
|
|
|
SECURITY_MODE_ENCRYPTION_OPEN_LINK, /**< require no protection, open link. */
|
|
|
|
SECURITY_MODE_ENCRYPTION_NO_MITM, /**< require encryption, but no MITM protection. */
|
|
|
|
SECURITY_MODE_ENCRYPTION_WITH_MITM, /**< require encryption and MITM protection. */
|
|
|
|
SECURITY_MODE_SIGNED_NO_MITM, /**< require signing or encryption, but no MITM protection. */
|
|
|
|
SECURITY_MODE_SIGNED_WITH_MITM, /**< require signing or encryption, and MITM protection. */
|
2015-05-08 10:12:23 +00:00
|
|
|
};
|
|
|
|
|
2015-04-22 12:59:37 +00:00
|
|
|
/**
|
|
|
|
* @brief Defines possible security status/states.
|
|
|
|
*
|
|
|
|
* @details Defines possible security status/states of a link when requested by getLinkSecurity().
|
|
|
|
*/
|
|
|
|
enum LinkSecurityStatus_t {
|
|
|
|
NOT_ENCRYPTED, /**< The link is not secured. */
|
|
|
|
ENCRYPTION_IN_PROGRESS, /**< Link security is being established.*/
|
|
|
|
ENCRYPTED /**< The link is secure.*/
|
|
|
|
};
|
|
|
|
|
2015-05-07 12:15:19 +00:00
|
|
|
enum SecurityIOCapabilities_t {
|
|
|
|
IO_CAPS_DISPLAY_ONLY = 0x00, /**< Display Only. */
|
|
|
|
IO_CAPS_DISPLAY_YESNO = 0x01, /**< Display and Yes/No entry. */
|
|
|
|
IO_CAPS_KEYBOARD_ONLY = 0x02, /**< Keyboard Only. */
|
|
|
|
IO_CAPS_NONE = 0x03, /**< No I/O capabilities. */
|
|
|
|
IO_CAPS_KEYBOARD_DISPLAY = 0x04, /**< Keyboard and Display. */
|
|
|
|
};
|
|
|
|
|
2015-05-08 10:00:17 +00:00
|
|
|
enum SecurityCompletionStatus_t {
|
|
|
|
SEC_STATUS_SUCCESS = 0x00, /**< Procedure completed with success. */
|
|
|
|
SEC_STATUS_TIMEOUT = 0x01, /**< Procedure timed out. */
|
|
|
|
SEC_STATUS_PDU_INVALID = 0x02, /**< Invalid PDU received. */
|
2015-05-08 12:48:53 +00:00
|
|
|
SEC_STATUS_PASSKEY_ENTRY_FAILED = 0x81, /**< Passkey entry failed (user canceled or other). */
|
2015-05-08 10:00:17 +00:00
|
|
|
SEC_STATUS_OOB_NOT_AVAILABLE = 0x82, /**< Out of Band Key not available. */
|
|
|
|
SEC_STATUS_AUTH_REQ = 0x83, /**< Authentication requirements not met. */
|
|
|
|
SEC_STATUS_CONFIRM_VALUE = 0x84, /**< Confirm value failed. */
|
|
|
|
SEC_STATUS_PAIRING_NOT_SUPP = 0x85, /**< Pairing not supported. */
|
|
|
|
SEC_STATUS_ENC_KEY_SIZE = 0x86, /**< Encryption key size. */
|
|
|
|
SEC_STATUS_SMP_CMD_UNSUPPORTED = 0x87, /**< Unsupported SMP command. */
|
|
|
|
SEC_STATUS_UNSPECIFIED = 0x88, /**< Unspecified reason. */
|
|
|
|
SEC_STATUS_REPEATED_ATTEMPTS = 0x89, /**< Too little time elapsed since last attempt. */
|
|
|
|
SEC_STATUS_INVALID_PARAMS = 0x8A, /**< Invalid parameters. */
|
|
|
|
};
|
|
|
|
|
2015-05-07 12:15:19 +00:00
|
|
|
/**
|
|
|
|
* Declaration of type containing a passkey to be used during pairing. This
|
|
|
|
* is passed into initializeSecurity() to specify a pre-programmed passkey
|
|
|
|
* for authentication instead of generating a random one.
|
|
|
|
*/
|
|
|
|
static const unsigned PASSKEY_LEN = 6;
|
|
|
|
typedef uint8_t Passkey_t[PASSKEY_LEN]; /**< 6-digit passkey in ASCII ('0'-'9' digits only). */
|
|
|
|
|
2014-12-16 08:18:36 +00:00
|
|
|
static const uint16_t UNIT_1_25_MS = 1250; /**< Number of microseconds in 1.25 milliseconds. */
|
2015-05-11 13:29:32 +00:00
|
|
|
static const uint16_t UNIT_0_625_MS = 625; /**< Number of microseconds in 0.625 milliseconds. */
|
2014-12-16 08:18:36 +00:00
|
|
|
static uint16_t MSEC_TO_GAP_DURATION_UNITS(uint32_t durationInMillis) {
|
|
|
|
return (durationInMillis * 1000) / UNIT_1_25_MS;
|
|
|
|
}
|
|
|
|
static uint16_t MSEC_TO_ADVERTISEMENT_DURATION_UNITS(uint32_t durationInMillis) {
|
|
|
|
return (durationInMillis * 1000) / UNIT_0_625_MS;
|
|
|
|
}
|
2015-05-11 13:31:09 +00:00
|
|
|
static uint16_t ADVERTISEMENT_DURATION_UNITS_TO_MS(uint16_t gapUnits) {
|
2015-03-23 16:10:34 +00:00
|
|
|
return (gapUnits * UNIT_0_625_MS) / 1000;
|
|
|
|
}
|
2014-12-16 08:18:36 +00:00
|
|
|
|
|
|
|
typedef void (*EventCallback_t)(void);
|
2015-03-31 10:55:53 +00:00
|
|
|
typedef void (*ConnectionEventCallback_t)(Handle_t,
|
2015-05-19 12:28:10 +00:00
|
|
|
AddressType_t peerAddrType, const Address_t peerAddr,
|
|
|
|
AddressType_t ownAddrType, const Address_t ownAddr,
|
2015-03-31 10:55:53 +00:00
|
|
|
const ConnectionParams_t *);
|
2015-04-22 10:46:18 +00:00
|
|
|
typedef void (*HandleSpecificEvent_t)(Handle_t handle);
|
2014-12-16 08:18:36 +00:00
|
|
|
typedef void (*DisconnectionEventCallback_t)(Handle_t, DisconnectionReason_t);
|
2015-04-09 12:46:17 +00:00
|
|
|
typedef void (*RadioNotificationEventCallback_t) (bool radio_active); /* gets passed true for ACTIVE; false for INACTIVE. */
|
2015-05-08 10:55:56 +00:00
|
|
|
typedef void (*SecuritySetupInitiatedCallback_t)(Handle_t, bool allowBonding, bool requireMITM, SecurityIOCapabilities_t iocaps);
|
|
|
|
typedef void (*SecuritySetupCompletedCallback_t)(Handle_t, SecurityCompletionStatus_t status);
|
2015-05-08 10:39:19 +00:00
|
|
|
typedef void (*LinkSecuredCallback_t)(Handle_t handle, SecurityMode_t securityMode);
|
2015-05-08 12:51:44 +00:00
|
|
|
typedef void (*PasskeyDisplayCallback_t)(Handle_t handle, const Passkey_t passkey);
|
2014-12-16 08:18:36 +00:00
|
|
|
|
2015-05-18 06:41:24 +00:00
|
|
|
struct AdvertisementCallbackParams_t {
|
|
|
|
Address_t peerAddr;
|
|
|
|
int8_t rssi;
|
|
|
|
bool isScanResponse;
|
|
|
|
AdvertisementType_t type;
|
|
|
|
uint8_t advertisingDataLen;
|
|
|
|
const uint8_t *advertisingData;
|
|
|
|
};
|
|
|
|
typedef FunctionPointerWithContext<const AdvertisementCallbackParams_t *> AdvertisementReportCallback_t;
|
2015-04-24 13:54:57 +00:00
|
|
|
|
2014-12-16 08:18:36 +00:00
|
|
|
friend class BLEDevice;
|
2015-04-23 13:40:42 +00:00
|
|
|
|
2014-12-16 08:18:36 +00:00
|
|
|
private:
|
|
|
|
/* These functions must be defined in the sub-class */
|
2015-05-19 12:28:10 +00:00
|
|
|
virtual ble_error_t setAddress(AddressType_t type, const Address_t address) = 0;
|
|
|
|
virtual ble_error_t getAddress(AddressType_t *typeP, Address_t address) = 0;
|
2014-12-16 08:18:36 +00:00
|
|
|
virtual ble_error_t setAdvertisingData(const GapAdvertisingData &, const GapAdvertisingData &) = 0;
|
|
|
|
virtual ble_error_t startAdvertising(const GapAdvertisingParams &) = 0;
|
|
|
|
virtual ble_error_t stopAdvertising(void) = 0;
|
2015-05-11 10:55:20 +00:00
|
|
|
virtual ble_error_t stopScan() = 0;
|
2015-03-23 16:10:34 +00:00
|
|
|
virtual uint16_t getMinAdvertisingInterval(void) const = 0;
|
|
|
|
virtual uint16_t getMinNonConnectableAdvertisingInterval(void) const = 0;
|
|
|
|
virtual uint16_t getMaxAdvertisingInterval(void) const = 0;
|
2014-12-16 08:18:36 +00:00
|
|
|
virtual ble_error_t disconnect(DisconnectionReason_t reason) = 0;
|
|
|
|
virtual ble_error_t getPreferredConnectionParams(ConnectionParams_t *params) = 0;
|
|
|
|
virtual ble_error_t setPreferredConnectionParams(const ConnectionParams_t *params) = 0;
|
|
|
|
virtual ble_error_t updateConnectionParams(Handle_t handle, const ConnectionParams_t *params) = 0;
|
|
|
|
|
2015-04-23 07:02:21 +00:00
|
|
|
virtual ble_error_t purgeAllBondingState(void) = 0;
|
2015-04-22 12:59:37 +00:00
|
|
|
virtual ble_error_t getLinkSecurity(Handle_t connectionHandle, LinkSecurityStatus_t *securityStatusP) = 0;
|
|
|
|
|
2014-12-16 08:18:36 +00:00
|
|
|
virtual ble_error_t setDeviceName(const uint8_t *deviceName) = 0;
|
|
|
|
virtual ble_error_t getDeviceName(uint8_t *deviceName, unsigned *lengthP) = 0;
|
|
|
|
virtual ble_error_t setAppearance(uint16_t appearance) = 0;
|
|
|
|
virtual ble_error_t getAppearance(uint16_t *appearanceP) = 0;
|
|
|
|
|
2015-05-18 08:10:22 +00:00
|
|
|
ble_error_t startScan(const GapScanningParams &scanningParams, void (*callback)(const AdvertisementCallbackParams_t *params)) {
|
|
|
|
ble_error_t err = BLE_ERROR_NONE;
|
|
|
|
if (callback) {
|
|
|
|
if ((err = startRadioScan(scanningParams)) == BLE_ERROR_NONE) {
|
|
|
|
onAdvertisementReport.attach(callback);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
ble_error_t startScan(const GapScanningParams &scanningParams, T *object, void (T::*callbackMember)(const AdvertisementCallbackParams_t *params)) {
|
|
|
|
ble_error_t err = BLE_ERROR_NONE;
|
|
|
|
if (object && callbackMember) {
|
|
|
|
if ((err = startRadioScan(scanningParams)) == BLE_ERROR_NONE) {
|
|
|
|
onAdvertisementReport.attach(object, callbackMember);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2015-04-09 12:43:53 +00:00
|
|
|
protected:
|
2015-05-18 08:10:22 +00:00
|
|
|
virtual ble_error_t startRadioScan(const GapScanningParams &scanningParams) = 0;
|
|
|
|
|
2014-12-16 08:18:36 +00:00
|
|
|
/* Event callback handlers */
|
|
|
|
void setOnTimeout(EventCallback_t callback) {onTimeout = callback;}
|
|
|
|
void setOnConnection(ConnectionEventCallback_t callback) {onConnection = callback;}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the application callback for disconnection events.
|
|
|
|
* @param callback
|
|
|
|
* Pointer to the unique callback.
|
|
|
|
*/
|
|
|
|
void setOnDisconnection(DisconnectionEventCallback_t callback) {onDisconnection = callback;}
|
|
|
|
|
2015-04-09 12:46:17 +00:00
|
|
|
/**
|
|
|
|
* Set the application callback for radio-notification events.
|
|
|
|
* @param callback
|
2015-05-08 12:48:53 +00:00
|
|
|
* Handler to be executed in response to a radio notification event.
|
2015-04-09 12:46:17 +00:00
|
|
|
*/
|
|
|
|
virtual void setOnRadioNotification(RadioNotificationEventCallback_t callback) {onRadioNotification = callback;}
|
|
|
|
|
2015-04-22 10:46:18 +00:00
|
|
|
/**
|
|
|
|
* To indicate that security procedure for link has started.
|
|
|
|
*/
|
2015-05-08 11:10:42 +00:00
|
|
|
virtual void setOnSecuritySetupInitiated(SecuritySetupInitiatedCallback_t callback) {onSecuritySetupInitiated = callback;}
|
2015-04-22 10:46:18 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* To indicate that security procedure for link has completed.
|
|
|
|
*/
|
2015-05-08 11:10:42 +00:00
|
|
|
virtual void setOnSecuritySetupCompleted(SecuritySetupCompletedCallback_t callback) {onSecuritySetupCompleted = callback;}
|
2015-04-22 10:46:18 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* To indicate that link with the peer is secured. For bonded devices,
|
2015-05-08 12:48:53 +00:00
|
|
|
* subsequent re-connections with bonded peer will result only in this callback
|
2015-04-22 10:46:18 +00:00
|
|
|
* when the link is secured and setup procedures will not occur unless the
|
|
|
|
* bonding information is either lost or deleted on either or both sides.
|
|
|
|
*/
|
2015-05-08 10:39:19 +00:00
|
|
|
virtual void setOnLinkSecured(LinkSecuredCallback_t callback) {onLinkSecured = callback;}
|
2015-04-22 10:46:18 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* To indicate that device context is stored persistently.
|
|
|
|
*/
|
|
|
|
virtual void setOnSecurityContextStored(HandleSpecificEvent_t callback) {onSecurityContextStored = callback;}
|
|
|
|
|
2015-05-08 12:51:44 +00:00
|
|
|
/**
|
|
|
|
* To set the callback for when the passkey needs to be displayed on a peripheral with DISPLAY capability.
|
|
|
|
*/
|
|
|
|
virtual void setOnPasskeyDisplay(PasskeyDisplayCallback_t callback) {onPasskeyDisplay = callback;}
|
|
|
|
|
2014-12-16 08:18:36 +00:00
|
|
|
/**
|
|
|
|
* Append to a chain of callbacks to be invoked upon disconnection; these
|
|
|
|
* callbacks receive no context and are therefore different from the
|
|
|
|
* onDisconnection callback.
|
|
|
|
* @param callback
|
|
|
|
* function pointer to be invoked upon disconnection; receives no context.
|
|
|
|
*
|
|
|
|
* @note the disconnection CallChain should have been merged with
|
|
|
|
* onDisconnctionCallback; but this was not possible because
|
|
|
|
* FunctionPointer (which is a building block for CallChain) doesn't
|
|
|
|
* accept variadic templates.
|
|
|
|
*/
|
|
|
|
template<typename T>
|
|
|
|
void addToDisconnectionCallChain(T *tptr, void (T::*mptr)(void)) {disconnectionCallChain.add(tptr, mptr);}
|
|
|
|
|
2015-04-09 12:43:53 +00:00
|
|
|
private:
|
2014-12-16 08:18:36 +00:00
|
|
|
GapState_t getState(void) const {
|
|
|
|
return state;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
2015-04-22 10:46:18 +00:00
|
|
|
Gap() :
|
|
|
|
state(),
|
|
|
|
onTimeout(NULL),
|
|
|
|
onConnection(NULL),
|
|
|
|
onDisconnection(NULL),
|
|
|
|
onRadioNotification(),
|
2015-05-08 11:10:42 +00:00
|
|
|
onSecuritySetupInitiated(),
|
|
|
|
onSecuritySetupCompleted(),
|
2015-04-22 10:46:18 +00:00
|
|
|
onLinkSecured(),
|
|
|
|
onSecurityContextStored(),
|
2015-05-08 12:51:44 +00:00
|
|
|
onPasskeyDisplay(),
|
2015-04-24 13:56:50 +00:00
|
|
|
onAdvertisementReport(),
|
2015-04-22 10:46:18 +00:00
|
|
|
disconnectionCallChain() {
|
2014-12-16 08:18:36 +00:00
|
|
|
/* empty */
|
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
2015-05-19 12:28:10 +00:00
|
|
|
void processConnectionEvent(Handle_t handle, AddressType_t peerAddrType, const Address_t peerAddr, AddressType_t ownAddrType, const Address_t ownAddr, const ConnectionParams_t *params) {
|
2014-12-16 08:18:36 +00:00
|
|
|
state.connected = 1;
|
|
|
|
if (onConnection) {
|
2015-03-31 10:55:53 +00:00
|
|
|
onConnection(handle, peerAddrType, peerAddr, ownAddrType, ownAddr, params);
|
2014-12-16 08:18:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void processDisconnectionEvent(Handle_t handle, DisconnectionReason_t reason) {
|
|
|
|
state.connected = 0;
|
|
|
|
if (onDisconnection) {
|
|
|
|
onDisconnection(handle, reason);
|
|
|
|
}
|
|
|
|
disconnectionCallChain.call();
|
|
|
|
}
|
|
|
|
|
2015-05-08 10:55:56 +00:00
|
|
|
void processSecuritySetupInitiatedEvent(Handle_t handle, bool allowBonding, bool requireMITM, SecurityIOCapabilities_t iocaps) {
|
2015-05-08 11:10:42 +00:00
|
|
|
if (onSecuritySetupInitiated) {
|
|
|
|
onSecuritySetupInitiated(handle, allowBonding, requireMITM, iocaps);
|
2015-04-22 10:46:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-08 10:55:56 +00:00
|
|
|
void processSecuritySetupCompletedEvent(Handle_t handle, SecurityCompletionStatus_t status) {
|
2015-05-08 11:10:42 +00:00
|
|
|
if (onSecuritySetupCompleted) {
|
|
|
|
onSecuritySetupCompleted(handle, status);
|
2015-04-22 10:46:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-08 10:39:19 +00:00
|
|
|
void processLinkSecuredEvent(Handle_t handle, SecurityMode_t securityMode) {
|
2015-04-22 10:46:18 +00:00
|
|
|
if (onLinkSecured) {
|
2015-05-08 10:39:19 +00:00
|
|
|
onLinkSecured(handle, securityMode);
|
2015-04-22 10:46:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void processSecurityContextStoredEvent(Handle_t handle) {
|
|
|
|
if (onSecurityContextStored) {
|
|
|
|
onSecurityContextStored(handle);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-08 12:51:44 +00:00
|
|
|
void processPasskeyDisplayEvent(Handle_t handle, const Passkey_t passkey) {
|
|
|
|
if (onPasskeyDisplay) {
|
|
|
|
onPasskeyDisplay(handle, passkey);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-18 06:38:06 +00:00
|
|
|
void processAdvertisementReport(const Address_t peerAddr,
|
2015-04-24 13:56:50 +00:00
|
|
|
int8_t rssi,
|
|
|
|
bool isScanResponse,
|
|
|
|
AdvertisementType_t type,
|
|
|
|
uint8_t advertisingDataLen,
|
|
|
|
const uint8_t *advertisingData) {
|
2015-05-18 06:41:24 +00:00
|
|
|
AdvertisementCallbackParams_t params;
|
|
|
|
memcpy(params.peerAddr, peerAddr, ADDR_LEN);
|
|
|
|
params.rssi = rssi;
|
|
|
|
params.isScanResponse = isScanResponse;
|
|
|
|
params.type = type;
|
|
|
|
params.advertisingDataLen = advertisingDataLen;
|
|
|
|
params.advertisingData = advertisingData;
|
|
|
|
onAdvertisementReport.call(¶ms);
|
2015-04-24 13:56:50 +00:00
|
|
|
}
|
|
|
|
|
2014-12-16 08:18:36 +00:00
|
|
|
void processEvent(GapEvents::gapEvent_e type) {
|
|
|
|
switch (type) {
|
|
|
|
case GapEvents::GAP_EVENT_TIMEOUT:
|
|
|
|
state.advertising = 0;
|
|
|
|
if (onTimeout) {
|
|
|
|
onTimeout();
|
|
|
|
}
|
|
|
|
break;
|
2014-12-28 08:45:47 +00:00
|
|
|
default:
|
|
|
|
break;
|
2014-12-16 08:18:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
2015-05-08 10:55:56 +00:00
|
|
|
GapState_t state;
|
2014-12-16 08:18:36 +00:00
|
|
|
|
2015-04-09 12:43:53 +00:00
|
|
|
protected:
|
2015-05-08 10:55:56 +00:00
|
|
|
EventCallback_t onTimeout;
|
|
|
|
ConnectionEventCallback_t onConnection;
|
|
|
|
DisconnectionEventCallback_t onDisconnection;
|
|
|
|
RadioNotificationEventCallback_t onRadioNotification;
|
2015-05-08 11:10:42 +00:00
|
|
|
SecuritySetupInitiatedCallback_t onSecuritySetupInitiated;
|
|
|
|
SecuritySetupCompletedCallback_t onSecuritySetupCompleted;
|
2015-05-08 10:55:56 +00:00
|
|
|
LinkSecuredCallback_t onLinkSecured;
|
|
|
|
HandleSpecificEvent_t onSecurityContextStored;
|
2015-05-08 12:51:44 +00:00
|
|
|
PasskeyDisplayCallback_t onPasskeyDisplay;
|
2015-04-24 14:10:15 +00:00
|
|
|
AdvertisementReportCallback_t onAdvertisementReport;
|
2015-05-08 10:55:56 +00:00
|
|
|
CallChain disconnectionCallChain;
|
2014-12-16 08:18:36 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
/* disallow copy and assignment */
|
|
|
|
Gap(const Gap &);
|
|
|
|
Gap& operator=(const Gap &);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // ifndef __GAP_H__
|