BLE_API_Tiny_BLE

Dependents:   CSSE4011_BLE_IMU

Fork of BLE_API by Bluetooth Low Energy

Committer:
rgrover1
Date:
Wed Jan 21 09:32:49 2015 +0000
Revision:
260:ea7f9f14cc15
Parent:
144:c025c8839682
Child:
291:0b66dd15728e
Synchronized with git rev bec9560c
Author: Rohit Grover
fix all line endings to be Unix style

Who changed what in which revision?

UserRevisionLine numberNew 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 __UUID_H__
rgrover1 260:ea7f9f14cc15 18 #define __UUID_H__
rgrover1 260:ea7f9f14cc15 19
rgrover1 260:ea7f9f14cc15 20 #include "blecommon.h"
rgrover1 260:ea7f9f14cc15 21
rgrover1 260:ea7f9f14cc15 22 const unsigned LENGTH_OF_LONG_UUID = 16;
rgrover1 260:ea7f9f14cc15 23 typedef uint16_t ShortUUIDBytes_t;
rgrover1 260:ea7f9f14cc15 24 typedef uint8_t LongUUIDBytes_t[LENGTH_OF_LONG_UUID];
rgrover1 260:ea7f9f14cc15 25
rgrover1 260:ea7f9f14cc15 26 class UUID {
rgrover1 260:ea7f9f14cc15 27 public:
rgrover1 260:ea7f9f14cc15 28 enum {
rgrover1 260:ea7f9f14cc15 29 UUID_TYPE_SHORT = 0, // Short BLE UUID
rgrover1 260:ea7f9f14cc15 30 UUID_TYPE_LONG = 1 // Full 128-bit UUID
rgrover1 260:ea7f9f14cc15 31 };
rgrover1 260:ea7f9f14cc15 32
rgrover1 260:ea7f9f14cc15 33 public:
rgrover1 260:ea7f9f14cc15 34 UUID(const LongUUIDBytes_t);
rgrover1 260:ea7f9f14cc15 35 UUID(ShortUUIDBytes_t);
rgrover1 260:ea7f9f14cc15 36
rgrover1 260:ea7f9f14cc15 37 public:
rgrover1 260:ea7f9f14cc15 38 uint8_t shortOrLong(void) const {return type; }
rgrover1 260:ea7f9f14cc15 39 const uint8_t *getBaseUUID(void) const {return baseUUID; }
rgrover1 260:ea7f9f14cc15 40 ShortUUIDBytes_t getShortUUID(void) const {return shortUUID;}
rgrover1 260:ea7f9f14cc15 41
rgrover1 260:ea7f9f14cc15 42 private:
rgrover1 260:ea7f9f14cc15 43 uint8_t type; // UUID_TYPE_SHORT or UUID_TYPE_LONG
rgrover1 260:ea7f9f14cc15 44 LongUUIDBytes_t baseUUID; /* the base of the long UUID (if
rgrover1 260:ea7f9f14cc15 45 * used). Note: bytes 12 and 13 (counting from LSB)
rgrover1 260:ea7f9f14cc15 46 * are zeroed out to allow comparison with other long
rgrover1 260:ea7f9f14cc15 47 * UUIDs which differ only in the 16-bit relative
rgrover1 260:ea7f9f14cc15 48 * part.*/
rgrover1 260:ea7f9f14cc15 49 ShortUUIDBytes_t shortUUID; // 16 bit uuid (byte 2-3 using with base)
rgrover1 260:ea7f9f14cc15 50 };
rgrover1 260:ea7f9f14cc15 51
rgrover1 260:ea7f9f14cc15 52 #endif // ifndef __UUID_H__