【BLE】CC2541之配对密码的重置

本篇博文最后修改时间:2016年12月29日,12:55。


一、简介

本文以SimpleBLEPeripheral工程为例,介绍如何将配对密码重置。


二、实验平台

协议栈版本:BLE-CC254x-1.4.0

编译软件: IAR 8.20.2

硬件平台: Smart RF开发板(主芯片CC2541)

手机型号: 小米4S

安卓版本:安卓5.1

安卓app:TruthBlue


三、版权声明

博主:甜甜的大香瓜

声明:喝水不忘挖井人,转载请注明出处。

原文地址:http://blog.csdn.NET/feilusia

联系方式:897503845@qq.com

香瓜BLE之CC2541群:127442605

香瓜BLE之CC2640群:557278427

香瓜BLE之Android群:541462902

香瓜单片机之STM8/STM32群:164311667
甜甜的大香瓜的小店(淘宝店):https://shop217632629.taobao.com/?spm=2013.1.1000126.d21.hd2o8i

四、实验前提

1、在进行本文步骤前,请先 阅读以下博文:
1)《CC2541之SNV》:http://blog.csdn.net/feilusia/article/details/50190859
2)《 CC2541之添加特征值 》: http://blog.csdn.net/feilusia/article/details/48235691

2、在进行本文步骤前,请先实现以下博文:

1)《CC2541之配对与绑定》:http://blog.csdn.net/feilusia/article/details/50212945
2)《CC2541之设置出厂时的配对密码》:http://blog.csdn.net/feilusia/article/details/53607891
3)《CC2541之通信协议》:http://blog.csdn.net/feilusia/article/details/53520236
4)《CC2541之配对密码的读取与修改》:http://blog.csdn.net/feilusia/article/details/53609219

五、基础知识
1、为什么要密码重置?
答:我们通信时使用的UUID通道往往是加密的,一旦用户忘记密码,就会导致设备无法再连接上。
因此需要再增加一个无加密的UUID通道,作为密码重置通道。
本文使用0xfff7通道作为密码重置通道。

六、通信协议




七、测试指令
香瓜的测试指令

1、功能码0x00(开关灯)
1)关灯
fe010000ffffffffffffffffffffffffffffffff

2)开灯
fe01000100ffffffffffffffffffffffffffffff

2、功能码0x01(读取密码)
fe0001ffffffffffffffffffffffffffffffffff

3、功能码0x02(修改密码)
1)修改密码为654321
fe0402f1fb0900f9ffffffffffffffffffffffff 

2)修改密码为132648
fe04022806020034ffffffffffffffffffffffff 

4、功能码0x90(重置密码)
fe04900000000092ffffffffffffffffffffffff 

八、实验步骤
1、新增0xfff7通道特征值
1)替换simpleGATTprofile.c
/**************************************************************************************************
  Filename:       simpleGATTprofile.c
  Revised:        $Date: 2013-05-06 13:33:47 -0700 (Mon, 06 May 2013) $
  Revision:       $Revision: 34153 $

  Description:    This file contains the Simple GATT profile sample GATT service 
                  profile for use with the BLE sample application.

  Copyright 2010 - 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 揂S 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 "bcomdef.h"
#include "OSAL.h"
#include "linkdb.h"
#include "att.h"
#include "gatt.h"
#include "gatt_uuid.h"
#include "gattservapp.h"
#include "gapbondmgr.h"

#include "simpleGATTprofile.h"

/*********************************************************************
 * MACROS
 */

/*********************************************************************
 * CONSTANTS
 */

#define SERVAPP_NUM_ATTR_SUPPORTED              25  

#define GUA_ATTRTBL_CHAR4_VALUE_IDX             11       
#define GUA_ATTRTBL_CHAR4_CCC_IDX               12       
#define GUA_ATTRTBL_CHAR6_VALUE_IDX             18  
#define GUA_ATTRTBL_CHAR6_CCC_IDX               19 
#define GUA_ATTRTBL_CHAR7_VALUE_IDX             22  
#define GUA_ATTRTBL_CHAR7_CCC_IDX               23   
/*********************************************************************
 * TYPEDEFS
 */

/*********************************************************************
 * GLOBAL VARIABLES
 */
// Simple GATT Profile Service UUID: 0xFFF0
CONST uint8 simpleProfileServUUID[ATT_BT_UUID_SIZE] =
{ 
  LO_UINT16(SIMPLEPROFILE_SERV_UUID), HI_UINT16(SIMPLEPROFILE_SERV_UUID)
};

// Characteristic 1 UUID: 0xFFF1
CONST uint8 simpleProfilechar1UUID[ATT_BT_UUID_SIZE] =
{ 
  LO_UINT16(SIMPLEPROFILE_CHAR1_UUID), HI_UINT16(SIMPLEPROFILE_CHAR1_UUID)
};

// Characteristic 2 UUID: 0xFFF2
CONST uint8 simpleProfilechar2UUID[ATT_BT_UUID_SIZE] =
{ 
  LO_UINT16(SIMPLEPROFILE_CHAR2_UUID), HI_UINT16(SIMPLEPROFILE_CHAR2_UUID)
};

// Characteristic 3 UUID: 0xFFF3
CONST uint8 simpleProfilechar3UUID[ATT_BT_UUID_SIZE] =
{ 
  LO_UINT16(SIMPLEPROFILE_CHAR3_UUID), HI_UINT16(SIMPLEPROFILE_CHAR3_UUID)
};

// Characteristic 4 UUID: 0xFFF4
CONST uint8 simpleProfilechar4UUID[ATT_BT_UUID_SIZE] =
{ 
  LO_UINT16(SIMPLEPROFILE_CHAR4_UUID), HI_UINT16(SIMPLEPROFILE_CHAR4_UUID)
};

// Characteristic 5 UUID: 0xFFF5
CONST uint8 simpleProfilechar5UUID[ATT_BT_UUID_SIZE] =
{ 
  LO_UINT16(SIMPLEPROFILE_CHAR5_UUID), HI_UINT16(SIMPLEPROFILE_CHAR5_UUID)
};

// Characteristic 6 UUID: 0xFFF6
CONST uint8 simpleProfilechar6UUID[ATT_BT_UUID_SIZE] =
{ 
  LO_UINT16(SIMPLEPROFILE_CHAR6_UUID), HI_UINT16(SIMPLEPROFILE_CHAR6_UUID)
};

// Characteristic 7 UUID: 0xFFF7  
CONST uint8 simpleProfilechar7UUID[ATT_BT_UUID_SIZE] =  
{   
  LO_UINT16(SIMPLEPROFILE_CHAR7_UUID), HI_UINT16(SIMPLEPROFILE_CHAR7_UUID)  
};  
/*********************************************************************
 * EXTERNAL VARIABLES
 */

/*********************************************************************
 * EXTERNAL FUNCTIONS
 */

/*********************************************************************
 * LOCAL VARIABLES
 */

static simpleProfileCBs_t *simpleProfile_AppCBs = NULL;

/*********************************************************************
 * Profile Attributes - variables
 */

// Simple Profile Service attribute
static CONST gattAttrType_t simpleProfileService = { ATT_BT_UUID_SIZE, simpleProfileServUUID };


// Simple Profile Characteristic 1 Properties
static uint8 simpleProfileChar1Props = GATT_PROP_READ | GATT_PROP_WRITE;

// Characteristic 1 Value
static uint8 simpleProfileChar1 = 0;

// Simple Profile Characteristic 1 User Description
static uint8 simpleProfileChar1UserDesp[17] = "Characteristic 1\0";


// Simple Profile Characteristic 2 Properties
static uint8 simpleProfileChar2Props = GATT_PROP_READ;

// Characteristic 2 Value
static uint8 simpleProfileChar2 = 0;

// Simple Profile Characteristic 2 User Description
static uint8 simpleProfileChar2UserDesp[17] = "Characteristic 2\0";


// Simple Profile Characteristic 3 Properties
static uint8 simpleProfileChar3Props = GATT_PROP_WRITE;

// Characteristic 3 Value
static uint8 simpleProfileChar3 = 0;

// Simple Profile Characteristic 3 User Description
static uint8 simpleProfileChar3UserDesp[17] = "Characteristic 3\0";


// Simple Profile Characteristic 4 Properties
static uint8 simpleProfileChar4Props = GATT_PROP_NOTIFY;

// Characteristic 4 Value
static uint8 simpleProfileChar4 = 0;

// Simple Profile Characteristic 4 Configuration Each client has its own
// instantiation of the Client Characteristic Configuration. Reads of the
// Client Characteristic Configuration only shows the configuration for
// that client and writes only affect the configuration of that client.
static gattCharCfg_t simpleProfileChar4Config[GATT_MAX_NUM_CONN];
                                        
// Simple Profile Characteristic 4 User Description
static uint8 simpleProfileChar4UserDesp[17] = "Characteristic 4\0";


// Simple Profile Characteristic 5 Properties
static uint8 simpleProfileChar5Props = GATT_PROP_READ;

// Characteristic 5 Value
static uint8 simpleProfileChar5[SIMPLEPROFILE_CHAR5_LEN] = { 0, 0, 0, 0, 0 };

// Simple Profile Characteristic 5 User Description
static uint8 simpleProfileChar5UserDesp[17] = "Characteristic 5\0";

// Simple Profile Characteristic 6 Properties  
static uint8 simpleProfileChar6Props = GATT_PROP_READ | GATT_PROP_WRITE | GATT_PROP_NOTIFY;  
  
// Characteristic 6 Value  
static uint8 simpleProfileChar6[SIMPLEPROFILE_CHAR6_LEN] = {0};  
  
// Simple Profile Characteristic 6 Configuration Each client has its own  
// instantiation of the Client Characteristic Configuration. Reads of the  
// Client Characteristic Configuration only shows the configuration for  
// that client and writes only affect the configuration of that client.  
static gattCharCfg_t simpleProfileChar6Config[GATT_MAX_NUM_CONN];  
  
// Simple Profile Characteristic 6 User Description  
static uint8 simpleProfileChar6UserDesp[17] = "Characteristic 6\0"; 

// Simple Profile Characteristic 7 Properties  
static uint8 simpleProfileChar7Props = GATT_PROP_READ | GATT_PROP_WRITE | GATT_PROP_NOTIFY;  
  
// Characteristic 7 Value  
static uint8 simpleProfileChar7[SIMPLEPROFILE_CHAR7_LEN] = {0};  
  
// Simple Profile Characteristic 7 Configuration Each client has its own  
// instantiation of the Client Characteristic Configuration. Reads of the  
// Client Characteristic Configuration only shows the configuration for  
// that client and writes only affect the configuration of that client.  
static gattCharCfg_t simpleProfileChar7Config[GATT_MAX_NUM_CONN];  
  
// Simple Profile Characteristic 7 User Description  
static uint8 simpleProfileChar7UserDesp[17] = "Characteristic 7\0";  

/*********************************************************************
 * Profile Attributes - Table
 */

static gattAttribute_t simpleProfileAttrTbl[SERVAPP_NUM_ATTR_SUPPORTED] = 
{
  // Simple Profile Service
  { 
    { ATT_BT_UUID_SIZE, primaryServiceUUID }, /* type */
    GATT_PERMIT_READ,                         /* permissions */
    0,                                        /* handle */
    (uint8 *)&simpleProfileService            /* pValue */
  },

    // Characteristic 1 Declaration
    { 
      { ATT_BT_UUID_SIZE, characterUUID },
      GATT_PERMIT_READ, 
      0,
      &simpleProfileChar1Props 
    },

      // Characteristic Value 1
      { 
        { ATT_BT_UUID_SIZE, simpleProfilechar1UUID },
        GATT_PERMIT_READ | GATT_PERMIT_WRITE, 
        0, 
        &simpleProfileChar1 
      },

      // Characteristic 1 User Description
      { 
        { ATT_BT_UUID_SIZE, charUserDescUUID },
        GATT_PERMIT_READ, 
        0, 
        simpleProfileChar1UserDesp 
      },      

    // Characteristic 2 Declaration
    { 
      { ATT_BT_UUID_SIZE, characterUUID },
      GATT_PERMIT_READ, 
      0,
      &simpleProfileChar2Props 
    },

      // Characteristic Value 2
      { 
        { ATT_BT_UUID_SIZE, simpleProfilechar2UUID },
        GATT_PERMIT_READ, 
        0, 
        &simpleProfileChar2 
      },

      // Characteristic 2 User Description
      { 
        { ATT_BT_UUID_SIZE, charUserDescUUID },
        GATT_PERMIT_READ, 
        0, 
        simpleProfileChar2UserDesp 
      },           
      
    // Characteristic 3 Declaration
    { 
      { ATT_BT_UUID_SIZE, characterUUID },
      GATT_PERMIT_READ, 
      0,
      &simpleProfileChar3Props 
    },

      // Characteristic Value 3
      { 
        { ATT_BT_UUID_SIZE, simpleProfilechar3UUID },
        GATT_PERMIT_WRITE, 
        0, 
        &simpleProfileChar3 
      },

      // Characteristic 3 User Description
      { 
        { ATT_BT_UUID_SIZE, charUserDescUUID },
        GATT_PERMIT_READ, 
        0, 
        simpleProfileChar3UserDesp 
      },

    // Characteristic 4 Declaration
    { 
      { ATT_BT_UUID_SIZE, characterUUID },
      GATT_PERMIT_READ, 
      0,
      &simpleProfileChar4Props 
    },

      // Characteristic Value 4
      { 
        { ATT_BT_UUID_SIZE, simpleProfilechar4UUID },
        0, 
        0, 
        &simpleProfileChar4 
      },

      // Characteristic 4 configuration
      { 
        { ATT_BT_UUID_SIZE, clientCharCfgUUID },
        GATT_PERMIT_READ | GATT_PERMIT_WRITE, 
        0, 
        (uint8 *)simpleProfileChar4Config 
      },
      
      // Characteristic 4 User Description
      { 
        { ATT_BT_UUID_SIZE, charUserDescUUID },
        GATT_PERMIT_READ, 
        0, 
        simpleProfileChar4UserDesp 
      },
      
    // Characteristic 5 Declaration
    { 
      { ATT_BT_UUID_SIZE, characterUUID },
      GATT_PERMIT_READ, 
      0,
      &simpleProfileChar5Props 
    },

      // Characteristic Value 5
      { 
        { ATT_BT_UUID_SIZE, simpleProfilechar5UUID },
        GATT_PERMIT_AUTHEN_READ, 
        0, 
        simpleProfileChar5 
      },

      // Characteristic 5 User Description
      { 
        { ATT_BT_UUID_SIZE, charUserDescUUID },
        GATT_PERMIT_READ, 
        0, 
        simpleProfileChar5UserDesp 
      },

      // Characteristic 6 Declaration  
      {   
        { ATT_BT_UUID_SIZE, characterUUID },  
        GATT_PERMIT_READ,   
        0,  
        &simpleProfileChar6Props   
      },  
  
      // Characteristic Value 6  
      {   
        { ATT_BT_UUID_SIZE, simpleProfilechar6UUID },  
        GATT_PERMIT_READ | GATT_PERMIT_WRITE,  
        0,   
        simpleProfileChar6   
      },  
  
      // Characteristic 6 configuration  
      {   
        { ATT_BT_UUID_SIZE, clientCharCfgUUID },  
        GATT_PERMIT_READ | GATT_PERMIT_WRITE,   
        0,   
        (uint8 *)simpleProfileChar6Config   
      },  
        
      // Characteristic 6 User Description  
      {   
        { ATT_BT_UUID_SIZE, charUserDescUUID },  
        GATT_PERMIT_READ,   
        0,   
        simpleProfileChar6UserDesp   
      },  
      
      
      // Characteristic 7 Declaration  
      {   
        { ATT_BT_UUID_SIZE, characterUUID },  
        GATT_PERMIT_READ,   
        0,  
        &simpleProfileChar7Props   
      },  
  
      // Characteristic Value 7  
      {   
        { ATT_BT_UUID_SIZE, simpleProfilechar7UUID },  
        GATT_PERMIT_READ | GATT_PERMIT_WRITE, //注意!非加密通道,可读可写  
        0,   
        simpleProfileChar7   
      },  
  
      // Characteristic 7 configuration  
      {   
        { ATT_BT_UUID_SIZE, clientCharCfgUUID },  
        GATT_PERMIT_READ | GATT_PERMIT_WRITE,   
        0,   
        (uint8 *)simpleProfileChar7Config   
      },  
        
      // Characteristic 7 User Description  
      {   
        { ATT_BT_UUID_SIZE, charUserDescUUID },  
        GATT_PERMIT_READ,   
        0,   
        simpleProfileChar7UserDesp   
      },        
};


/*********************************************************************
 * LOCAL FUNCTIONS
 */
static uint8 simpleProfile_ReadAttrCB( uint16 connHandle, gattAttribute_t *pAttr, 
                            uint8 *pValue, uint8 *pLen, uint16 offset, uint8 maxLen );
static bStatus_t simpleProfile_WriteAttrCB( uint16 connHandle, gattAttribute_t *pAttr,
                                 uint8 *pValue, uint8 len, uint16 offset );

static void simpleProfile_HandleConnStatusCB( uint16 connHandle, uint8 changeType );


/*********************************************************************
 * PROFILE CALLBACKS
 */
// Simple Profile Service Callbacks
CONST gattServiceCBs_t simpleProfileCBs =
{
  simpleProfile_ReadAttrCB,  // Read callback function pointer
  simpleProfile_WriteAttrCB, // Write callback function pointer
  NULL                       // Authorization callback function pointer
};

/*********************************************************************
 * PUBLIC FUNCTIONS
 */

//******************************************************************************                
//name:             SimpleProfile_AddService               
//introduce:        通过注册GATT属性与GATT服务,从而初始化simple服务           
//parameter:        services: 服务号      
//return:           none             
//author:           甜甜的大香瓜                     
//email:            897503845@qq.com         
//QQ group          香瓜BLE之CC2541(127442605)                      
//changetime:       2016.12.08                     
//******************************************************************************  
bStatus_t SimpleProfile_AddService( uint32 services )
{
  uint8 status = SUCCESS;

  // Initialize Client Characteristic Configuration attributes
  GATTServApp_InitCharCfg( INVALID_CONNHANDLE, simpleProfileChar4Config );
  GATTServApp_InitCharCfg( INVALID_CONNHANDLE, simpleProfileChar6Config );      //GUA
  GATTServApp_InitCharCfg( INVALID_CONNHANDLE, simpleProfileChar7Config );      //GUA
  
  // Register with Link DB to receive link status change callback
  VOID linkDB_Register( simpleProfile_HandleConnStatusCB );  
  
  if ( services & SIMPLEPROFILE_SERVICE )
  {
    // Register GATT attribute list and CBs with GATT Server App
    status = GATTServApp_RegisterService( simpleProfileAttrTbl, 
                                          GATT_NUM_ATTRS( simpleProfileAttrTbl ),
                                          &simpleProfileCBs );
  }

  return ( status );
}


/*********************************************************************
 * @fn      SimpleProfile_RegisterAppCBs
 *
 * @brief   Registers the application callback function. Only call 
 *          this function once.
 *
 * @param   callbacks - pointer to application callbacks.
 *
 * @return  SUCCESS or bleAlreadyInRequestedMode
 */
bStatus_t SimpleProfile_RegisterAppCBs( simpleProfileCBs_t *appCallbacks )
{
  if ( appCallbacks )
  {
    simpleProfile_AppCBs = appCallbacks;
    
    return ( SUCCESS );
  }
  else
  {
    return ( bleAlreadyInRequestedMode );
  }
}
  

/*********************************************************************
 * @fn      SimpleProfile_SetParameter
 *
 * @brief   Set a Simple Profile parameter.
 *
 * @param   param - Profile parameter ID
 * @param   len - length of data to right
 * @param   value - pointer to data to write.  This is dependent on
 *          the parameter ID and WILL be cast to the appropriate 
 *          data type (example: data type of uint16 will be cast to 
 *          uint16 pointer).
 *
 * @return  bStatus_t
 */
bStatus_t SimpleProfile_SetParameter( uint8 param, uint8 len, void *value )
{
  bStatus_t ret = SUCCESS;
  switch ( param )
  {
    case SIMPLEPROFILE_CHAR1:
      if ( len == sizeof ( uint8 ) ) 
      {
        simpleProfileChar1 = *((uint8*)value);
      }
      else
      {
        ret = bleInvalidRange;
      }
      break;

    case SIMPLEPROFILE_CHAR2:
      if ( len == sizeof ( uint8 ) ) 
      {
        simpleProfileChar2 = *((uint8*)value);
      }
      else
      {
        ret = bleInvalidRange;
      }
      break;

    case SIMPLEPROFILE_CHAR3:
      if ( len == sizeof ( uint8 ) ) 
      {
        simpleProfileChar3 = *((uint8*)value);
      }
      else
      {
        ret = bleInvalidRange;
      }
      break;

    case SIMPLEPROFILE_CHAR4:
      if ( len == sizeof ( uint8 ) ) 
      {
        simpleProfileChar4 = *((uint8*)value);
        
        // See if Notification has been enabled
        GATTServApp_ProcessCharCfg( simpleProfileChar4Config, &simpleProfileChar4, FALSE,
                                    simpleProfileAttrTbl, GATT_NUM_ATTRS( simpleProfileAttrTbl ),
                                    INVALID_TASK_ID );
      }
      else
      {
        ret = bleInvalidRange;
      }
      break;

    case SIMPLEPROFILE_CHAR5:
      if ( len == SIMPLEPROFILE_CHAR5_LEN ) 
      {
        VOID osal_memcpy( simpleProfileChar5, value, SIMPLEPROFILE_CHAR5_LEN );
      }
      else
      {
        ret = bleInvalidRange;
      }
      break;
 
    case SIMPLEPROFILE_CHAR6:    
      if ( len == SIMPLEPROFILE_CHAR6_LEN )     
      {    
        VOID osal_memcpy( simpleProfileChar6, value, SIMPLEPROFILE_CHAR6_LEN );   
      }    
      else    
      {    
        ret = bleInvalidRange;    
      }    
      break; 

    case SIMPLEPROFILE_CHAR7:    
      if ( len == SIMPLEPROFILE_CHAR7_LEN )     
      {    
        VOID osal_memcpy( simpleProfileChar7, value, SIMPLEPROFILE_CHAR7_LEN );   
      }    
      else    
      {    
        ret = bleInvalidRange;    
      }    
      break; 
      
    default:
      ret = INVALIDPARAMETER;
      break;
  }
  
  return ( ret );
}

/*********************************************************************
 * @fn      SimpleProfile_GetParameter
 *
 * @brief   Get a Simple Profile parameter.
 *
 * @param   param - Profile parameter ID
 * @param   value - pointer to data to put.  This is dependent on
 *          the parameter ID and WILL be cast to the appropriate 
 *          data type (example: data type of uint16 will be cast to 
 *          uint16 pointer).
 *
 * @return  bStatus_t
 */
bStatus_t SimpleProfile_GetParameter( uint8 param, void *value )
{
  bStatus_t ret = SUCCESS;
  switch ( param )
  {
    case SIMPLEPROFILE_CHAR1:
      *((uint8*)value) = simpleProfileChar1;
      break;

    case SIMPLEPROFILE_CHAR2:
      *((uint8*)value) = simpleProfileChar2;
      break;      

    case SIMPLEPROFILE_CHAR3:
      *((uint8*)value) = simpleProfileChar3;
      break;  

    case SIMPLEPROFILE_CHAR4:
      *((uint8*)value) = simpleProfileChar4;
      break;

    case SIMPLEPROFILE_CHAR5:
      VOID osal_memcpy( value, simpleProfileChar5, SIMPLEPROFILE_CHAR5_LEN );
      break;      
      
    case SIMPLEPROFILE_CHAR6:  
      VOID osal_memcpy( value, simpleProfileChar6, SIMPLEPROFILE_CHAR6_LEN );  
      break;  

    case SIMPLEPROFILE_CHAR7:    
      VOID osal_memcpy( value, simpleProfileChar7, SIMPLEPROFILE_CHAR7_LEN );    
      break;  
  
    default:
      ret = INVALIDPARAMETER;
      break;
  }
  
  return ( ret );
}

/*********************************************************************
 * @fn          simpleProfile_ReadAttrCB
 *
 * @brief       Read an attribute.
 *
 * @param       connHandle - connection message was received on
 * @param       pAttr - pointer to attribute
 * @param       pValue - pointer to data to be read
 * @param       pLen - length of data to be read
 * @param       offset - offset of the first octet to be read
 * @param       maxLen - maximum length of data to be read
 *
 * @return      Success or Failure
 */
static uint8 simpleProfile_ReadAttrCB( uint16 connHandle, gattAttribute_t *pAttr, 
                            uint8 *pValue, uint8 *pLen, uint16 offset, uint8 maxLen )
{
  bStatus_t status = SUCCESS;

  // If attribute permissions require authorization to read, return error
  if ( gattPermitAuthorRead( pAttr->permissions ) )
  {
    // Insufficient authorization
    return ( ATT_ERR_INSUFFICIENT_AUTHOR );
  }
  
  // Make sure it's not a blob operation (no attributes in the profile are long)
  if ( offset > 0 )
  {
    return ( ATT_ERR_ATTR_NOT_LONG );
  }
 
  if ( pAttr->type.len == ATT_BT_UUID_SIZE )
  {
    // 16-bit UUID
    uint16 uuid = BUILD_UINT16( pAttr->type.uuid[0], pAttr->type.uuid[1]);
    switch ( uuid )
    {
      // No need for "GATT_SERVICE_UUID" or "GATT_CLIENT_CHAR_CFG_UUID" cases;
      // gattserverapp handles those reads

      // characteristics 1 and 2 have read permissions
      // characteritisc 3 does not have read permissions; therefore it is not
      //   included here
      // characteristic 4 does not have read permissions, but because it
      //   can be sent as a notification, it is included here
      case SIMPLEPROFILE_CHAR1_UUID:
      case SIMPLEPROFILE_CHAR2_UUID:
      case SIMPLEPROFILE_CHAR4_UUID:
        *pLen = 1;
        pValue[0] = *pAttr->pValue;
        break;

      case SIMPLEPROFILE_CHAR5_UUID:
        *pLen = SIMPLEPROFILE_CHAR5_LEN;
        VOID osal_memcpy( pValue, pAttr->pValue, SIMPLEPROFILE_CHAR5_LEN );
        break;
        
      case SIMPLEPROFILE_CHAR6_UUID:  
        *pLen = SIMPLEPROFILE_CHAR6_LEN;  
        VOID osal_memcpy( pValue, pAttr->pValue, SIMPLEPROFILE_CHAR6_LEN );  
        break;  
 
      case SIMPLEPROFILE_CHAR7_UUID:  
        *pLen = SIMPLEPROFILE_CHAR7_LEN;  
        VOID osal_memcpy( pValue, pAttr->pValue, SIMPLEPROFILE_CHAR7_LEN );  
        break; 
        
      default:
        // Should never get here! (characteristics 3 and 4 do not have read permissions)
        *pLen = 0;
        status = ATT_ERR_ATTR_NOT_FOUND;
        break;
    }
  }
  else
  {
    // 128-bit UUID
    *pLen = 0;
    status = ATT_ERR_INVALID_HANDLE;
  }

  return ( status );
}

/*********************************************************************
 * @fn      simpleProfile_WriteAttrCB
 *
 * @brief   Validate attribute data prior to a write operation
 *
 * @param   connHandle - connection message was received on
 * @param   pAttr - pointer to attribute
 * @param   pValue - pointer to data to be written
 * @param   len - length of data
 * @param   offset - offset of the first octet to be written
 *
 * @return  Success or Failure
 */
static bStatus_t simpleProfile_WriteAttrCB( uint16 connHandle, gattAttribute_t *pAttr,
                                 uint8 *pValue, uint8 len, uint16 offset )
{
  bStatus_t status = SUCCESS;
  uint8 notifyApp = 0xFF;
  
  // If attribute permissions require authorization to write, return error
  if ( gattPermitAuthorWrite( pAttr->permissions ) )
  {
    // Insufficient authorization
    return ( ATT_ERR_INSUFFICIENT_AUTHOR );
  }
  
  if ( pAttr->type.len == ATT_BT_UUID_SIZE )
  {
    // 16-bit UUID
    uint16 uuid = BUILD_UINT16( pAttr->type.uuid[0], pAttr->type.uuid[1]);
    switch ( uuid )
    {
      case SIMPLEPROFILE_CHAR1_UUID:
      case SIMPLEPROFILE_CHAR3_UUID:

        //Validate the value
        // Make sure it's not a blob oper
        if ( offset == 0 )
        {
          if ( len != 1 )
          {
            status = ATT_ERR_INVALID_VALUE_SIZE;
          }
        }
        else
        {
          status = ATT_ERR_ATTR_NOT_LONG;
        }
        
        //Write the value
        if ( status == SUCCESS )
        {
          uint8 *pCurValue = (uint8 *)pAttr->pValue;        
          *pCurValue = pValue[0];

          if( pAttr->pValue == &simpleProfileChar1 )
          {
            notifyApp = SIMPLEPROFILE_CHAR1;        
          }
          else
          {
            notifyApp = SIMPLEPROFILE_CHAR3;           
          }
        }
             
        break;

      //通知开关管理
      case GATT_CLIENT_CHAR_CFG_UUID:  
        //CHAR4的通知开关
        if(pAttr->handle == simpleProfileAttrTbl[GUA_ATTRTBL_CHAR4_CCC_IDX].handle) 
        {   
          status = GATTServApp_ProcessCCCWriteReq( connHandle, pAttr, pValue, len,  
                                                   offset, GATT_CLIENT_CFG_NOTIFY );  
        }  
        //CHAR6的通知开关        
        else if(pAttr->handle == simpleProfileAttrTbl[GUA_ATTRTBL_CHAR6_CCC_IDX].handle)   
        {   
          status = GATTServApp_ProcessCCCWriteReq( connHandle, pAttr, pValue, len,  
                                                   offset, GATT_CLIENT_CFG_NOTIFY );  
        }    
        //CHAR7的通知开关        
        else if(pAttr->handle == simpleProfileAttrTbl[GUA_ATTRTBL_CHAR7_CCC_IDX].handle)   
        {   
          status = GATTServApp_ProcessCCCWriteReq( connHandle, pAttr, pValue, len,  
                                                   offset, GATT_CLIENT_CFG_NOTIFY );  
        }            
        //其他情况不打开通知开关
        else  
        {  
          status = ATT_ERR_INVALID_HANDLE;  
        }          
        
        break; 

      case SIMPLEPROFILE_CHAR6_UUID:  
        
      //Validate the value  
      // Make sure it's not a blob oper  
      if ( offset == 0 )  
      {  
        if ( len != SIMPLEPROFILE_CHAR6_LEN )  
        {  
          status = ATT_ERR_INVALID_VALUE_SIZE;  
        }  
      }  
      else  
      {  
        status = ATT_ERR_ATTR_NOT_LONG;  
      }         
        
      //Write the value  
      if ( status == SUCCESS )  
      {  
        VOID osal_memcpy( pAttr->pValue, pValue, SIMPLEPROFILE_CHAR6_LEN );  
        notifyApp = SIMPLEPROFILE_CHAR6;  
      }  
             
      break;  

      case SIMPLEPROFILE_CHAR7_UUID:  
        
      //Validate the value  
      // Make sure it's not a blob oper  
      if ( offset == 0 )  
      {  
        if ( len != SIMPLEPROFILE_CHAR7_LEN )  
        {  
          status = ATT_ERR_INVALID_VALUE_SIZE;  
        }  
      }  
      else  
      {  
        status = ATT_ERR_ATTR_NOT_LONG;  
      }         
        
      //Write the value  
      if ( status == SUCCESS )  
      {  
        VOID osal_memcpy( pAttr->pValue, pValue, SIMPLEPROFILE_CHAR7_LEN );  
        notifyApp = SIMPLEPROFILE_CHAR7;  
      }  
             
      break;       
      
      default:
        // Should never get here! (characteristics 2 and 4 do not have write permissions)
        status = ATT_ERR_ATTR_NOT_FOUND;
        break;
    }
  }
  else
  {
    // 128-bit UUID
    status = ATT_ERR_INVALID_HANDLE;
  }

  // If a charactersitic value changed then callback function to notify application of change
  if ( (notifyApp != 0xFF ) && simpleProfile_AppCBs && simpleProfile_AppCBs->pfnSimpleProfileChange )
  {
    simpleProfile_AppCBs->pfnSimpleProfileChange( notifyApp );  
  }
  
  return ( status );
}

//******************************************************************************                
//name:             simpleProfile_HandleConnStatusCB               
//introduce:        simple服务连接状态的改变函数           
//parameter:        connHandle: 连接句柄 
//                  changeType: 改变类型   
//return:           none             
//author:           甜甜的大香瓜                     
//email:            897503845@qq.com         
//QQ group          香瓜BLE之CC2541(127442605)                      
//changetime:       2016.12.08                     
//******************************************************************************  
static void simpleProfile_HandleConnStatusCB( uint16 connHandle, uint8 changeType )
{ 
  // Make sure this is not loopback connection
  if ( connHandle != LOOPBACK_CONNHANDLE )
  {
    // Reset Client Char Config if connection has dropped
    if ( ( changeType == LINKDB_STATUS_UPDATE_REMOVED )      ||
         ( ( changeType == LINKDB_STATUS_UPDATE_STATEFLAGS ) && 
           ( !linkDB_Up( connHandle ) ) ) )
    { 
      GATTServApp_InitCharCfg( connHandle, simpleProfileChar4Config );
      GATTServApp_InitCharCfg( connHandle, simpleProfileChar6Config );  //GUA      
      GATTServApp_InitCharCfg( connHandle, simpleProfileChar7Config );  //GUA  
    }
  }
}


/*********************************************************************
*********************************************************************/
//******************************************************************************                  
//name:             GUA_SimpleGATTprofile_Char6_Notify                 
//introduce:        发送char6通道的数据             
//parameter:        nGUA_ConnHandle: 连接句柄   
//                  npGUA_Value: 要通知的数据,范围为0~SIMPLEPROFILE_CHAR6,最多20个字节   
//                  nGUA_Len: 要通知的数据的长度    
//return:           none               
//author:           甜甜的大香瓜                       
//email:            897503845@qq.com           
//QQ group          香瓜BLE之CC2541(127442605)                        
//changetime:       2016.12.29                       
//******************************************************************************     
void GUA_SimpleGATTprofile_Char6_Notify(uint16 nGUA_ConnHandle, uint8 *pGUA_Value, uint8 nGUA_Len)    
{    
  attHandleValueNoti_t  stGUA_Noti;    
  uint16 nGUA_Return;    
    
  //读出CCC的值   
  nGUA_Return = GATTServApp_ReadCharCfg(nGUA_ConnHandle, simpleProfileChar6Config);   
    
  //判断是否打开通知开关,打开了则发送数据    
  if (nGUA_Return & GATT_CLIENT_CFG_NOTIFY)   
  {    
    //填充数据  
    stGUA_Noti.handle = simpleProfileAttrTbl[GUA_ATTRTBL_CHAR6_VALUE_IDX].handle;    
    stGUA_Noti.len = nGUA_Len;    
    osal_memcpy(stGUA_Noti.value, pGUA_Value, nGUA_Len);  
      
    //发送数据  
    GATT_Notification(nGUA_ConnHandle, &stGUA_Noti, FALSE);    
  }    
} 

//******************************************************************************                  
//name:             GUA_SimpleGATTprofile_Char6_Notify                 
//introduce:        发送char6通道的数据             
//parameter:        nGUA_ConnHandle: 连接句柄   
//                  npGUA_Value: 要通知的数据,范围为0~SIMPLEPROFILE_CHAR6,最多20个字节   
//                  nGUA_Len: 要通知的数据的长度    
//return:           none               
//author:           甜甜的大香瓜                       
//email:            897503845@qq.com           
//QQ group          香瓜BLE之CC2541(127442605)                        
//changetime:       2016.12.29                       
//******************************************************************************     
void GUA_SimpleGATTprofile_Char7_Notify(uint16 nGUA_ConnHandle, uint8 *pGUA_Value, uint8 nGUA_Len)    
{    
  attHandleValueNoti_t  stGUA_Noti;    
  uint16 nGUA_Return;    
    
  //读出CCC的值   
  nGUA_Return = GATTServApp_ReadCharCfg(nGUA_ConnHandle, simpleProfileChar7Config);   
    
  //判断是否打开通知开关,打开了则发送数据    
  if (nGUA_Return & GATT_CLIENT_CFG_NOTIFY)   
  {    
    //填充数据  
    stGUA_Noti.handle = simpleProfileAttrTbl[GUA_ATTRTBL_CHAR7_VALUE_IDX].handle;    
    stGUA_Noti.len = nGUA_Len;    
    osal_memcpy(stGUA_Noti.value, pGUA_Value, nGUA_Len);  
      
    //发送数据  
    GATT_Notification(nGUA_ConnHandle, &stGUA_Noti, FALSE);    
  }    
} 
注意属性表char7的value权限是不加密的,char6的value权限理应是加密的(香瓜没加密,实际项目该权限要换成“GATT_PERMIT_AUTHEN_READ | GATT_PERMIT_AUTHEN_WRITE)。

2)替换simpleGATTprofile.h
/**************************************************************************************************
  Filename:       simpleGATTprofile.h
  Revised:        $Date: 2010-08-06 08:56:11 -0700 (Fri, 06 Aug 2010) $
  Revision:       $Revision: 23333 $

  Description:    This file contains the Simple GATT profile definitions and
                  prototypes.

  Copyright 2010 - 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 揂S 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. 
**************************************************************************************************/

#ifndef SIMPLEGATTPROFILE_H
#define SIMPLEGATTPROFILE_H

#ifdef __cplusplus
extern "C"
{
#endif

/*********************************************************************
 * INCLUDES
 */

/*********************************************************************
 * CONSTANTS
 */

// Profile Parameters
#define SIMPLEPROFILE_CHAR1                   0  // RW uint8 - Profile Characteristic 1 value 
#define SIMPLEPROFILE_CHAR2                   1  // RW uint8 - Profile Characteristic 2 value
#define SIMPLEPROFILE_CHAR3                   2  // RW uint8 - Profile Characteristic 3 value
#define SIMPLEPROFILE_CHAR4                   3  // RW uint8 - Profile Characteristic 4 value
#define SIMPLEPROFILE_CHAR5                   4  // RW uint8 - Profile Characteristic 5 value
#define SIMPLEPROFILE_CHAR6                   5  // RW uint8 - Profile Characteristic 6 value //GUA 
#define SIMPLEPROFILE_CHAR7                   6  // RW uint8 - Profile Characteristic 7 value //GUA 
  
// Simple Profile Service UUID
#define SIMPLEPROFILE_SERV_UUID               0xFFF0
    
// Key Pressed UUID
#define SIMPLEPROFILE_CHAR1_UUID            0xFFF1
#define SIMPLEPROFILE_CHAR2_UUID            0xFFF2
#define SIMPLEPROFILE_CHAR3_UUID            0xFFF3
#define SIMPLEPROFILE_CHAR4_UUID            0xFFF4
#define SIMPLEPROFILE_CHAR5_UUID            0xFFF5
#define SIMPLEPROFILE_CHAR6_UUID            0xFFF6      //GUA
#define SIMPLEPROFILE_CHAR7_UUID            0xFFF7      //GUA
  
// Simple Keys Profile Services bit fields
#define SIMPLEPROFILE_SERVICE               0x00000001

// Length of Characteristic 5 in bytes
#define SIMPLEPROFILE_CHAR5_LEN           5  

// Length of Characteristic 6 in bytes
#define SIMPLEPROFILE_CHAR6_LEN           20       //GUA
  
// Length of Characteristic 7 in bytes
#define SIMPLEPROFILE_CHAR7_LEN           20       //GUA  
/*********************************************************************
 * TYPEDEFS
 */

  
/*********************************************************************
 * MACROS
 */

/*********************************************************************
 * Profile Callbacks
 */

// Callback when a characteristic value has changed
typedef void (*simpleProfileChange_t)( uint8 paramID );

typedef struct
{
  simpleProfileChange_t        pfnSimpleProfileChange;  // Called when characteristic value changes
} simpleProfileCBs_t;

    

/*********************************************************************
 * API FUNCTIONS 
 */


/*
 * SimpleProfile_AddService- Initializes the Simple GATT Profile service by registering
 *          GATT attributes with the GATT server.
 *
 * @param   services - services to add. This is a bit map and can
 *                     contain more than one service.
 */

extern bStatus_t SimpleProfile_AddService( uint32 services );

/*
 * SimpleProfile_RegisterAppCBs - Registers the application callback function.
 *                    Only call this function once.
 *
 *    appCallbacks - pointer to application callbacks.
 */
extern bStatus_t SimpleProfile_RegisterAppCBs( simpleProfileCBs_t *appCallbacks );

/*
 * SimpleProfile_SetParameter - Set a Simple GATT Profile parameter.
 *
 *    param - Profile parameter ID
 *    len - length of data to right
 *    value - pointer to data to write.  This is dependent on
 *          the parameter ID and WILL be cast to the appropriate 
 *          data type (example: data type of uint16 will be cast to 
 *          uint16 pointer).
 */
extern bStatus_t SimpleProfile_SetParameter( uint8 param, uint8 len, void *value );
  
/*
 * SimpleProfile_GetParameter - Get a Simple GATT Profile parameter.
 *
 *    param - Profile parameter ID
 *    value - pointer to data to write.  This is dependent on
 *          the parameter ID and WILL be cast to the appropriate 
 *          data type (example: data type of uint16 will be cast to 
 *          uint16 pointer).
 */
extern bStatus_t SimpleProfile_GetParameter( uint8 param, void *value );


/*********************************************************************
*********************************************************************/
extern void GUA_SimpleGATTprofile_Char6_Notify(uint16 nGUA_ConnHandle, uint8 *pGUA_Value, uint8 nGUA_Len);
extern void GUA_SimpleGATTprofile_Char7_Notify(uint16 nGUA_ConnHandle, uint8 *pGUA_Value, uint8 nGUA_Len); 

#ifdef __cplusplus
}
#endif

#endif /* SIMPLEGATTPROFILE_H */

2、修改应用层的回调函数(替换simpleBLEPeripheral.c的simpleProfileChangeCB函数)
//******************************************************************************                
//name:             simpleProfileChangeCB               
//introduce:        simple服务的回调函数
//parameter:        paramID: 特征值ID 
//return:           none             
//author:           甜甜的大香瓜                     
//email:            897503845@qq.com         
//QQ group          香瓜BLE之CC2541(127442605)                      
//changetime:       2016.12.13                     
//******************************************************************************  
static void simpleProfileChangeCB( uint8 paramID )
{
  //通过特征值ID来分发特征值处理
  switch( paramID )
  {
    //char6的处理
    case SIMPLEPROFILE_CHAR6:  
    {
      //启动RF通信处理事件
      osal_start_timerEx( simpleBLEPeripheral_TaskID, SBP_GUA_RF_COMMUNICAION_PROCESS_EVT, 0 );        
      break;      
    }        
 
    //char7的处理,重置配对密码
    case SIMPLEPROFILE_CHAR7: 
    {      
      uint16 nGUA_ConnHandle; 
      uint8 nGUA_Char7_Value[SIMPLEPROFILE_CHAR7_LEN];
      uint8 nGUA_Ret;
      
      //获取char7的数据
      SimpleProfile_GetParameter(SIMPLEPROFILE_CHAR7, nGUA_Char7_Value);
        
      //判断接收到的RF值是否正确
      nGUA_Ret = GUA_RF_Communication_Judgment(nGUA_Char7_Value);                                 

      //指令正确则重置密码
      if(nGUA_Ret == GUA_RF_COMMUNICATION_JUDGMENT_TRUE)
      {                                
        //有效数据为0000则充值密码
        if((nGUA_Char7_Value[3] == 0x00) && (nGUA_Char7_Value[4] == 0x00) && (nGUA_Char7_Value[5] == 0x00) && (nGUA_Char7_Value[6] == 0x00))
        {          
          /*****************处理指令************************/  
          //密码重置
          gGUA_Password = 123456;      
          GUA_SNV_Password(GUA_SNV_PASSWORD_WRITE, (uint8 *)(&gGUA_Password), sizeof(gGUA_Password)); 

          //清除绑定信息
          GAPBondMgr_SetParameter(GAPBOND_ERASE_ALLBONDS, 0, NULL);     
            
          //设置1S后断开连接
          osal_start_timerEx(simpleBLEPeripheral_TaskID, SBP_GUA_TERMINATE_CONNECTION_EVT, 1000);  
              
          /*****************应答************************/            
          //获得连接句柄  
          GAPRole_GetParameter(GAPROLE_CONNHANDLE, &nGUA_ConnHandle);  
          
          //初始化缓冲区
          osal_memset(nGUA_Char7_Value, 0xFF, SIMPLEPROFILE_CHAR7_LEN);

          //命令填充
          nGUA_Char7_Value[0] = 0xFE;
          nGUA_Char7_Value[1] = 0x00;    
          nGUA_Char7_Value[2] = 0x90;
          nGUA_Char7_Value[3] = 0x8E;      

          //发送应答    
          GUA_SimpleGATTprofile_Char7_Notify(nGUA_ConnHandle, nGUA_Char7_Value, SIMPLEPROFILE_CHAR7_LEN);                  
        }  
        //有效数据不为0000则返回错误应答
        else
        {
          //获得连接句柄
          GAPRole_GetParameter(GAPROLE_CONNHANDLE, &nGUA_ConnHandle);
          
          //初始化缓冲区
          osal_memset(nGUA_Char7_Value, 0xFF, SIMPLEPROFILE_CHAR7_LEN);

          //命令填充
          nGUA_Char7_Value[0] = 0xFE;
          nGUA_Char7_Value[1] = 0x00;    
          nGUA_Char7_Value[2] = 0x80;
          nGUA_Char7_Value[3] = 0x7E;      

          //发送应答    
          GUA_SimpleGATTprofile_Char7_Notify(nGUA_ConnHandle, nGUA_Char7_Value, SIMPLEPROFILE_CHAR7_LEN);          
	}
      }
      //指令正确则重置密码       
      else
      {
        //获得连接句柄  
        GAPRole_GetParameter(GAPROLE_CONNHANDLE, &nGUA_ConnHandle);  
          
        //初始化缓冲区
        osal_memset(nGUA_Char7_Value, 0xFF, SIMPLEPROFILE_CHAR7_LEN);

        //命令填充
        nGUA_Char7_Value[0] = 0xFE;
        nGUA_Char7_Value[1] = 0x00;    
        nGUA_Char7_Value[2] = 0x80;
        nGUA_Char7_Value[3] = 0x7E;      

        //发送应答    
        GUA_SimpleGATTprofile_Char7_Notify(nGUA_ConnHandle, nGUA_Char7_Value, SIMPLEPROFILE_CHAR7_LEN);    
      }
        
      break;       
    } 
      
    default:break;
  }
}

九、注意事项

手机可能缓存了之前的代码(在更新过CC2541的代码之后,都需要清除手机端的缓存!!!),因此要清除缓存,清除缓存的方法如下:

方法一:关闭app、关闭蓝牙总开关、打开蓝牙总开关、打开app。
方法二:手机重启。


十、实验结果
仿真并全速运行工程,基于《CC2541之配对密码的读取与修改》的实验结果上(使用修改密码的指令修改设备密码之后),再使用另一台安卓手机连接CC2541,并点返回键跳过配对等待的状态,需要在几秒内向0xfff7通道发送
功能码0x90(重置密码)
fe04900000000092ffffffffffffffffffffffff 
发送重置密码指令与应答过程如下图:

则CC2541会在1S之后断开连接,此时密码被重置为123456,并且原先绑定的所有手机再次连接时,都需要重新输入密码。
重置密码过程如下图:

因此,跳过配对过程并将密码重置成功,实验成功。




  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值