CC2540例程找不到函数定义
为什么CC2540,1.3.2协议栈中的SimpleBLEPeripheral例程中找不到函数GATTServApp_ProcessCharCfg的定义?
请使用最新版协议栈试下,下载地址: http://www.ti.com.cn/tool/cn/ble-stack
在gattservapp.h里
/**
* @brief Process Client Charateristic Configuration change.
*
* @param charCfgTbl - characteristic configuration table.
* @param pValue - pointer to attribute value.
* @param authenticated - whether an authenticated link is required.
* @param attrTbl - attribute table.
* @param numAttrs - number of attributes in attribute table.
* @param taskId - task to be notified of confirmation.
*
* @return Success or Failure
*/
extern bStatus_t GATTServApp_ProcessCharCfg( gattCharCfg_t *charCfgTbl, uint8 *pValue,
uint8 authenticated, gattAttribute_t *attrTbl,
uint16 numAttrs, uint8 taskId );
OK谢谢啦