BLE_API
public/DiscoveredCharacteristic.h@494:2e4af47b00a8, 2015-06-19 (annotated)
- Committer:
- rgrover1
- Date:
- Fri Jun 19 15:52:02 2015 +0100
- Revision:
- 494:2e4af47b00a8
- Parent:
- 493:23cc7ad1b99b
- Child:
- 497:926d444599e8
Synchronized with git rev 59ce342f
Author: Rohit Grover
remove an extraneous printf()
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
rgrover1 | 470:150c2363f776 | 1 | /* mbed Microcontroller Library |
rgrover1 | 470:150c2363f776 | 2 | * Copyright (c) 2006-2013 ARM Limited |
rgrover1 | 470:150c2363f776 | 3 | * |
rgrover1 | 470:150c2363f776 | 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
rgrover1 | 470:150c2363f776 | 5 | * you may not use this file except in compliance with the License. |
rgrover1 | 470:150c2363f776 | 6 | * You may obtain a copy of the License at |
rgrover1 | 470:150c2363f776 | 7 | * |
rgrover1 | 470:150c2363f776 | 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
rgrover1 | 470:150c2363f776 | 9 | * |
rgrover1 | 470:150c2363f776 | 10 | * Unless required by applicable law or agreed to in writing, software |
rgrover1 | 470:150c2363f776 | 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
rgrover1 | 470:150c2363f776 | 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
rgrover1 | 470:150c2363f776 | 13 | * See the License for the specific language governing permissions and |
rgrover1 | 470:150c2363f776 | 14 | * limitations under the License. |
rgrover1 | 470:150c2363f776 | 15 | */ |
rgrover1 | 470:150c2363f776 | 16 | |
rgrover1 | 470:150c2363f776 | 17 | #ifndef __DISCOVERED_CHARACTERISTIC_H__ |
rgrover1 | 470:150c2363f776 | 18 | #define __DISCOVERED_CHARACTERISTIC_H__ |
rgrover1 | 470:150c2363f776 | 19 | |
rgrover1 | 470:150c2363f776 | 20 | #include "UUID.h" |
rgrover1 | 470:150c2363f776 | 21 | #include "GattAttribute.h" |
rgrover1 | 493:23cc7ad1b99b | 22 | #include "GattClient.h" |
rgrover1 | 470:150c2363f776 | 23 | |
rgrover1 | 485:313482e1b568 | 24 | /** |
rgrover1 | 485:313482e1b568 | 25 | * Structure for holding information about the service and the characteristics |
rgrover1 | 485:313482e1b568 | 26 | * found during the discovery process. |
rgrover1 | 470:150c2363f776 | 27 | */ |
rgrover1 | 470:150c2363f776 | 28 | class DiscoveredCharacteristic { |
rgrover1 | 470:150c2363f776 | 29 | public: |
rgrover1 | 470:150c2363f776 | 30 | struct Properties_t { |
rgrover1 | 485:313482e1b568 | 31 | uint8_t _broadcast :1; /**< Broadcasting of the value permitted. */ |
rgrover1 | 485:313482e1b568 | 32 | uint8_t _read :1; /**< Reading the value permitted. */ |
rgrover1 | 485:313482e1b568 | 33 | uint8_t _writeWoResp :1; /**< Writing the value with Write Command permitted. */ |
rgrover1 | 485:313482e1b568 | 34 | uint8_t _write :1; /**< Writing the value with Write Request permitted. */ |
rgrover1 | 485:313482e1b568 | 35 | uint8_t _notify :1; /**< Notications of the value permitted. */ |
rgrover1 | 485:313482e1b568 | 36 | uint8_t _indicate :1; /**< Indications of the value permitted. */ |
rgrover1 | 485:313482e1b568 | 37 | uint8_t _authSignedWrite :1; /**< Writing the value with Signed Write Command permitted. */ |
rgrover1 | 470:150c2363f776 | 38 | |
rgrover1 | 485:313482e1b568 | 39 | public: |
rgrover1 | 485:313482e1b568 | 40 | bool broadcast(void) const {return _broadcast; } |
rgrover1 | 485:313482e1b568 | 41 | bool read(void) const {return _read; } |
rgrover1 | 485:313482e1b568 | 42 | bool writeWoResp(void) const {return _writeWoResp; } |
rgrover1 | 485:313482e1b568 | 43 | bool write(void) const {return _write; } |
rgrover1 | 485:313482e1b568 | 44 | bool notify(void) const {return _notify; } |
rgrover1 | 485:313482e1b568 | 45 | bool indicate(void) const {return _indicate; } |
rgrover1 | 485:313482e1b568 | 46 | bool authSignedWrite(void) const {return _authSignedWrite;} |
rgrover1 | 470:150c2363f776 | 47 | |
rgrover1 | 485:313482e1b568 | 48 | private: |
rgrover1 | 485:313482e1b568 | 49 | operator uint8_t() const; /* disallow implicit conversion into an integer */ |
rgrover1 | 485:313482e1b568 | 50 | operator unsigned() const; /* disallow implicit conversion into an integer */ |
rgrover1 | 470:150c2363f776 | 51 | }; |
rgrover1 | 470:150c2363f776 | 52 | |
rgrover1 | 470:150c2363f776 | 53 | struct ReadResponse_t { |
rgrover1 | 470:150c2363f776 | 54 | GattAttribute::Handle_t handle; /**< Attribute Handle. */ |
rgrover1 | 470:150c2363f776 | 55 | uint16_t offset; /**< Offset of the attribute data. */ |
rgrover1 | 470:150c2363f776 | 56 | uint16_t len; /**< Attribute data length. */ |
rgrover1 | 470:150c2363f776 | 57 | const uint8_t *data; /**< Attribute data, variable length. */ |
rgrover1 | 470:150c2363f776 | 58 | }; |
rgrover1 | 470:150c2363f776 | 59 | typedef void (*ReadCallback_t)(const ReadResponse_t *params); |
rgrover1 | 470:150c2363f776 | 60 | |
rgrover1 | 471:ed48300978d9 | 61 | /** |
rgrover1 | 471:ed48300978d9 | 62 | * Initiate (or continue) a read for the value attribute, optionally at a |
rgrover1 | 471:ed48300978d9 | 63 | * given offset. If the Characteristic or Descriptor to be read is longer |
rgrover1 | 471:ed48300978d9 | 64 | * than ATT_MTU - 1, this function must be called multiple times with |
rgrover1 | 471:ed48300978d9 | 65 | * appropriate offset to read the complete value. |
rgrover1 | 473:d10415d0a07d | 66 | * |
rgrover1 | 473:d10415d0a07d | 67 | * @return BLE_ERROR_NONE if a read has been initiated, else |
rgrover1 | 473:d10415d0a07d | 68 | * BLE_ERROR_INVALID_STATE if some internal state about the connection is invalid, or |
rgrover1 | 486:bcb77e15d152 | 69 | * BLE_STACK_BUSY if some client procedure already in progress, or |
rgrover1 | 486:bcb77e15d152 | 70 | * BLE_ERROR_OPERATION_NOT_PERMITTED due to the characteristic's properties. |
rgrover1 | 471:ed48300978d9 | 71 | */ |
rgrover1 | 488:bdba688a550f | 72 | ble_error_t read(uint16_t offset = 0) const { |
rgrover1 | 488:bdba688a550f | 73 | if (!props.read()) { |
rgrover1 | 488:bdba688a550f | 74 | return BLE_ERROR_OPERATION_NOT_PERMITTED; |
rgrover1 | 488:bdba688a550f | 75 | } |
rgrover1 | 488:bdba688a550f | 76 | |
rgrover1 | 493:23cc7ad1b99b | 77 | return gattc->read(connHandle, valueHandle, offset); |
rgrover1 | 488:bdba688a550f | 78 | } |
rgrover1 | 470:150c2363f776 | 79 | |
rgrover1 | 481:7ab4b9ef92cc | 80 | /** |
rgrover1 | 481:7ab4b9ef92cc | 81 | * Perform a write without response procedure. |
rgrover1 | 481:7ab4b9ef92cc | 82 | * |
rgrover1 | 481:7ab4b9ef92cc | 83 | * @param length |
rgrover1 | 481:7ab4b9ef92cc | 84 | * The amount of data being written. |
rgrover1 | 481:7ab4b9ef92cc | 85 | * @param value |
rgrover1 | 481:7ab4b9ef92cc | 86 | * The bytes being written. |
rgrover1 | 481:7ab4b9ef92cc | 87 | * |
rgrover1 | 481:7ab4b9ef92cc | 88 | * @note It is important to note that a write without response will |
rgrover1 | 481:7ab4b9ef92cc | 89 | * <b>consume an application buffer</b>, and will therefore |
rgrover1 | 481:7ab4b9ef92cc | 90 | * generate a onDataSent() callback when the packet has been |
rgrover1 | 481:7ab4b9ef92cc | 91 | * transmitted. The application should ensure that the buffer is |
rgrover1 | 481:7ab4b9ef92cc | 92 | * valid until the callback. |
rgrover1 | 481:7ab4b9ef92cc | 93 | * |
rgrover1 | 481:7ab4b9ef92cc | 94 | * @retval BLE_ERROR_NONE Successfully started the Write procedure, else |
rgrover1 | 481:7ab4b9ef92cc | 95 | * BLE_ERROR_INVALID_STATE if some internal state about the connection is invalid, or |
rgrover1 | 481:7ab4b9ef92cc | 96 | * BLE_STACK_BUSY if some client procedure already in progress, or |
rgrover1 | 486:bcb77e15d152 | 97 | * BLE_ERROR_NO_MEM if there are no available buffers left to process the request, or |
rgrover1 | 486:bcb77e15d152 | 98 | * BLE_ERROR_OPERATION_NOT_PERMITTED due to the characteristic's properties. |
rgrover1 | 481:7ab4b9ef92cc | 99 | */ |
rgrover1 | 488:bdba688a550f | 100 | ble_error_t writeWoResponse(uint16_t length, const uint8_t *value) const { |
rgrover1 | 488:bdba688a550f | 101 | if (!props.writeWoResp()) { |
rgrover1 | 488:bdba688a550f | 102 | return BLE_ERROR_OPERATION_NOT_PERMITTED; |
rgrover1 | 488:bdba688a550f | 103 | } |
rgrover1 | 488:bdba688a550f | 104 | |
rgrover1 | 488:bdba688a550f | 105 | return BLE_ERROR_NONE; |
rgrover1 | 488:bdba688a550f | 106 | // return (ble.getGattClient())->write(BLE_GATT_OP_WRITE_CMD, connHandle, length, value); |
rgrover1 | 488:bdba688a550f | 107 | } |
rgrover1 | 481:7ab4b9ef92cc | 108 | |
rgrover1 | 492:7e0bd56f4957 | 109 | static void setupOnDataRead(ReadCallback_t callback) { |
rgrover1 | 492:7e0bd56f4957 | 110 | onDataReadCallback = callback; |
rgrover1 | 492:7e0bd56f4957 | 111 | } |
rgrover1 | 492:7e0bd56f4957 | 112 | |
rgrover1 | 470:150c2363f776 | 113 | void setupLongUUID(UUID::LongUUIDBytes_t longUUID) { |
rgrover1 | 470:150c2363f776 | 114 | uuid.setupLong(longUUID); |
rgrover1 | 470:150c2363f776 | 115 | } |
rgrover1 | 470:150c2363f776 | 116 | |
rgrover1 | 470:150c2363f776 | 117 | public: |
rgrover1 | 470:150c2363f776 | 118 | UUID::ShortUUIDBytes_t getShortUUID(void) const { |
rgrover1 | 470:150c2363f776 | 119 | return uuid.getShortUUID(); |
rgrover1 | 470:150c2363f776 | 120 | } |
rgrover1 | 470:150c2363f776 | 121 | |
rgrover1 | 470:150c2363f776 | 122 | const Properties_t& getProperties(void) const { |
rgrover1 | 470:150c2363f776 | 123 | return props; |
rgrover1 | 470:150c2363f776 | 124 | } |
rgrover1 | 470:150c2363f776 | 125 | |
rgrover1 | 470:150c2363f776 | 126 | const GattAttribute::Handle_t& getDeclHandle(void) const { |
rgrover1 | 470:150c2363f776 | 127 | return declHandle; |
rgrover1 | 470:150c2363f776 | 128 | } |
rgrover1 | 470:150c2363f776 | 129 | const GattAttribute::Handle_t& getValueHandle(void) const { |
rgrover1 | 470:150c2363f776 | 130 | return valueHandle; |
rgrover1 | 470:150c2363f776 | 131 | } |
rgrover1 | 470:150c2363f776 | 132 | |
rgrover1 | 470:150c2363f776 | 133 | public: |
rgrover1 | 493:23cc7ad1b99b | 134 | DiscoveredCharacteristic() : gattc(NULL), |
rgrover1 | 493:23cc7ad1b99b | 135 | uuid(UUID::ShortUUIDBytes_t(0)), |
rgrover1 | 470:150c2363f776 | 136 | props(), |
rgrover1 | 470:150c2363f776 | 137 | declHandle(GattAttribute::INVALID_HANDLE), |
rgrover1 | 470:150c2363f776 | 138 | valueHandle(GattAttribute::INVALID_HANDLE) { |
rgrover1 | 470:150c2363f776 | 139 | /* empty */ |
rgrover1 | 470:150c2363f776 | 140 | } |
rgrover1 | 470:150c2363f776 | 141 | |
rgrover1 | 475:eb7fbcfb0e85 | 142 | protected: |
rgrover1 | 493:23cc7ad1b99b | 143 | GattClient *gattc; |
rgrover1 | 493:23cc7ad1b99b | 144 | |
rgrover1 | 493:23cc7ad1b99b | 145 | protected: |
rgrover1 | 470:150c2363f776 | 146 | UUID uuid; |
rgrover1 | 470:150c2363f776 | 147 | Properties_t props; |
rgrover1 | 470:150c2363f776 | 148 | GattAttribute::Handle_t declHandle; |
rgrover1 | 470:150c2363f776 | 149 | GattAttribute::Handle_t valueHandle; |
rgrover1 | 470:150c2363f776 | 150 | |
rgrover1 | 475:eb7fbcfb0e85 | 151 | Gap::Handle_t connHandle; |
rgrover1 | 475:eb7fbcfb0e85 | 152 | |
rgrover1 | 475:eb7fbcfb0e85 | 153 | public: |
rgrover1 | 470:150c2363f776 | 154 | static ReadCallback_t onDataReadCallback; |
rgrover1 | 470:150c2363f776 | 155 | }; |
rgrover1 | 470:150c2363f776 | 156 | |
rgrover1 | 470:150c2363f776 | 157 | #endif /*__DISCOVERED_CHARACTERISTIC_H__*/ |