Lightly modified version of the BLE stack, that doesn't bring up a DFUService by default... as we have our own.
Fork of BLE_API by
public/GattAttribute.h@403:f24e0ea73138, 2015-05-21 (annotated)
- Committer:
- finneyj
- Date:
- Thu May 21 09:34:46 2015 +0000
- Revision:
- 403:f24e0ea73138
- Parent:
- 304:30618b2c9808
- Child:
- 344:241987ac6b8b
Disabled autogenerated DFU Service
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
rgrover1 | 260:ea7f9f14cc15 | 1 | /* mbed Microcontroller Library |
rgrover1 | 260:ea7f9f14cc15 | 2 | * Copyright (c) 2006-2013 ARM Limited |
rgrover1 | 260:ea7f9f14cc15 | 3 | * |
rgrover1 | 260:ea7f9f14cc15 | 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
rgrover1 | 260:ea7f9f14cc15 | 5 | * you may not use this file except in compliance with the License. |
rgrover1 | 260:ea7f9f14cc15 | 6 | * You may obtain a copy of the License at |
rgrover1 | 260:ea7f9f14cc15 | 7 | * |
rgrover1 | 260:ea7f9f14cc15 | 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
rgrover1 | 260:ea7f9f14cc15 | 9 | * |
rgrover1 | 260:ea7f9f14cc15 | 10 | * Unless required by applicable law or agreed to in writing, software |
rgrover1 | 260:ea7f9f14cc15 | 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
rgrover1 | 260:ea7f9f14cc15 | 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
rgrover1 | 260:ea7f9f14cc15 | 13 | * See the License for the specific language governing permissions and |
rgrover1 | 260:ea7f9f14cc15 | 14 | * limitations under the License. |
rgrover1 | 260:ea7f9f14cc15 | 15 | */ |
rgrover1 | 260:ea7f9f14cc15 | 16 | |
rgrover1 | 260:ea7f9f14cc15 | 17 | #ifndef __GATT_ATTRIBUTE_H__ |
rgrover1 | 260:ea7f9f14cc15 | 18 | #define __GATT_ATTRIBUTE_H__ |
rgrover1 | 260:ea7f9f14cc15 | 19 | |
rgrover1 | 260:ea7f9f14cc15 | 20 | class GattAttribute { |
rgrover1 | 260:ea7f9f14cc15 | 21 | public: |
rgrover1 | 260:ea7f9f14cc15 | 22 | typedef uint16_t Handle_t; |
rgrover1 | 260:ea7f9f14cc15 | 23 | |
rgrover1 | 260:ea7f9f14cc15 | 24 | public: |
rgrover1 | 260:ea7f9f14cc15 | 25 | /** |
rgrover1 | 260:ea7f9f14cc15 | 26 | * @brief Creates a new GattAttribute using the specified |
rgrover1 | 260:ea7f9f14cc15 | 27 | * UUID, value length, and inital value |
rgrover1 | 260:ea7f9f14cc15 | 28 | * |
rgrover1 | 260:ea7f9f14cc15 | 29 | * @param[in] uuid |
rgrover1 | 260:ea7f9f14cc15 | 30 | * The UUID to use for this attribute |
rgrover1 | 260:ea7f9f14cc15 | 31 | * @param[in] valuePtr |
rgrover1 | 260:ea7f9f14cc15 | 32 | * The memory holding the initial value. |
rgrover1 | 260:ea7f9f14cc15 | 33 | * @param[in] initialLen |
rgrover1 | 260:ea7f9f14cc15 | 34 | * The min length in bytes of this characteristic's value |
rgrover1 | 260:ea7f9f14cc15 | 35 | * @param[in] maxLen |
rgrover1 | 260:ea7f9f14cc15 | 36 | * The max length in bytes of this characteristic's value |
rgrover1 | 260:ea7f9f14cc15 | 37 | * |
rgrover1 | 260:ea7f9f14cc15 | 38 | * @section EXAMPLE |
rgrover1 | 260:ea7f9f14cc15 | 39 | * |
rgrover1 | 260:ea7f9f14cc15 | 40 | * @code |
rgrover1 | 260:ea7f9f14cc15 | 41 | * |
rgrover1 | 260:ea7f9f14cc15 | 42 | * // UUID = 0x2A19, Min length 2, Max len = 2, Properties = write |
rgrover1 | 260:ea7f9f14cc15 | 43 | * GattCharacteristic c = GattCharacteristic( 0x2A19, 2, 2, BLE_GATT_CHAR_PROPERTIES_WRITE ); |
rgrover1 | 260:ea7f9f14cc15 | 44 | * |
rgrover1 | 260:ea7f9f14cc15 | 45 | * @endcode |
rgrover1 | 260:ea7f9f14cc15 | 46 | */ |
rgrover1 | 260:ea7f9f14cc15 | 47 | /**************************************************************************/ |
rgrover1 | 260:ea7f9f14cc15 | 48 | GattAttribute(const UUID &uuid, uint8_t *valuePtr = NULL, uint16_t initialLen = 0, uint16_t maxLen = 0) : |
rgrover1 | 304:30618b2c9808 | 49 | _uuid(uuid), _valuePtr(valuePtr), _initialLen(initialLen), _lenMax(maxLen), _len(initialLen), _handle() { |
rgrover1 | 260:ea7f9f14cc15 | 50 | /* empty */ |
rgrover1 | 260:ea7f9f14cc15 | 51 | } |
rgrover1 | 260:ea7f9f14cc15 | 52 | |
rgrover1 | 260:ea7f9f14cc15 | 53 | public: |
rgrover1 | 260:ea7f9f14cc15 | 54 | Handle_t getHandle(void) const {return _handle; } |
rgrover1 | 260:ea7f9f14cc15 | 55 | const UUID &getUUID(void) const {return _uuid; } |
rgrover1 | 304:30618b2c9808 | 56 | uint16_t getLength(void) const {return _len; } |
rgrover1 | 260:ea7f9f14cc15 | 57 | uint16_t getInitialLength(void) const {return _initialLen;} |
rgrover1 | 260:ea7f9f14cc15 | 58 | uint16_t getMaxLength(void) const {return _lenMax; } |
rgrover1 | 304:30618b2c9808 | 59 | uint16_t *getLengthPtr(void) {return &_len; } |
rgrover1 | 260:ea7f9f14cc15 | 60 | void setHandle(Handle_t id) {_handle = id; } |
rgrover1 | 260:ea7f9f14cc15 | 61 | uint8_t *getValuePtr(void) {return _valuePtr; } |
rgrover1 | 260:ea7f9f14cc15 | 62 | |
rgrover1 | 260:ea7f9f14cc15 | 63 | private: |
rgrover1 | 260:ea7f9f14cc15 | 64 | UUID _uuid; /* Characteristic UUID */ |
rgrover1 | 260:ea7f9f14cc15 | 65 | uint8_t *_valuePtr; |
rgrover1 | 260:ea7f9f14cc15 | 66 | uint16_t _initialLen; /* Initial length of the value */ |
rgrover1 | 260:ea7f9f14cc15 | 67 | uint16_t _lenMax; /* Maximum length of the value */ |
rgrover1 | 304:30618b2c9808 | 68 | uint16_t _len; /* Current length of the value */ |
rgrover1 | 260:ea7f9f14cc15 | 69 | Handle_t _handle; |
rgrover1 | 260:ea7f9f14cc15 | 70 | |
rgrover1 | 260:ea7f9f14cc15 | 71 | private: |
rgrover1 | 260:ea7f9f14cc15 | 72 | /* disallow copy and assignment */ |
rgrover1 | 260:ea7f9f14cc15 | 73 | GattAttribute(const GattAttribute &); |
rgrover1 | 260:ea7f9f14cc15 | 74 | GattAttribute& operator=(const GattAttribute &); |
rgrover1 | 260:ea7f9f14cc15 | 75 | }; |
rgrover1 | 260:ea7f9f14cc15 | 76 | |
rgrover1 | 260:ea7f9f14cc15 | 77 | #endif // ifndef __GATT_ATTRIBUTE_H__ |