BLE Temperature Service Mobile and Ubiquitous Computing Module Birkbeck College

Dependencies:   DS1820

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?

UserRevisionLine numberNew 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 #include <stdio.h>
gkroussos 0:dd0fea342ad2 18 #include <string.h>
gkroussos 0:dd0fea342ad2 19
gkroussos 0:dd0fea342ad2 20 #include "GattCharacteristic.h"
gkroussos 0:dd0fea342ad2 21
gkroussos 0:dd0fea342ad2 22 /**************************************************************************/
gkroussos 0:dd0fea342ad2 23 /*!
gkroussos 0:dd0fea342ad2 24 @brief Creates a new GattCharacteristic using the specified 16-bit
gkroussos 0:dd0fea342ad2 25 UUID, value length, and properties
gkroussos 0:dd0fea342ad2 26
gkroussos 0:dd0fea342ad2 27 @note The UUID value must be unique in the service and is normally >1
gkroussos 0:dd0fea342ad2 28
gkroussos 0:dd0fea342ad2 29 @param[in] id
gkroussos 0:dd0fea342ad2 30 The 16-bit UUID to use for this characteristic
gkroussos 0:dd0fea342ad2 31 @param[in] minLen
gkroussos 0:dd0fea342ad2 32 The min length in bytes of this characteristic's value
gkroussos 0:dd0fea342ad2 33 @param[in] maxLen
gkroussos 0:dd0fea342ad2 34 The max length in bytes of this characteristic's value
gkroussos 0:dd0fea342ad2 35 @param[in] props
gkroussos 0:dd0fea342ad2 36 The 8-bit bit field containing the characteristic's
gkroussos 0:dd0fea342ad2 37 properties
gkroussos 0:dd0fea342ad2 38
gkroussos 0:dd0fea342ad2 39 @section EXAMPLE
gkroussos 0:dd0fea342ad2 40
gkroussos 0:dd0fea342ad2 41 @code
gkroussos 0:dd0fea342ad2 42
gkroussos 0:dd0fea342ad2 43 // UUID = 0x2A19, Min length 2, Max len = 2, Properties = write
gkroussos 0:dd0fea342ad2 44 GattCharacteristic c = GattCharacteristic( 0x2A19, 2, 2, BLE_GATT_CHAR_PROPERTIES_WRITE );
gkroussos 0:dd0fea342ad2 45
gkroussos 0:dd0fea342ad2 46 @endcode
gkroussos 0:dd0fea342ad2 47 */
gkroussos 0:dd0fea342ad2 48 /**************************************************************************/
gkroussos 0:dd0fea342ad2 49 GattCharacteristic::GattCharacteristic(uint16_t id, uint16_t minLen, uint16_t maxLen, uint8_t props)
gkroussos 0:dd0fea342ad2 50 {
gkroussos 0:dd0fea342ad2 51 uuid = id;
gkroussos 0:dd0fea342ad2 52 memcpy(&properties, &props, 1);
gkroussos 0:dd0fea342ad2 53 lenMin = minLen;
gkroussos 0:dd0fea342ad2 54 lenMax = maxLen;
gkroussos 0:dd0fea342ad2 55 // handle = 0;
gkroussos 0:dd0fea342ad2 56 }
gkroussos 0:dd0fea342ad2 57
gkroussos 0:dd0fea342ad2 58 /**************************************************************************/
gkroussos 0:dd0fea342ad2 59 /*!
gkroussos 0:dd0fea342ad2 60 Destructor
gkroussos 0:dd0fea342ad2 61 */
gkroussos 0:dd0fea342ad2 62 /**************************************************************************/
gkroussos 0:dd0fea342ad2 63 GattCharacteristic::~GattCharacteristic(void)
gkroussos 0:dd0fea342ad2 64 {
gkroussos 0:dd0fea342ad2 65 }