This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

接收数据函数的入口



Hi,我想知道在哪个子程序调用   typedef bStatus_t (*pfnGATTReadAttrCB_t)( uint16 connHandle, gattAttribute_t *pAttr,
                                          uint8 *pValue, uint8 *pLen, uint16 offset,
                                          uint8 maxLen );        

即 CONST gattServiceCBs_t accCBs =
{
  acc_ReadAttrCB,  // Read callback function pointer
  acc_WriteAttrCB, // Write callback function pointer
  NULL             // Authorization callback function pointer
};

我在acc_WriteAttrCB 里设置断点也看不到是哪里调用这个函数的,我目的是想知道接收函数的入口。

谢谢。