My fork of X_NUCLEO_IDB0XA1

Fork of X_NUCLEO_IDB0XA1 by ST

Committer:
Andrea Palmieri
Date:
Tue Apr 05 11:23:33 2016 +0200
Revision:
220:e02936f0d4c7
Parent:
217:23870c55b07e
Child:
222:37a7e289ee3d
Fix setting of ADV and CONN intervals

- Introduce STACK MODE 3 allowing a central to advertize while a connection is ongoing
- Cosmetics

Signed-off-by: Andrea Palmieri <andrea.palmieri@st.com>

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Wolfgang Betz 130:770ce14d3d15 1 /* mbed Microcontroller Library
Wolfgang Betz 130:770ce14d3d15 2 * Copyright (c) 2006-2013 ARM Limited
Wolfgang Betz 130:770ce14d3d15 3 *
Wolfgang Betz 130:770ce14d3d15 4 * Licensed under the Apache License, Version 2.0 (the "License");
Wolfgang Betz 130:770ce14d3d15 5 * you may not use this file except in compliance with the License.
Wolfgang Betz 130:770ce14d3d15 6 * You may obtain a copy of the License at
Wolfgang Betz 130:770ce14d3d15 7 *
Wolfgang Betz 130:770ce14d3d15 8 * http://www.apache.org/licenses/LICENSE-2.0
Wolfgang Betz 130:770ce14d3d15 9 *
Wolfgang Betz 130:770ce14d3d15 10 * Unless required by applicable law or agreed to in writing, software
Wolfgang Betz 130:770ce14d3d15 11 * distributed under the License is distributed on an "AS IS" BASIS,
Wolfgang Betz 130:770ce14d3d15 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
Wolfgang Betz 130:770ce14d3d15 13 * See the License for the specific language governing permissions and
Wolfgang Betz 130:770ce14d3d15 14 * limitations under the License.
Wolfgang Betz 130:770ce14d3d15 15 */
Wolfgang Betz 130:770ce14d3d15 16
Wolfgang Betz 130:770ce14d3d15 17 /**
Wolfgang Betz 130:770ce14d3d15 18 ******************************************************************************
Wolfgang Betz 130:770ce14d3d15 19 * @file BlueNRGGap.h
Wolfgang Betz 130:770ce14d3d15 20 * @author STMicroelectronics
Wolfgang Betz 130:770ce14d3d15 21 * @brief Header file for BlueNRG BLE_API Gap Class
Wolfgang Betz 130:770ce14d3d15 22 ******************************************************************************
Wolfgang Betz 130:770ce14d3d15 23 * @copy
Wolfgang Betz 130:770ce14d3d15 24 *
Wolfgang Betz 130:770ce14d3d15 25 * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
Wolfgang Betz 130:770ce14d3d15 26 * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE
Wolfgang Betz 130:770ce14d3d15 27 * TIME. AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY
Wolfgang Betz 130:770ce14d3d15 28 * DIRECT, INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING
Wolfgang Betz 130:770ce14d3d15 29 * FROM THE CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE
Wolfgang Betz 130:770ce14d3d15 30 * CODING INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
Wolfgang Betz 130:770ce14d3d15 31 *
Wolfgang Betz 130:770ce14d3d15 32 * <h2><center>&copy; COPYRIGHT 2013 STMicroelectronics</center></h2>
Wolfgang Betz 130:770ce14d3d15 33 */
Wolfgang Betz 130:770ce14d3d15 34
Wolfgang Betz 130:770ce14d3d15 35 #ifndef __BLUENRG_GAP_H__
Wolfgang Betz 130:770ce14d3d15 36 #define __BLUENRG_GAP_H__
Wolfgang Betz 130:770ce14d3d15 37
Wolfgang Betz 144:bdf5e8432131 38 #include "mbed-drivers/mbed.h"
Wolfgang Betz 131:e09947216ccb 39 #include "ble/blecommon.h"
Wolfgang Betz 130:770ce14d3d15 40 #include "btle.h"
Wolfgang Betz 131:e09947216ccb 41 #include "ble/GapAdvertisingParams.h"
Wolfgang Betz 131:e09947216ccb 42 #include "ble/GapAdvertisingData.h"
Wolfgang Betz 132:51056160fa4a 43 #include "ble/Gap.h"
Wolfgang Betz 130:770ce14d3d15 44
Wolfgang Betz 130:770ce14d3d15 45 #define BLE_CONN_HANDLE_INVALID 0x0
Wolfgang Betz 130:770ce14d3d15 46 #define BDADDR_SIZE 6
Wolfgang Betz 130:770ce14d3d15 47
Wolfgang Betz 130:770ce14d3d15 48 #define BLUENRG_GAP_ADV_INTERVAL_MIN (0)
Wolfgang Betz 130:770ce14d3d15 49 #define BLUENRG_GAP_ADV_INTERVAL_MAX (0)
Wolfgang Betz 130:770ce14d3d15 50 #define BLE_GAP_ADV_NONCON_INTERVAL_MIN (0)
Wolfgang Betz 130:770ce14d3d15 51
Wolfgang Betz 132:51056160fa4a 52 // Scanning and Connection Params used by Central for creating connection
Andrea Palmieri 217:23870c55b07e 53 #define GAP_OBSERVATION_PROC (0x80)
Wolfgang Betz 132:51056160fa4a 54
Andrea Palmieri 220:e02936f0d4c7 55 #define SCAN_P (0x0010)
Andrea Palmieri 220:e02936f0d4c7 56 #define SCAN_L (0x0010)
Andrea Palmieri 220:e02936f0d4c7 57 #define SUPERV_TIMEOUT (0xC80)
Wolfgang Betz 132:51056160fa4a 58 #define CONN_P(x) ((int)((x)/1.25f))
Wolfgang Betz 132:51056160fa4a 59 #define CONN_L(x) ((int)((x)/0.625f))
Andrea Palmieri 220:e02936f0d4c7 60 #define CONN_P1 ((int)(_advParams.getInterval()+5)/1.25f)//(0x4C)//(0x6C)
Andrea Palmieri 220:e02936f0d4c7 61 #define CONN_P2 ((int)(_advParams.getInterval()+5)/1.25f)//(0x4C)//(0x6C)
Andrea Palmieri 220:e02936f0d4c7 62 #define CONN_L1 (0x000C)
Andrea Palmieri 220:e02936f0d4c7 63 #define CONN_L2 (0x000C)
Andrea Palmieri 189:30fa96fa8ec4 64
Andrea Palmieri 189:30fa96fa8ec4 65 #define UUID_BUFFER_SIZE 17 //Either 8*2(16-bit UUIDs) or 4*4(32-bit UUIDs) or 1*16(128-bit UUIDs) +1
Wolfgang Betz 130:770ce14d3d15 66 #define ADV_DATA_MAX_SIZE 31
Wolfgang Betz 130:770ce14d3d15 67
Wolfgang Betz 130:770ce14d3d15 68 /**************************************************************************/
Wolfgang Betz 130:770ce14d3d15 69 /*!
Wolfgang Betz 130:770ce14d3d15 70 \brief
Wolfgang Betz 130:770ce14d3d15 71
Wolfgang Betz 130:770ce14d3d15 72 */
Wolfgang Betz 130:770ce14d3d15 73 /**************************************************************************/
Wolfgang Betz 130:770ce14d3d15 74 class BlueNRGGap : public Gap
Wolfgang Betz 130:770ce14d3d15 75 {
Wolfgang Betz 130:770ce14d3d15 76 public:
Wolfgang Betz 130:770ce14d3d15 77 static BlueNRGGap &getInstance() {
Wolfgang Betz 130:770ce14d3d15 78 static BlueNRGGap m_instance;
Wolfgang Betz 130:770ce14d3d15 79 return m_instance;
Wolfgang Betz 130:770ce14d3d15 80 }
Wolfgang Betz 130:770ce14d3d15 81
Wolfgang Betz 130:770ce14d3d15 82 // <<<ANDREA>>>
Wolfgang Betz 132:51056160fa4a 83 /*
Wolfgang Betz 130:770ce14d3d15 84 enum AdvType_t {
Wolfgang Betz 130:770ce14d3d15 85 ADV_IND = GapAdvertisingParams::ADV_CONNECTABLE_UNDIRECTED,//Gap::ADV_IND,
Wolfgang Betz 130:770ce14d3d15 86 ADV_DIRECT_IND = GapAdvertisingParams::ADV_CONNECTABLE_DIRECTED,//Gap::ADV_DIRECT_IND,
Wolfgang Betz 130:770ce14d3d15 87 ADV_SCAN_IND = GapAdvertisingParams::ADV_SCANNABLE_UNDIRECTED,//Gap::ADV_SCAN_IND,
Wolfgang Betz 130:770ce14d3d15 88 ADV_NONCONN_IND = GapAdvertisingParams::ADV_NON_CONNECTABLE_UNDIRECTED//Gap::ADV_NONCONN_IND
Wolfgang Betz 130:770ce14d3d15 89 };
Wolfgang Betz 132:51056160fa4a 90 */
Wolfgang Betz 132:51056160fa4a 91 enum Reason_t {
Wolfgang Betz 132:51056160fa4a 92 DEVICE_FOUND,
Wolfgang Betz 132:51056160fa4a 93 DISCOVERY_COMPLETE
Wolfgang Betz 132:51056160fa4a 94 };
Wolfgang Betz 130:770ce14d3d15 95
Wolfgang Betz 130:770ce14d3d15 96 /* Functions that must be implemented from Gap */
Wolfgang Betz 130:770ce14d3d15 97 virtual ble_error_t setAddress(addr_type_t type, const Address_t address);
Wolfgang Betz 130:770ce14d3d15 98 virtual ble_error_t getAddress(addr_type_t *typeP, Address_t address);
Wolfgang Betz 130:770ce14d3d15 99 virtual ble_error_t setAdvertisingData(const GapAdvertisingData &, const GapAdvertisingData &);
Wolfgang Betz 130:770ce14d3d15 100 virtual ble_error_t startAdvertising(const GapAdvertisingParams &);
Wolfgang Betz 130:770ce14d3d15 101 virtual ble_error_t stopAdvertising(void);
Wolfgang Betz 130:770ce14d3d15 102 virtual ble_error_t stopScan();
Wolfgang Betz 130:770ce14d3d15 103 virtual uint16_t getMinAdvertisingInterval(void) const;
Wolfgang Betz 130:770ce14d3d15 104 virtual uint16_t getMinNonConnectableAdvertisingInterval(void) const;
Wolfgang Betz 130:770ce14d3d15 105 virtual uint16_t getMaxAdvertisingInterval(void) const;
Wolfgang Betz 130:770ce14d3d15 106 virtual ble_error_t disconnect(DisconnectionReason_t reason);
Wolfgang Betz 130:770ce14d3d15 107 virtual ble_error_t disconnect(Handle_t connectionHandle, DisconnectionReason_t reason);
Wolfgang Betz 130:770ce14d3d15 108 virtual ble_error_t getPreferredConnectionParams(ConnectionParams_t *params);
Wolfgang Betz 130:770ce14d3d15 109 virtual ble_error_t setPreferredConnectionParams(const ConnectionParams_t *params);
Wolfgang Betz 130:770ce14d3d15 110 virtual ble_error_t updateConnectionParams(Handle_t handle, const ConnectionParams_t *params);
Wolfgang Betz 130:770ce14d3d15 111
Wolfgang Betz 130:770ce14d3d15 112 virtual ble_error_t setDeviceName(const uint8_t *deviceName);
Wolfgang Betz 130:770ce14d3d15 113 virtual ble_error_t getDeviceName(uint8_t *deviceName, unsigned *lengthP);
Wolfgang Betz 130:770ce14d3d15 114 virtual ble_error_t setAppearance(GapAdvertisingData::Appearance appearance);
Wolfgang Betz 130:770ce14d3d15 115 virtual ble_error_t getAppearance(GapAdvertisingData::Appearance *appearanceP);
Wolfgang Betz 130:770ce14d3d15 116
Wolfgang Betz 130:770ce14d3d15 117 virtual ble_error_t setTxPower(int8_t txPower);
Wolfgang Betz 130:770ce14d3d15 118 virtual void getPermittedTxPowerValues(const int8_t **, size_t *);
Wolfgang Betz 130:770ce14d3d15 119 // <<<ANDREA>>>
Wolfgang Betz 132:51056160fa4a 120 virtual ble_error_t connect(const Address_t peerAddr,
Wolfgang Betz 132:51056160fa4a 121 Gap::AddressType_t peerAddrType,
Wolfgang Betz 132:51056160fa4a 122 const ConnectionParams_t *connectionParams,
Wolfgang Betz 132:51056160fa4a 123 const GapScanningParams *scanParams);
Wolfgang Betz 130:770ce14d3d15 124
Wolfgang Betz 130:770ce14d3d15 125
Wolfgang Betz 132:51056160fa4a 126 void Discovery_CB(Reason_t reason,
Wolfgang Betz 132:51056160fa4a 127 uint8_t adv_type,
Wolfgang Betz 132:51056160fa4a 128 uint8_t *addr_type,
Wolfgang Betz 132:51056160fa4a 129 uint8_t *addr,
Wolfgang Betz 132:51056160fa4a 130 uint8_t *data_length,
Wolfgang Betz 132:51056160fa4a 131 uint8_t *data,
Wolfgang Betz 132:51056160fa4a 132 uint8_t *RSSI);
Wolfgang Betz 165:3576598c0889 133 ble_error_t createConnection(void);
Wolfgang Betz 165:3576598c0889 134
Wolfgang Betz 130:770ce14d3d15 135 void setConnectionHandle(uint16_t con_handle);
Wolfgang Betz 130:770ce14d3d15 136 uint16_t getConnectionHandle(void);
Wolfgang Betz 130:770ce14d3d15 137
Wolfgang Betz 130:770ce14d3d15 138 bool getIsSetAddress();
Wolfgang Betz 130:770ce14d3d15 139
Wolfgang Betz 130:770ce14d3d15 140 Timeout getAdvTimeout(void) const {
Wolfgang Betz 130:770ce14d3d15 141 return advTimeout;
Wolfgang Betz 130:770ce14d3d15 142 }
Wolfgang Betz 130:770ce14d3d15 143 uint8_t getAdvToFlag(void) {
Wolfgang Betz 130:770ce14d3d15 144 return AdvToFlag;
Wolfgang Betz 130:770ce14d3d15 145 }
Wolfgang Betz 130:770ce14d3d15 146 void setAdvToFlag(void);
Wolfgang Betz 130:770ce14d3d15 147
Wolfgang Betz 130:770ce14d3d15 148 void Process(void);
Wolfgang Betz 130:770ce14d3d15 149
Andrea Palmieri 160:174387d53809 150 GapScanningParams* getScanningParams(void);
Andrea Palmieri 160:174387d53809 151
Wolfgang Betz 130:770ce14d3d15 152 virtual ble_error_t startRadioScan(const GapScanningParams &scanningParams);
Wolfgang Betz 130:770ce14d3d15 153
Wolfgang Betz 130:770ce14d3d15 154 private:
Wolfgang Betz 130:770ce14d3d15 155 uint16_t m_connectionHandle;
Wolfgang Betz 132:51056160fa4a 156 AddressType_t addr_type;
Wolfgang Betz 132:51056160fa4a 157 Address_t _peerAddr;
Wolfgang Betz 130:770ce14d3d15 158 uint8_t bdaddr[BDADDR_SIZE];
Wolfgang Betz 132:51056160fa4a 159 bool _scanning;
Wolfgang Betz 132:51056160fa4a 160 bool _connecting;
Wolfgang Betz 130:770ce14d3d15 161 bool isSetAddress;
Wolfgang Betz 130:770ce14d3d15 162 uint8_t *DeviceName;
Wolfgang Betz 130:770ce14d3d15 163 uint8_t deviceAppearance[2];
Wolfgang Betz 130:770ce14d3d15 164
Wolfgang Betz 130:770ce14d3d15 165 uint8_t *local_name;
Wolfgang Betz 130:770ce14d3d15 166 uint8_t local_name_length;
Wolfgang Betz 130:770ce14d3d15 167
Wolfgang Betz 130:770ce14d3d15 168 uint8_t servUuidlength;
Wolfgang Betz 130:770ce14d3d15 169 uint8_t servUuidData[UUID_BUFFER_SIZE];
Wolfgang Betz 130:770ce14d3d15 170
Wolfgang Betz 130:770ce14d3d15 171 uint8_t AdvLen;
Wolfgang Betz 130:770ce14d3d15 172 uint8_t AdvData[ADV_DATA_MAX_SIZE];
Wolfgang Betz 130:770ce14d3d15 173
Wolfgang Betz 130:770ce14d3d15 174 Timeout advTimeout;
Wolfgang Betz 130:770ce14d3d15 175 bool AdvToFlag;
Wolfgang Betz 130:770ce14d3d15 176
Wolfgang Betz 130:770ce14d3d15 177 BlueNRGGap() {
Wolfgang Betz 130:770ce14d3d15 178 m_connectionHandle = BLE_CONN_HANDLE_INVALID;
Andrea Palmieri 210:08c4c85ca679 179 addr_type = BLEProtocol::AddressType::PUBLIC;
Wolfgang Betz 130:770ce14d3d15 180 isSetAddress = false;
Wolfgang Betz 130:770ce14d3d15 181 DeviceName = NULL;
Wolfgang Betz 130:770ce14d3d15 182 }
Wolfgang Betz 130:770ce14d3d15 183
Wolfgang Betz 130:770ce14d3d15 184 BlueNRGGap(BlueNRGGap const &);
Wolfgang Betz 130:770ce14d3d15 185 void operator=(BlueNRGGap const &);
Wolfgang Betz 130:770ce14d3d15 186 };
Wolfgang Betz 130:770ce14d3d15 187
Wolfgang Betz 130:770ce14d3d15 188 #endif // ifndef __BLUENRG_GAP_H__