Files
examples/cc25xx-8051-example/ti/BLE-CC254x/Components/ble/host/gatt_uuid.c
2019-07-25 18:12:39 +08:00

349 lines
9.2 KiB
C

/**************************************************************************************************
Filename: gatt_uuid.c
Revised: $Date: 2009-06-29 16:20:52 -0700 (Mon, 29 Jun 2009) $
Revision: $Revision: 20240 $
Description: This file contains Generic Attribute Profile (GATT)
UUID types.
Copyright 2011-2013 Texas Instruments Incorporated. All rights reserved.
IMPORTANT: Your use of this Software is limited to those specific rights
granted under the terms of a software license agreement between the user
who downloaded the software, his/her employer (which must be your employer)
and Texas Instruments Incorporated (the "License"). You may not use this
Software unless you agree to abide by the terms of the License. The License
limits your use, and you acknowledge, that the Software may not be modified,
copied or distributed unless embedded on a Texas Instruments microcontroller
or used solely and exclusively in conjunction with a Texas Instruments radio
frequency transceiver, which is integrated into your product. Other than for
the foregoing purpose, you may not use, reproduce, copy, prepare derivative
works of, modify, distribute, perform, display or sell this Software and/or
its documentation for any purpose.
YOU FURTHER ACKNOWLEDGE AND AGREE THAT THE SOFTWARE AND DOCUMENTATION ARE
PROVIDED “AS IS” WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED,
INCLUDING WITHOUT LIMITATION, ANY WARRANTY OF MERCHANTABILITY, TITLE,
NON-INFRINGEMENT AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL
TEXAS INSTRUMENTS OR ITS LICENSORS BE LIABLE OR OBLIGATED UNDER CONTRACT,
NEGLIGENCE, STRICT LIABILITY, CONTRIBUTION, BREACH OF WARRANTY, OR OTHER
LEGAL EQUITABLE THEORY ANY DIRECT OR INDIRECT DAMAGES OR EXPENSES
INCLUDING BUT NOT LIMITED TO ANY INCIDENTAL, SPECIAL, INDIRECT, PUNITIVE
OR CONSEQUENTIAL DAMAGES, LOST PROFITS OR LOST DATA, COST OF PROCUREMENT
OF SUBSTITUTE GOODS, TECHNOLOGY, SERVICES, OR ANY CLAIMS BY THIRD PARTIES
(INCLUDING BUT NOT LIMITED TO ANY DEFENSE THEREOF), OR OTHER SIMILAR COSTS.
Should you have any questions regarding your right to use this Software,
contact Texas Instruments Incorporated at www.TI.com.
**************************************************************************************************/
/*********************************************************************
* INCLUDES
*/
#include "comdef.h"
#include "OSAL.h"
#include "gatt.h"
#include "gatt_uuid.h"
/*********************************************************************
* MACROS
*/
/*********************************************************************
* CONSTANTS
*/
/*********************************************************************
* TYPEDEFS
*/
/*********************************************************************
* GLOBAL VARIABLES
*/
/**
* GATT Services
*/
// Generic Access Profile Service UUID
CONST uint8 gapServiceUUID[ATT_BT_UUID_SIZE] =
{
LO_UINT16( GAP_SERVICE_UUID ), HI_UINT16( GAP_SERVICE_UUID )
};
// Generic Attribute Profile Service UUID
CONST uint8 gattServiceUUID[ATT_BT_UUID_SIZE] =
{
LO_UINT16( GATT_SERVICE_UUID ), HI_UINT16( GATT_SERVICE_UUID )
};
/**
* GATT Declarations
*/
// Primary Service UUID
CONST uint8 primaryServiceUUID[ATT_BT_UUID_SIZE] =
{
LO_UINT16( GATT_PRIMARY_SERVICE_UUID ), HI_UINT16( GATT_PRIMARY_SERVICE_UUID )
};
// Secondary Service UUID
CONST uint8 secondaryServiceUUID[ATT_BT_UUID_SIZE] =
{
LO_UINT16( GATT_SECONDARY_SERVICE_UUID ), HI_UINT16( GATT_SECONDARY_SERVICE_UUID )
};
// Include UUID
CONST uint8 includeUUID[ATT_BT_UUID_SIZE] =
{
LO_UINT16( GATT_INCLUDE_UUID ), HI_UINT16( GATT_INCLUDE_UUID )
};
// Characteristic UUID
CONST uint8 characterUUID[ATT_BT_UUID_SIZE] =
{
LO_UINT16( GATT_CHARACTER_UUID ), HI_UINT16( GATT_CHARACTER_UUID )
};
/**
* GATT Descriptors
*/
// Characteristic Extended Properties UUID
CONST uint8 charExtPropsUUID[ATT_BT_UUID_SIZE] =
{
LO_UINT16( GATT_CHAR_EXT_PROPS_UUID ), HI_UINT16( GATT_CHAR_EXT_PROPS_UUID )
};
// Characteristic User Description UUID
CONST uint8 charUserDescUUID[ATT_BT_UUID_SIZE] =
{
LO_UINT16( GATT_CHAR_USER_DESC_UUID ), HI_UINT16( GATT_CHAR_USER_DESC_UUID )
};
// Client Characteristic Configuration UUID
CONST uint8 clientCharCfgUUID[ATT_BT_UUID_SIZE] =
{
LO_UINT16( GATT_CLIENT_CHAR_CFG_UUID ), HI_UINT16( GATT_CLIENT_CHAR_CFG_UUID )
};
// Server Characteristic Configuration UUID
CONST uint8 servCharCfgUUID[ATT_BT_UUID_SIZE] =
{
LO_UINT16( GATT_SERV_CHAR_CFG_UUID ), HI_UINT16( GATT_SERV_CHAR_CFG_UUID )
};
// Characteristic Format UUID
CONST uint8 charFormatUUID[ATT_BT_UUID_SIZE] =
{
LO_UINT16( GATT_CHAR_FORMAT_UUID ), HI_UINT16( GATT_CHAR_FORMAT_UUID )
};
// Characteristic Aggregate Format UUID
CONST uint8 charAggFormatUUID[ATT_BT_UUID_SIZE] =
{
LO_UINT16( GATT_CHAR_AGG_FORMAT_UUID ), HI_UINT16( GATT_CHAR_AGG_FORMAT_UUID )
};
/**
* GATT Characteristics
*/
// Device Name UUID
CONST uint8 deviceNameUUID[ATT_BT_UUID_SIZE] =
{
LO_UINT16( DEVICE_NAME_UUID ), HI_UINT16( DEVICE_NAME_UUID )
};
// Appearance UUID
CONST uint8 appearanceUUID[ATT_BT_UUID_SIZE] =
{
LO_UINT16( APPEARANCE_UUID ), HI_UINT16( APPEARANCE_UUID )
};
// Peripheral Privacy Flag UUID
CONST uint8 periPrivacyFlagUUID[ATT_BT_UUID_SIZE] =
{
LO_UINT16( PERI_PRIVACY_FLAG_UUID ), HI_UINT16( PERI_PRIVACY_FLAG_UUID )
};
// Reconnection Address UUID
CONST uint8 reconnectAddrUUID[ATT_BT_UUID_SIZE] =
{
LO_UINT16( RECONNECT_ADDR_UUID ), HI_UINT16( RECONNECT_ADDR_UUID )
};
// Peripheral Preferred Connection Parameters UUID
CONST uint8 periConnParamUUID[ATT_BT_UUID_SIZE] =
{
LO_UINT16( PERI_CONN_PARAM_UUID ), HI_UINT16( PERI_CONN_PARAM_UUID )
};
// Service Changed UUID
CONST uint8 serviceChangedUUID[ATT_BT_UUID_SIZE] =
{
LO_UINT16( SERVICE_CHANGED_UUID ), HI_UINT16( SERVICE_CHANGED_UUID )
};
// Valid Range UUID
CONST uint8 validRangeUUID[ATT_BT_UUID_SIZE] =
{
LO_UINT16( GATT_VALID_RANGE_UUID ), HI_UINT16( GATT_VALID_RANGE_UUID )
};
// External Report Reference Descriptor
CONST uint8 extReportRefUUID[ATT_BT_UUID_SIZE] =
{
LO_UINT16( GATT_EXT_REPORT_REF_UUID ), HI_UINT16( GATT_EXT_REPORT_REF_UUID )
};
// Report Reference characteristic descriptor
CONST uint8 reportRefUUID[ATT_BT_UUID_SIZE] =
{
LO_UINT16( GATT_REPORT_REF_UUID ), HI_UINT16( GATT_REPORT_REF_UUID )
};
/*********************************************************************
* GLOBAL FUNCTIONS
*/
/*********************************************************************
* LOCAL VARIABLES
*/
/*********************************************************************
* LOCAL FUNCTIONS
*/
/*********************************************************************
* API FUNCTIONS
*/
/*********************************************************************
* @fn GATT_FindUUIDRec
*
* @brief Find the UUID record for a given UUID.
*
* @param pUUID - UUID to look for.
* @param len - length of UUID.
*
* @return Pointer to UUID record. NULL, otherwise.
*/
const uint8 *GATT_FindUUIDRec( uint8 *pUUID, uint8 len )
{
const uint8 *pRec = NULL;
if ( len == ATT_BT_UUID_SIZE )
{
// 16-bit UUID
uint16 uuid = BUILD_UINT16( pUUID[0], pUUID[1] );
switch ( uuid )
{
/*** GATT Services ***/
case GAP_SERVICE_UUID:
pRec = gapServiceUUID;
break;
case GATT_SERVICE_UUID:
pRec = gattServiceUUID;
break;
/*** GATT Declarations ***/
case GATT_PRIMARY_SERVICE_UUID:
pRec = primaryServiceUUID;
break;
case GATT_SECONDARY_SERVICE_UUID:
pRec = secondaryServiceUUID;
break;
case GATT_INCLUDE_UUID:
pRec = includeUUID;
break;
case GATT_CHARACTER_UUID:
pRec = characterUUID;
break;
/*** GATT Descriptors ***/
case GATT_CHAR_EXT_PROPS_UUID:
pRec = charExtPropsUUID;
break;
case GATT_CHAR_USER_DESC_UUID:
pRec = charUserDescUUID;
break;
case GATT_CLIENT_CHAR_CFG_UUID:
pRec = clientCharCfgUUID;
break;
case GATT_SERV_CHAR_CFG_UUID:
pRec = servCharCfgUUID;
break;
case GATT_CHAR_FORMAT_UUID:
pRec = charFormatUUID;
break;
case GATT_CHAR_AGG_FORMAT_UUID:
pRec = charAggFormatUUID;
break;
case GATT_VALID_RANGE_UUID:
pRec = validRangeUUID;
break;
case GATT_EXT_REPORT_REF_UUID:
pRec = extReportRefUUID;
break;
case GATT_REPORT_REF_UUID:
pRec = reportRefUUID;
break;
/*** GATT Characteristics ***/
case DEVICE_NAME_UUID:
pRec = deviceNameUUID;
break;
case APPEARANCE_UUID:
pRec = appearanceUUID;
break;
case RECONNECT_ADDR_UUID:
pRec = reconnectAddrUUID;
break;
case PERI_PRIVACY_FLAG_UUID:
pRec = periPrivacyFlagUUID;
break;
case PERI_CONN_PARAM_UUID:
pRec = periConnParamUUID;
break;
case SERVICE_CHANGED_UUID:
pRec = serviceChangedUUID;
break;
/*** GATT Units ***/
default:
break;
}
}
else if ( len == ATT_UUID_SIZE )
{
// 128-bit UUID
}
return ( pRec );
}
/****************************************************************************
****************************************************************************/