1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
|
/**************************************************************************/
/*!
@file BLEUuid.cpp
@author hathach (tinyusb.org)
@section LICENSE
Software License Agreement (BSD License)
Copyright (c) 2018, Adafruit Industries (adafruit.com)
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. Neither the name of the copyright holders nor the
names of its contributors may be used to endorse or promote products
derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ''AS IS'' AND ANY
EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/**************************************************************************/
#include "BLEUuid.h"
//void reverse_uuid128(uint8_t const in[16], uint8_t out[16])
//{
// for(uint8_t i=0; i<16; i++)
// {
// out[i] = in[15-i];
// }
//}
void BLEUuid::set(uint16_t uuid16)
{
_uuid.type = BLE_UUID_TYPE_BLE;
_uuid.uuid = uuid16;
_uuid128 = NULL;
}
void BLEUuid::set(uint8_t const uuid128[16])
{
_uuid.type = BLE_UUID_TYPE_UNKNOWN;
_uuid.uuid = 0;
_uuid128 = uuid128;
}
bool BLEUuid::get(uint16_t* uuid16 ) const
{
*uuid16 = _uuid.uuid;
return true;
}
bool BLEUuid::get(uint8_t uuid128[16])
{
if (_uuid.type < BLE_UUID_TYPE_VENDOR_BEGIN ) return false;
if ( _uuid128 )
{
memcpy(uuid128, _uuid128, 16);
}else
{
uint8_t len = 16;
VERIFY_STATUS( sd_ble_uuid_encode(&_uuid, &len, uuid128), false);
VERIFY(len == 16);
}
return true;
}
/**
* Get size of uuid in BIT
* @return 16, 32 or 128
*/
size_t BLEUuid::size (void) const
{
// uuid 16
if (_uuid.type == BLE_UUID_TYPE_BLE ) return 16;
if (_uuid128 != NULL || _uuid.type >= BLE_UUID_TYPE_VENDOR_BEGIN) return 128;
// unknown
return 0;
}
err_t BLEUuid::begin(void)
{
/* Add base uuid and decode to get uuid16
* This should cover the already added base uuid128 previously
*/
if (_uuid.type == BLE_UUID_TYPE_UNKNOWN && _uuid128 != NULL )
{
(void) sd_ble_uuid_vs_add( (ble_uuid128_t const*) _uuid128, &_uuid.type );
VERIFY_STATUS( sd_ble_uuid_decode(16, _uuid128, &_uuid) );
}
return ERROR_NONE;
}
bool BLEUuid::operator== (const BLEUuid& uuid) const
{
return (this->_uuid.type == uuid._uuid.type) && (this->_uuid.uuid == uuid._uuid.uuid);
}
bool BLEUuid::operator!= (const BLEUuid& uuid) const
{
return !(*this == uuid);
}
bool BLEUuid::operator== (const ble_uuid_t uuid) const
{
return (this->_uuid.type == uuid.type) && (this->_uuid.uuid == uuid.uuid);
}
bool BLEUuid::operator!= (const ble_uuid_t uuid) const
{
return !(*this == uuid);
}
// Overload copy operator to allow initialization from other type
BLEUuid& BLEUuid::operator=(const uint16_t uuid)
{
set(uuid);
return *this;
}
BLEUuid& BLEUuid::operator=(uint8_t const uuid128[16])
{
set(uuid128);
return *this;
}
BLEUuid& BLEUuid::operator=(ble_uuid_t uuid)
{
_uuid = uuid;
return *this;
}
|