Minor temporary patch to allow DFU packet callback

Fork of BLE_API by Bluetooth Low Energy

Committer:
rgrover1
Date:
Mon Mar 02 11:50:47 2015 +0000
Revision:
292:b5ee2ada4f33
Parent:
291:0b66dd15728e
Child:
293:6278354cfd98
Synchronized with git rev 8d1b53ed
Author: Jeremy Brodt
Added callback on characteristic reads

Who changed what in which revision?

UserRevisionLine numberNew contents of line
rgrover1 292:b5ee2ada4f33 1 /* mbed Microcontroller Library
rgrover1 292:b5ee2ada4f33 2 * Copyright (c) 2006-2013 ARM Limited
rgrover1 292:b5ee2ada4f33 3 *
rgrover1 292:b5ee2ada4f33 4 * Licensed under the Apache License, Version 2.0 (the "License");
rgrover1 292:b5ee2ada4f33 5 * you may not use this file except in compliance with the License.
rgrover1 292:b5ee2ada4f33 6 * You may obtain a copy of the License at
rgrover1 292:b5ee2ada4f33 7 *
rgrover1 292:b5ee2ada4f33 8 * http://www.apache.org/licenses/LICENSE-2.0
rgrover1 292:b5ee2ada4f33 9 *
rgrover1 292:b5ee2ada4f33 10 * Unless required by applicable law or agreed to in writing, software
rgrover1 292:b5ee2ada4f33 11 * distributed under the License is distributed on an "AS IS" BASIS,
rgrover1 292:b5ee2ada4f33 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
rgrover1 292:b5ee2ada4f33 13 * See the License for the specific language governing permissions and
rgrover1 292:b5ee2ada4f33 14 * limitations under the License.
rgrover1 292:b5ee2ada4f33 15 */
rgrover1 292:b5ee2ada4f33 16
rgrover1 292:b5ee2ada4f33 17 #ifndef __UUID_H__
rgrover1 292:b5ee2ada4f33 18 #define __UUID_H__
rgrover1 292:b5ee2ada4f33 19
rgrover1 292:b5ee2ada4f33 20 #include "blecommon.h"
rgrover1 292:b5ee2ada4f33 21
rgrover1 292:b5ee2ada4f33 22 const unsigned LENGTH_OF_LONG_UUID = 16;
rgrover1 292:b5ee2ada4f33 23 typedef uint16_t ShortUUIDBytes_t;
rgrover1 292:b5ee2ada4f33 24 typedef uint8_t LongUUIDBytes_t[LENGTH_OF_LONG_UUID];
rgrover1 292:b5ee2ada4f33 25
rgrover1 292:b5ee2ada4f33 26 class UUID {
rgrover1 292:b5ee2ada4f33 27 public:
rgrover1 292:b5ee2ada4f33 28 enum {
rgrover1 292:b5ee2ada4f33 29 UUID_TYPE_SHORT = 0, // Short BLE UUID
rgrover1 292:b5ee2ada4f33 30 UUID_TYPE_LONG = 1 // Full 128-bit UUID
rgrover1 292:b5ee2ada4f33 31 };
rgrover1 292:b5ee2ada4f33 32
rgrover1 292:b5ee2ada4f33 33 public:
rgrover1 292:b5ee2ada4f33 34 UUID(const LongUUIDBytes_t);
rgrover1 292:b5ee2ada4f33 35 UUID(ShortUUIDBytes_t);
rgrover1 292:b5ee2ada4f33 36
rgrover1 292:b5ee2ada4f33 37 public:
rgrover1 292:b5ee2ada4f33 38 uint8_t shortOrLong(void) const {return type; }
rgrover1 292:b5ee2ada4f33 39 const uint8_t *getBaseUUID(void) const {return baseUUID; }
rgrover1 292:b5ee2ada4f33 40 ShortUUIDBytes_t getShortUUID(void) const {return shortUUID;}
rgrover1 292:b5ee2ada4f33 41
rgrover1 292:b5ee2ada4f33 42 private:
rgrover1 292:b5ee2ada4f33 43 uint8_t type; // UUID_TYPE_SHORT or UUID_TYPE_LONG
rgrover1 292:b5ee2ada4f33 44 LongUUIDBytes_t baseUUID; /* the base of the long UUID (if
rgrover1 292:b5ee2ada4f33 45 * used). Note: bytes 12 and 13 (counting from LSB)
rgrover1 292:b5ee2ada4f33 46 * are zeroed out to allow comparison with other long
rgrover1 292:b5ee2ada4f33 47 * UUIDs which differ only in the 16-bit relative
rgrover1 292:b5ee2ada4f33 48 * part.*/
rgrover1 292:b5ee2ada4f33 49 ShortUUIDBytes_t shortUUID; // 16 bit uuid (byte 2-3 using with base)
rgrover1 292:b5ee2ada4f33 50 };
rgrover1 292:b5ee2ada4f33 51
rgrover1 260:ea7f9f14cc15 52 #endif // ifndef __UUID_H__