BLE Temperature Service Mobile and Ubiquitous Computing Module Birkbeck College
BLE_API_Native/UUID.h@0:dd0fea342ad2, 2015-03-08 (annotated)
- Committer:
- gkroussos
- Date:
- Sun Mar 08 19:42:20 2015 +0000
- Revision:
- 0:dd0fea342ad2
BLE Temperature Service ; Mobile and Ubiquitous Computing Module; Birkbeck College
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
gkroussos | 0:dd0fea342ad2 | 1 | /* mbed Microcontroller Library |
gkroussos | 0:dd0fea342ad2 | 2 | * Copyright (c) 2006-2013 ARM Limited |
gkroussos | 0:dd0fea342ad2 | 3 | * |
gkroussos | 0:dd0fea342ad2 | 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
gkroussos | 0:dd0fea342ad2 | 5 | * you may not use this file except in compliance with the License. |
gkroussos | 0:dd0fea342ad2 | 6 | * You may obtain a copy of the License at |
gkroussos | 0:dd0fea342ad2 | 7 | * |
gkroussos | 0:dd0fea342ad2 | 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
gkroussos | 0:dd0fea342ad2 | 9 | * |
gkroussos | 0:dd0fea342ad2 | 10 | * Unless required by applicable law or agreed to in writing, software |
gkroussos | 0:dd0fea342ad2 | 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
gkroussos | 0:dd0fea342ad2 | 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
gkroussos | 0:dd0fea342ad2 | 13 | * See the License for the specific language governing permissions and |
gkroussos | 0:dd0fea342ad2 | 14 | * limitations under the License. |
gkroussos | 0:dd0fea342ad2 | 15 | */ |
gkroussos | 0:dd0fea342ad2 | 16 | |
gkroussos | 0:dd0fea342ad2 | 17 | |
gkroussos | 0:dd0fea342ad2 | 18 | #ifndef __UUID_H__ |
gkroussos | 0:dd0fea342ad2 | 19 | #define __UUID_H__ |
gkroussos | 0:dd0fea342ad2 | 20 | |
gkroussos | 0:dd0fea342ad2 | 21 | #include "blecommon.h" |
gkroussos | 0:dd0fea342ad2 | 22 | |
gkroussos | 0:dd0fea342ad2 | 23 | class UUID |
gkroussos | 0:dd0fea342ad2 | 24 | { |
gkroussos | 0:dd0fea342ad2 | 25 | private: |
gkroussos | 0:dd0fea342ad2 | 26 | |
gkroussos | 0:dd0fea342ad2 | 27 | public: |
gkroussos | 0:dd0fea342ad2 | 28 | enum |
gkroussos | 0:dd0fea342ad2 | 29 | { |
gkroussos | 0:dd0fea342ad2 | 30 | UUID_TYPE_SHORT = 0, // Short BLE UUID |
gkroussos | 0:dd0fea342ad2 | 31 | UUID_TYPE_LONG = 1 // Full 128-bit UUID |
gkroussos | 0:dd0fea342ad2 | 32 | }; |
gkroussos | 0:dd0fea342ad2 | 33 | |
gkroussos | 0:dd0fea342ad2 | 34 | UUID(void); |
gkroussos | 0:dd0fea342ad2 | 35 | UUID(uint8_t const[16]); |
gkroussos | 0:dd0fea342ad2 | 36 | UUID(uint16_t const); |
gkroussos | 0:dd0fea342ad2 | 37 | virtual ~UUID(void); |
gkroussos | 0:dd0fea342ad2 | 38 | |
gkroussos | 0:dd0fea342ad2 | 39 | uint8_t type; // UUID_TYPE_SHORT or UUID_TYPE_LONG |
gkroussos | 0:dd0fea342ad2 | 40 | uint8_t base[16]; // in case of custom |
gkroussos | 0:dd0fea342ad2 | 41 | uint16_t value; // 16 bit uuid (byte 2-3 using with base) |
gkroussos | 0:dd0fea342ad2 | 42 | |
gkroussos | 0:dd0fea342ad2 | 43 | ble_error_t update(uint8_t const[16]); |
gkroussos | 0:dd0fea342ad2 | 44 | ble_error_t update(uint16_t const); |
gkroussos | 0:dd0fea342ad2 | 45 | }; |
gkroussos | 0:dd0fea342ad2 | 46 | |
gkroussos | 0:dd0fea342ad2 | 47 | #endif |