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/Gap.h@116:ca826083980e, 2014-09-02 (annotated)
- Committer:
- Rohit Grover
- Date:
- Tue Sep 02 15:09:46 2014 +0100
- Revision:
- 116:ca826083980e
- Parent:
- 106:a20be740075d
- Child:
- 117:0fb20195102b
Release 0.1.0
=============
Mostly API changes.
Features
~~~~~~~~
- onConnection() callback now receives connection-parameters applicable to the
new connection.
- onDataSent() callback now receives a count parameter containing the number of
times notifications were sent out since the last callback.
- A 'reason' parameter has been added to Gap::disconnect() to indicate the
reason for disconnection; and also to the onDisconnection callback to
receive a reason from the remote host.
Bugfixes
~~~~~~~~
- onDataWritten() callback now receives an additional parameter
(GattServer::WriteEventCallback_t) encapsulating the update. This avoids
having to re-fetch the updated characteristic's value attribute. It also
fixes a bug where multiple updates to the characteristic's value-attribute
could get clobbered if they occurred in quick succession before the
callbacks could be processed.
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
Rohit Grover |
106:a20be740075d | 1 | /* mbed Microcontroller Library |
Rohit Grover |
106:a20be740075d | 2 | * Copyright (c) 2006-2013 ARM Limited |
Rohit Grover |
106:a20be740075d | 3 | * |
Rohit Grover |
106:a20be740075d | 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
Rohit Grover |
106:a20be740075d | 5 | * you may not use this file except in compliance with the License. |
Rohit Grover |
106:a20be740075d | 6 | * You may obtain a copy of the License at |
Rohit Grover |
106:a20be740075d | 7 | * |
Rohit Grover |
106:a20be740075d | 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
Rohit Grover |
106:a20be740075d | 9 | * |
Rohit Grover |
106:a20be740075d | 10 | * Unless required by applicable law or agreed to in writing, software |
Rohit Grover |
106:a20be740075d | 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
Rohit Grover |
106:a20be740075d | 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
Rohit Grover |
106:a20be740075d | 13 | * See the License for the specific language governing permissions and |
Rohit Grover |
106:a20be740075d | 14 | * limitations under the License. |
Rohit Grover |
106:a20be740075d | 15 | */ |
Rohit Grover |
106:a20be740075d | 16 | |
Rohit Grover |
106:a20be740075d | 17 | #ifndef __GAP_H__ |
Rohit Grover |
106:a20be740075d | 18 | #define __GAP_H__ |
Rohit Grover |
106:a20be740075d | 19 | |
Rohit Grover |
106:a20be740075d | 20 | #include "mbed.h" |
Rohit Grover |
106:a20be740075d | 21 | #include "blecommon.h" |
Rohit Grover |
106:a20be740075d | 22 | #include "GapAdvertisingData.h" |
Rohit Grover |
106:a20be740075d | 23 | #include "GapAdvertisingParams.h" |
Rohit Grover |
106:a20be740075d | 24 | #include "GapEvents.h" |
Rohit Grover |
106:a20be740075d | 25 | |
Rohit Grover |
106:a20be740075d | 26 | /**************************************************************************/ |
Rohit Grover |
106:a20be740075d | 27 | /*! |
Rohit Grover |
106:a20be740075d | 28 | \brief |
Rohit Grover |
106:a20be740075d | 29 | The base class used to abstract GAP functionality to a specific radio |
Rohit Grover |
106:a20be740075d | 30 | transceiver, SOC or BLE Stack. |
Rohit Grover |
106:a20be740075d | 31 | */ |
Rohit Grover |
106:a20be740075d | 32 | /**************************************************************************/ |
Rohit Grover |
106:a20be740075d | 33 | class Gap |
Rohit Grover |
106:a20be740075d | 34 | { |
Rohit Grover |
106:a20be740075d | 35 | public: |
Rohit Grover |
106:a20be740075d | 36 | typedef enum addr_type_e { |
Rohit Grover |
106:a20be740075d | 37 | ADDR_TYPE_PUBLIC = 0, |
Rohit Grover |
106:a20be740075d | 38 | ADDR_TYPE_RANDOM_STATIC, |
Rohit Grover |
106:a20be740075d | 39 | ADDR_TYPE_RANDOM_PRIVATE_RESOLVABLE, |
Rohit Grover |
106:a20be740075d | 40 | ADDR_TYPE_RANDOM_PRIVATE_NON_RESOLVABLE |
Rohit Grover |
106:a20be740075d | 41 | } addr_type_t; |
Rohit Grover |
106:a20be740075d | 42 | |
Rohit Grover |
116:ca826083980e | 43 | enum DisconnectionReason_t { |
Rohit Grover |
116:ca826083980e | 44 | REMOTE_USER_TERMINATED_CONNECTION, |
Rohit Grover |
116:ca826083980e | 45 | CONN_INTERVAL_UNACCEPTABLE, |
Rohit Grover |
116:ca826083980e | 46 | LOCAL_HOST_TERMINATED_CONNECTION, |
Rohit Grover |
116:ca826083980e | 47 | }; |
Rohit Grover |
116:ca826083980e | 48 | |
Rohit Grover |
106:a20be740075d | 49 | /* Describes the current state of the device (more than one bit can be set) */ |
Rohit Grover |
106:a20be740075d | 50 | typedef struct GapState_s { |
Rohit Grover |
106:a20be740075d | 51 | unsigned advertising : 1; /**< peripheral is currently advertising */ |
Rohit Grover |
106:a20be740075d | 52 | unsigned connected : 1; /**< peripheral is connected to a central */ |
Rohit Grover |
106:a20be740075d | 53 | } GapState_t; |
Rohit Grover |
106:a20be740075d | 54 | |
Rohit Grover |
106:a20be740075d | 55 | typedef uint16_t Handle_t; |
Rohit Grover |
106:a20be740075d | 56 | |
Rohit Grover |
106:a20be740075d | 57 | typedef struct { |
Rohit Grover |
106:a20be740075d | 58 | uint16_t minConnectionInterval; /**< Minimum Connection Interval in 1.25 ms units, see @ref BLE_GAP_CP_LIMITS.*/ |
Rohit Grover |
106:a20be740075d | 59 | uint16_t maxConnectionInterval; /**< Maximum Connection Interval in 1.25 ms units, see @ref BLE_GAP_CP_LIMITS.*/ |
Rohit Grover |
106:a20be740075d | 60 | uint16_t slaveLatency; /**< Slave Latency in number of connection events, see @ref BLE_GAP_CP_LIMITS.*/ |
Rohit Grover |
106:a20be740075d | 61 | uint16_t connectionSupervisionTimeout; /**< Connection Supervision Timeout in 10 ms units, see @ref BLE_GAP_CP_LIMITS.*/ |
Rohit Grover |
106:a20be740075d | 62 | } ConnectionParams_t; |
Rohit Grover |
106:a20be740075d | 63 | |
Rohit Grover |
106:a20be740075d | 64 | public: |
Rohit Grover |
106:a20be740075d | 65 | /* These functions must be defined in the sub-class */ |
Rohit Grover |
106:a20be740075d | 66 | virtual ble_error_t setAddress(addr_type_t type, const uint8_t address[6]) = 0; |
Rohit Grover |
106:a20be740075d | 67 | virtual ble_error_t setAdvertisingData(const GapAdvertisingData &, const GapAdvertisingData &) = 0; |
Rohit Grover |
106:a20be740075d | 68 | virtual ble_error_t startAdvertising(const GapAdvertisingParams &) = 0; |
Rohit Grover |
106:a20be740075d | 69 | virtual ble_error_t stopAdvertising(void) = 0; |
Rohit Grover |
116:ca826083980e | 70 | virtual ble_error_t disconnect(DisconnectionReason_t reason) = 0; |
Rohit Grover |
106:a20be740075d | 71 | virtual ble_error_t getPreferredConnectionParams(ConnectionParams_t *params) = 0; |
Rohit Grover |
106:a20be740075d | 72 | virtual ble_error_t setPreferredConnectionParams(const ConnectionParams_t *params) = 0; |
Rohit Grover |
106:a20be740075d | 73 | virtual ble_error_t updateConnectionParams(Handle_t handle, const ConnectionParams_t *params) = 0; |
Rohit Grover |
106:a20be740075d | 74 | |
Rohit Grover |
116:ca826083980e | 75 | virtual ble_error_t setDeviceName(const uint8_t *deviceName) = 0; |
Rohit Grover |
116:ca826083980e | 76 | virtual ble_error_t getDeviceName(uint8_t *deviceName, unsigned *lengthP) = 0; |
Rohit Grover |
116:ca826083980e | 77 | virtual ble_error_t setAppearance(uint16_t appearance) = 0; |
Rohit Grover |
116:ca826083980e | 78 | virtual ble_error_t getAppearance(uint16_t *appearanceP) = 0; |
Rohit Grover |
116:ca826083980e | 79 | |
Rohit Grover |
106:a20be740075d | 80 | typedef void (*EventCallback_t)(void); |
Rohit Grover |
116:ca826083980e | 81 | typedef void (*ConnectionEventCallback_t)(Handle_t, const ConnectionParams_t *); |
Rohit Grover |
116:ca826083980e | 82 | typedef void (*DisconnectionEventCallback_t)(Handle_t, DisconnectionReason_t); |
Rohit Grover |
106:a20be740075d | 83 | |
Rohit Grover |
106:a20be740075d | 84 | /* Event callback handlers */ |
Rohit Grover |
106:a20be740075d | 85 | void setOnTimeout(EventCallback_t callback) { |
Rohit Grover |
106:a20be740075d | 86 | onTimeout = callback; |
Rohit Grover |
106:a20be740075d | 87 | } |
Rohit Grover |
116:ca826083980e | 88 | void setOnConnection(ConnectionEventCallback_t callback) { |
Rohit Grover |
106:a20be740075d | 89 | onConnection = callback; |
Rohit Grover |
106:a20be740075d | 90 | } |
Rohit Grover |
116:ca826083980e | 91 | void setOnDisconnection(DisconnectionEventCallback_t callback) { |
Rohit Grover |
106:a20be740075d | 92 | onDisconnection = callback; |
Rohit Grover |
106:a20be740075d | 93 | } |
Rohit Grover |
106:a20be740075d | 94 | |
Rohit Grover |
116:ca826083980e | 95 | void processConnectionEvent(Handle_t handle, const ConnectionParams_t *params) { |
Rohit Grover |
116:ca826083980e | 96 | state.connected = 1; |
Rohit Grover |
116:ca826083980e | 97 | if (onConnection) { |
Rohit Grover |
116:ca826083980e | 98 | onConnection(handle, params); |
Rohit Grover |
116:ca826083980e | 99 | } |
Rohit Grover |
116:ca826083980e | 100 | } |
Rohit Grover |
116:ca826083980e | 101 | |
Rohit Grover |
116:ca826083980e | 102 | void processDisconnectionEvent(Handle_t handle, DisconnectionReason_t reason) { |
Rohit Grover |
116:ca826083980e | 103 | state.connected = 0; |
Rohit Grover |
116:ca826083980e | 104 | if (onDisconnection) { |
Rohit Grover |
116:ca826083980e | 105 | onDisconnection(handle, reason); |
Rohit Grover |
106:a20be740075d | 106 | } |
Rohit Grover |
106:a20be740075d | 107 | } |
Rohit Grover |
106:a20be740075d | 108 | |
Rohit Grover |
106:a20be740075d | 109 | void processEvent(GapEvents::gapEvent_e type) { |
Rohit Grover |
106:a20be740075d | 110 | switch (type) { |
Rohit Grover |
106:a20be740075d | 111 | case GapEvents::GAP_EVENT_TIMEOUT: |
Rohit Grover |
106:a20be740075d | 112 | state.advertising = 0; |
Rohit Grover |
106:a20be740075d | 113 | if (onTimeout) { |
Rohit Grover |
106:a20be740075d | 114 | onTimeout(); |
Rohit Grover |
106:a20be740075d | 115 | } |
Rohit Grover |
106:a20be740075d | 116 | break; |
Rohit Grover |
106:a20be740075d | 117 | } |
Rohit Grover |
106:a20be740075d | 118 | } |
Rohit Grover |
106:a20be740075d | 119 | |
Rohit Grover |
106:a20be740075d | 120 | GapState_t getState(void) const { |
Rohit Grover |
106:a20be740075d | 121 | return state; |
Rohit Grover |
106:a20be740075d | 122 | } |
Rohit Grover |
106:a20be740075d | 123 | |
Rohit Grover |
106:a20be740075d | 124 | protected: |
Rohit Grover |
106:a20be740075d | 125 | Gap() : state(), onTimeout(NULL), onConnection(NULL), onDisconnection(NULL) { |
Rohit Grover |
106:a20be740075d | 126 | /* empty */ |
Rohit Grover |
106:a20be740075d | 127 | } |
Rohit Grover |
106:a20be740075d | 128 | |
Rohit Grover |
106:a20be740075d | 129 | protected: |
Rohit Grover |
106:a20be740075d | 130 | GapState_t state; |
Rohit Grover |
106:a20be740075d | 131 | |
Rohit Grover |
106:a20be740075d | 132 | private: |
Rohit Grover |
116:ca826083980e | 133 | EventCallback_t onTimeout; |
Rohit Grover |
116:ca826083980e | 134 | ConnectionEventCallback_t onConnection; |
Rohit Grover |
116:ca826083980e | 135 | DisconnectionEventCallback_t onDisconnection; |
Rohit Grover |
106:a20be740075d | 136 | }; |
Rohit Grover |
106:a20be740075d | 137 | |
Rohit Grover |
106:a20be740075d | 138 | #endif // ifndef __GAP_H__ |