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