Official Sheffield ARMBand micro:bit program
microbit/microbit-dal/nRF51822/source/nRF5xDiscoveredCharacteristic.h@0:b9164b348919, 2016-10-17 (annotated)
- Committer:
- MrBedfordVan
- Date:
- Mon Oct 17 12:41:20 2016 +0000
- Revision:
- 0:b9164b348919
Official Sheffield ARMBand Micro:bit program
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
MrBedfordVan | 0:b9164b348919 | 1 | /* mbed Microcontroller Library |
MrBedfordVan | 0:b9164b348919 | 2 | * Copyright (c) 2006-2013 ARM Limited |
MrBedfordVan | 0:b9164b348919 | 3 | * |
MrBedfordVan | 0:b9164b348919 | 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
MrBedfordVan | 0:b9164b348919 | 5 | * you may not use this file except in compliance with the License. |
MrBedfordVan | 0:b9164b348919 | 6 | * You may obtain a copy of the License at |
MrBedfordVan | 0:b9164b348919 | 7 | * |
MrBedfordVan | 0:b9164b348919 | 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
MrBedfordVan | 0:b9164b348919 | 9 | * |
MrBedfordVan | 0:b9164b348919 | 10 | * Unless required by applicable law or agreed to in writing, software |
MrBedfordVan | 0:b9164b348919 | 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
MrBedfordVan | 0:b9164b348919 | 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
MrBedfordVan | 0:b9164b348919 | 13 | * See the License for the specific language governing permissions and |
MrBedfordVan | 0:b9164b348919 | 14 | * limitations under the License. |
MrBedfordVan | 0:b9164b348919 | 15 | */ |
MrBedfordVan | 0:b9164b348919 | 16 | |
MrBedfordVan | 0:b9164b348919 | 17 | #ifndef __NRF_DISCOVERED_CHARACTERISTIC_H__ |
MrBedfordVan | 0:b9164b348919 | 18 | #define __NRF_DISCOVERED_CHARACTERISTIC_H__ |
MrBedfordVan | 0:b9164b348919 | 19 | |
MrBedfordVan | 0:b9164b348919 | 20 | #include "ble/DiscoveredCharacteristic.h" |
MrBedfordVan | 0:b9164b348919 | 21 | #include "ble_gatt.h" |
MrBedfordVan | 0:b9164b348919 | 22 | |
MrBedfordVan | 0:b9164b348919 | 23 | class nRF5xGattClient; /* forward declaration */ |
MrBedfordVan | 0:b9164b348919 | 24 | |
MrBedfordVan | 0:b9164b348919 | 25 | class nRF5xDiscoveredCharacteristic : public DiscoveredCharacteristic { |
MrBedfordVan | 0:b9164b348919 | 26 | public: |
MrBedfordVan | 0:b9164b348919 | 27 | void setup(nRF5xGattClient *gattcIn, |
MrBedfordVan | 0:b9164b348919 | 28 | Gap::Handle_t connectionHandleIn, |
MrBedfordVan | 0:b9164b348919 | 29 | ble_gatt_char_props_t propsIn, |
MrBedfordVan | 0:b9164b348919 | 30 | GattAttribute::Handle_t declHandleIn, |
MrBedfordVan | 0:b9164b348919 | 31 | GattAttribute::Handle_t valueHandleIn); |
MrBedfordVan | 0:b9164b348919 | 32 | |
MrBedfordVan | 0:b9164b348919 | 33 | void setup(nRF5xGattClient *gattcIn, |
MrBedfordVan | 0:b9164b348919 | 34 | Gap::Handle_t connectionHandleIn, |
MrBedfordVan | 0:b9164b348919 | 35 | UUID::ShortUUIDBytes_t uuidIn, |
MrBedfordVan | 0:b9164b348919 | 36 | ble_gatt_char_props_t propsIn, |
MrBedfordVan | 0:b9164b348919 | 37 | GattAttribute::Handle_t declHandleIn, |
MrBedfordVan | 0:b9164b348919 | 38 | GattAttribute::Handle_t valueHandleIn); |
MrBedfordVan | 0:b9164b348919 | 39 | |
MrBedfordVan | 0:b9164b348919 | 40 | void setLastHandle(GattAttribute::Handle_t last) { |
MrBedfordVan | 0:b9164b348919 | 41 | lastHandle = last; |
MrBedfordVan | 0:b9164b348919 | 42 | } |
MrBedfordVan | 0:b9164b348919 | 43 | }; |
MrBedfordVan | 0:b9164b348919 | 44 | |
MrBedfordVan | 0:b9164b348919 | 45 | #endif /* __NRF_DISCOVERED_CHARACTERISTIC_H__ */ |