Other Parts Discussed in Thread: CC2651R3, CC1352P7
Tool/software:
Hello TI experts,
I am using launchpad CC1352P7 and CC2651R3.
SDK version - 7.41.0.17
I have Ble central code modified with simple serial socket code on CC1352P7 and project zero code on CC2651R3.
I am trying to implement data transfer with L2cap connection oriented channel example provided at below link
Some part of code is working,
I am getting stack events generated "L2CAP_CHANNEL_ESTABLISHED_EVT"
But when after this when I call function
// Give max credits to the other side
bStatus_t status = -1;
status = L2CAP_FlowCtrlCredit(pEstEvt->CID, 0xFFFF);
if(status == SUCCESS)
{
UART2_printf("L2CAP_FlowCtrlCredit Success");
}
else
{
UART2_printf("L2CAP_FlowCtrlCredit error=%d",status);
}
I get error code as 0x18
Please help us to resolve this problem
Thank you
Dnyaneshvar Salve