Other Parts Discussed in Thread: CC2640, BLE-STACK
I am trying to debugging with keyfob and i came across the fact that in my code when an email arrives its not processing the timeAPPIndGattMsg in timeApp.c.When i debug i found that the value of pMsg->method=0x07 and that of ATT_Handle_value_NOTi=27.so it not processing.Can you tell me what i am doing wrong.I am getting the GATT_MSG_EVENT value as 176
static void timeAppProcessGattMsg( gattMsgEvent_t *pMsg )
{
if ( pMsg->method == ATT_HANDLE_VALUE_NOTI ||
pMsg->method == ATT_HANDLE_VALUE_IND )
{
timeAppIndGattMsg( pMsg );
}
if ( ( pMsg->method == ATT_READ_RSP || pMsg->method == ATT_WRITE_RSP ) ||
( pMsg->method == ATT_ERROR_RSP &&
( pMsg->msg.errorRsp.reqOpcode == ATT_READ_REQ ||
pMsg->msg.errorRsp.reqOpcode == ATT_WRITE_REQ ) ) )
