prova

Fork of BLE_API by Bluetooth Low Energy

Committer:
rgrover1
Date:
Thu Nov 26 14:51:22 2015 +0000
Revision:
990:53ac0ac3aa39
Parent:
986:5292837107a3
Child:
992:ca834f7ae8ed
Synchronized with git rev f8ab6daf
Author: Rohit Grover
Merge pull request #119 from LiyouZhou/guard_dfu_files

Guard nordic specific implementation with #ifdef TARGET_NRF51822

Who changed what in which revision?

UserRevisionLine numberNew contents of line
rgrover1 712:b04b5db36865 1 /* mbed Microcontroller Library
rgrover1 712:b04b5db36865 2 * Copyright (c) 2006-2013 ARM Limited
rgrover1 712:b04b5db36865 3 *
rgrover1 712:b04b5db36865 4 * Licensed under the Apache License, Version 2.0 (the "License");
rgrover1 712:b04b5db36865 5 * you may not use this file except in compliance with the License.
rgrover1 712:b04b5db36865 6 * You may obtain a copy of the License at
rgrover1 712:b04b5db36865 7 *
rgrover1 712:b04b5db36865 8 * http://www.apache.org/licenses/LICENSE-2.0
rgrover1 712:b04b5db36865 9 *
rgrover1 712:b04b5db36865 10 * Unless required by applicable law or agreed to in writing, software
rgrover1 712:b04b5db36865 11 * distributed under the License is distributed on an "AS IS" BASIS,
rgrover1 712:b04b5db36865 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
rgrover1 712:b04b5db36865 13 * See the License for the specific language governing permissions and
rgrover1 712:b04b5db36865 14 * limitations under the License.
rgrover1 712:b04b5db36865 15 */
rgrover1 712:b04b5db36865 16
rgrover1 712:b04b5db36865 17 #include "ble/DiscoveredCharacteristic.h"
rgrover1 712:b04b5db36865 18 #include "ble/GattClient.h"
rgrover1 712:b04b5db36865 19
rgrover1 712:b04b5db36865 20 ble_error_t
rgrover1 712:b04b5db36865 21 DiscoveredCharacteristic::read(uint16_t offset) const
rgrover1 712:b04b5db36865 22 {
rgrover1 712:b04b5db36865 23 if (!props.read()) {
rgrover1 712:b04b5db36865 24 return BLE_ERROR_OPERATION_NOT_PERMITTED;
rgrover1 712:b04b5db36865 25 }
rgrover1 712:b04b5db36865 26
rgrover1 712:b04b5db36865 27 if (!gattc) {
rgrover1 712:b04b5db36865 28 return BLE_ERROR_INVALID_STATE;
rgrover1 712:b04b5db36865 29 }
rgrover1 712:b04b5db36865 30
rgrover1 712:b04b5db36865 31 return gattc->read(connHandle, valueHandle, offset);
rgrover1 712:b04b5db36865 32 }
rgrover1 712:b04b5db36865 33
rgrover1 990:53ac0ac3aa39 34 struct OneShotReadCallback {
rgrover1 990:53ac0ac3aa39 35 static void launch(GattClient* client, Gap::Handle_t connHandle,
rgrover1 990:53ac0ac3aa39 36 GattAttribute::Handle_t handle, const GattClient::ReadCallback_t& cb) {
rgrover1 990:53ac0ac3aa39 37 OneShotReadCallback* oneShot = new OneShotReadCallback(client, connHandle, handle, cb);
rgrover1 990:53ac0ac3aa39 38 oneShot->attach();
rgrover1 990:53ac0ac3aa39 39 // delete will be made when this callback is called
rgrover1 990:53ac0ac3aa39 40 }
rgrover1 990:53ac0ac3aa39 41
rgrover1 990:53ac0ac3aa39 42 private:
rgrover1 990:53ac0ac3aa39 43 OneShotReadCallback(GattClient* client, Gap::Handle_t connHandle,
rgrover1 990:53ac0ac3aa39 44 GattAttribute::Handle_t handle, const GattClient::ReadCallback_t& cb) :
rgrover1 990:53ac0ac3aa39 45 _client(client),
rgrover1 990:53ac0ac3aa39 46 _connHandle(connHandle),
rgrover1 990:53ac0ac3aa39 47 _handle(handle),
rgrover1 990:53ac0ac3aa39 48 _callback(cb) { }
rgrover1 990:53ac0ac3aa39 49
rgrover1 990:53ac0ac3aa39 50 void attach() {
rgrover1 990:53ac0ac3aa39 51 _client->onDataRead(makeFunctionPointer(this, &OneShotReadCallback::call));
rgrover1 990:53ac0ac3aa39 52 }
rgrover1 990:53ac0ac3aa39 53
rgrover1 990:53ac0ac3aa39 54 void call(const GattReadCallbackParams* params) {
rgrover1 990:53ac0ac3aa39 55 // verifiy that it is the right characteristic on the right connection
rgrover1 990:53ac0ac3aa39 56 if (params->connHandle == _connHandle && params->handle == _handle) {
rgrover1 990:53ac0ac3aa39 57 _callback(params);
rgrover1 990:53ac0ac3aa39 58 _client->onDataRead().detach(makeFunctionPointer(this, &OneShotReadCallback::call));
rgrover1 990:53ac0ac3aa39 59 delete this;
rgrover1 990:53ac0ac3aa39 60 }
rgrover1 990:53ac0ac3aa39 61 }
rgrover1 990:53ac0ac3aa39 62
rgrover1 990:53ac0ac3aa39 63 GattClient* _client;
rgrover1 990:53ac0ac3aa39 64 Gap::Handle_t _connHandle;
rgrover1 990:53ac0ac3aa39 65 GattAttribute::Handle_t _handle;
rgrover1 990:53ac0ac3aa39 66 GattClient::ReadCallback_t _callback;
rgrover1 990:53ac0ac3aa39 67 };
rgrover1 990:53ac0ac3aa39 68
rgrover1 990:53ac0ac3aa39 69 ble_error_t DiscoveredCharacteristic::read(uint16_t offset, const GattClient::ReadCallback_t& onRead) const {
rgrover1 990:53ac0ac3aa39 70 ble_error_t error = read(offset);
rgrover1 990:53ac0ac3aa39 71 if (error) {
rgrover1 990:53ac0ac3aa39 72 return error;
rgrover1 990:53ac0ac3aa39 73 }
rgrover1 990:53ac0ac3aa39 74
rgrover1 990:53ac0ac3aa39 75 OneShotReadCallback::launch(gattc, connHandle, valueHandle, onRead);
rgrover1 990:53ac0ac3aa39 76
rgrover1 990:53ac0ac3aa39 77 return error;
rgrover1 990:53ac0ac3aa39 78 }
rgrover1 990:53ac0ac3aa39 79
rgrover1 712:b04b5db36865 80 ble_error_t
rgrover1 712:b04b5db36865 81 DiscoveredCharacteristic::write(uint16_t length, const uint8_t *value) const
rgrover1 712:b04b5db36865 82 {
rgrover1 712:b04b5db36865 83 if (!props.write()) {
rgrover1 712:b04b5db36865 84 return BLE_ERROR_OPERATION_NOT_PERMITTED;
rgrover1 712:b04b5db36865 85 }
rgrover1 712:b04b5db36865 86
rgrover1 712:b04b5db36865 87 if (!gattc) {
rgrover1 712:b04b5db36865 88 return BLE_ERROR_INVALID_STATE;
rgrover1 712:b04b5db36865 89 }
rgrover1 712:b04b5db36865 90
rgrover1 712:b04b5db36865 91 return gattc->write(GattClient::GATT_OP_WRITE_REQ, connHandle, valueHandle, length, value);
rgrover1 712:b04b5db36865 92 }
rgrover1 712:b04b5db36865 93
rgrover1 712:b04b5db36865 94 ble_error_t
rgrover1 712:b04b5db36865 95 DiscoveredCharacteristic::writeWoResponse(uint16_t length, const uint8_t *value) const
rgrover1 712:b04b5db36865 96 {
rgrover1 712:b04b5db36865 97 if (!props.writeWoResp()) {
rgrover1 712:b04b5db36865 98 return BLE_ERROR_OPERATION_NOT_PERMITTED;
rgrover1 712:b04b5db36865 99 }
rgrover1 712:b04b5db36865 100
rgrover1 712:b04b5db36865 101 if (!gattc) {
rgrover1 712:b04b5db36865 102 return BLE_ERROR_INVALID_STATE;
rgrover1 712:b04b5db36865 103 }
rgrover1 712:b04b5db36865 104
rgrover1 712:b04b5db36865 105 return gattc->write(GattClient::GATT_OP_WRITE_CMD, connHandle, valueHandle, length, value);
rgrover1 712:b04b5db36865 106 }
rgrover1 712:b04b5db36865 107
rgrover1 990:53ac0ac3aa39 108 struct OneShotWriteCallback {
rgrover1 990:53ac0ac3aa39 109 static void launch(GattClient* client, Gap::Handle_t connHandle,
rgrover1 990:53ac0ac3aa39 110 GattAttribute::Handle_t handle, const GattClient::WriteCallback_t& cb) {
rgrover1 990:53ac0ac3aa39 111 OneShotWriteCallback* oneShot = new OneShotWriteCallback(client, connHandle, handle, cb);
rgrover1 990:53ac0ac3aa39 112 oneShot->attach();
rgrover1 990:53ac0ac3aa39 113 // delete will be made when this callback is called
rgrover1 990:53ac0ac3aa39 114 }
rgrover1 990:53ac0ac3aa39 115
rgrover1 990:53ac0ac3aa39 116 private:
rgrover1 990:53ac0ac3aa39 117 OneShotWriteCallback(GattClient* client, Gap::Handle_t connHandle,
rgrover1 990:53ac0ac3aa39 118 GattAttribute::Handle_t handle, const GattClient::WriteCallback_t& cb) :
rgrover1 990:53ac0ac3aa39 119 _client(client),
rgrover1 990:53ac0ac3aa39 120 _connHandle(connHandle),
rgrover1 990:53ac0ac3aa39 121 _handle(handle),
rgrover1 990:53ac0ac3aa39 122 _callback(cb) { }
rgrover1 990:53ac0ac3aa39 123
rgrover1 990:53ac0ac3aa39 124 void attach() {
rgrover1 990:53ac0ac3aa39 125 _client->onDataWritten(makeFunctionPointer(this, &OneShotWriteCallback::call));
rgrover1 990:53ac0ac3aa39 126 }
rgrover1 990:53ac0ac3aa39 127
rgrover1 990:53ac0ac3aa39 128 void call(const GattWriteCallbackParams* params) {
rgrover1 990:53ac0ac3aa39 129 // verifiy that it is the right characteristic on the right connection
rgrover1 990:53ac0ac3aa39 130 if (params->connHandle == _connHandle && params->handle == _handle) {
rgrover1 990:53ac0ac3aa39 131 _callback(params);
rgrover1 990:53ac0ac3aa39 132 _client->onDataWritten().detach(makeFunctionPointer(this, &OneShotWriteCallback::call));
rgrover1 990:53ac0ac3aa39 133 delete this;
rgrover1 990:53ac0ac3aa39 134 }
rgrover1 990:53ac0ac3aa39 135 }
rgrover1 990:53ac0ac3aa39 136
rgrover1 990:53ac0ac3aa39 137 GattClient* _client;
rgrover1 990:53ac0ac3aa39 138 Gap::Handle_t _connHandle;
rgrover1 990:53ac0ac3aa39 139 GattAttribute::Handle_t _handle;
rgrover1 990:53ac0ac3aa39 140 GattClient::WriteCallback_t _callback;
rgrover1 990:53ac0ac3aa39 141 };
rgrover1 990:53ac0ac3aa39 142
rgrover1 990:53ac0ac3aa39 143 ble_error_t DiscoveredCharacteristic::write(uint16_t length, const uint8_t *value, const GattClient::WriteCallback_t& onRead) const {
rgrover1 990:53ac0ac3aa39 144 ble_error_t error = write(length, value);
rgrover1 990:53ac0ac3aa39 145 if (error) {
rgrover1 990:53ac0ac3aa39 146 return error;
rgrover1 990:53ac0ac3aa39 147 }
rgrover1 990:53ac0ac3aa39 148
rgrover1 990:53ac0ac3aa39 149 OneShotWriteCallback::launch(gattc, connHandle, valueHandle, onRead);
rgrover1 990:53ac0ac3aa39 150
rgrover1 990:53ac0ac3aa39 151 return error;
rgrover1 990:53ac0ac3aa39 152 }
rgrover1 990:53ac0ac3aa39 153
rgrover1 712:b04b5db36865 154 ble_error_t
rgrover1 712:b04b5db36865 155 DiscoveredCharacteristic::discoverDescriptors(DescriptorCallback_t callback, const UUID &matchingUUID) const
rgrover1 712:b04b5db36865 156 {
rgrover1 712:b04b5db36865 157 return BLE_ERROR_NOT_IMPLEMENTED; /* TODO: this needs to be filled in. */
rgrover1 712:b04b5db36865 158 }