project for nrf51822 qfab
Dependencies: eddystone_URL mbed
Fork of eddystone_URL by
BLE_API/public/GattCharacteristicWriteCBParams.h@0:76dfa9657d9d, 2014-11-12 (annotated)
- Committer:
- jksoft
- Date:
- Wed Nov 12 02:40:34 2014 +0000
- Revision:
- 0:76dfa9657d9d
????????
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
jksoft | 0:76dfa9657d9d | 1 | /* mbed Microcontroller Library |
jksoft | 0:76dfa9657d9d | 2 | * Copyright (c) 2006-2013 ARM Limited |
jksoft | 0:76dfa9657d9d | 3 | * |
jksoft | 0:76dfa9657d9d | 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
jksoft | 0:76dfa9657d9d | 5 | * you may not use this file except in compliance with the License. |
jksoft | 0:76dfa9657d9d | 6 | * You may obtain a copy of the License at |
jksoft | 0:76dfa9657d9d | 7 | * |
jksoft | 0:76dfa9657d9d | 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
jksoft | 0:76dfa9657d9d | 9 | * |
jksoft | 0:76dfa9657d9d | 10 | * Unless required by applicable law or agreed to in writing, software |
jksoft | 0:76dfa9657d9d | 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
jksoft | 0:76dfa9657d9d | 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
jksoft | 0:76dfa9657d9d | 13 | * See the License for the specific language governing permissions and |
jksoft | 0:76dfa9657d9d | 14 | * limitations under the License. |
jksoft | 0:76dfa9657d9d | 15 | */ |
jksoft | 0:76dfa9657d9d | 16 | |
jksoft | 0:76dfa9657d9d | 17 | #ifndef __GATT_CHARACTERISTIC_WRITE_CB_PARAMS_H__ |
jksoft | 0:76dfa9657d9d | 18 | #define __GATT_CHARACTERISTIC_WRITE_CB_PARAMS_H__ |
jksoft | 0:76dfa9657d9d | 19 | |
jksoft | 0:76dfa9657d9d | 20 | struct GattCharacteristicWriteCBParams { |
jksoft | 0:76dfa9657d9d | 21 | GattAttribute::Handle_t charHandle; |
jksoft | 0:76dfa9657d9d | 22 | enum Type { |
jksoft | 0:76dfa9657d9d | 23 | GATTS_CHAR_OP_INVALID = 0x00, /**< Invalid Operation. */ |
jksoft | 0:76dfa9657d9d | 24 | GATTS_CHAR_OP_WRITE_REQ = 0x01, /**< Write Request. */ |
jksoft | 0:76dfa9657d9d | 25 | GATTS_CHAR_OP_WRITE_CMD = 0x02, /**< Write Command. */ |
jksoft | 0:76dfa9657d9d | 26 | GATTS_CHAR_OP_SIGN_WRITE_CMD = 0x03, /**< Signed Write Command. */ |
jksoft | 0:76dfa9657d9d | 27 | GATTS_CHAR_OP_PREP_WRITE_REQ = 0x04, /**< Prepare Write Request. */ |
jksoft | 0:76dfa9657d9d | 28 | GATTS_CHAR_OP_EXEC_WRITE_REQ_CANCEL = 0x05, /**< Execute Write Request: Cancel all prepared writes. */ |
jksoft | 0:76dfa9657d9d | 29 | GATTS_CHAR_OP_EXEC_WRITE_REQ_NOW = 0x06, /**< Execute Write Request: Immediately execute all prepared writes. */ |
jksoft | 0:76dfa9657d9d | 30 | } op; /**< Type of write operation, */ |
jksoft | 0:76dfa9657d9d | 31 | uint16_t offset; /**< Offset for the write operation. */ |
jksoft | 0:76dfa9657d9d | 32 | uint16_t len; /**< Length of the incoming data. */ |
jksoft | 0:76dfa9657d9d | 33 | const uint8_t *data; /**< Incoming data, variable length. */ |
jksoft | 0:76dfa9657d9d | 34 | }; |
jksoft | 0:76dfa9657d9d | 35 | |
jksoft | 0:76dfa9657d9d | 36 | #endif /*__GATT_CHARACTERISTIC_WRITE_CB_PARAMS_H__*/ |