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,
I got a nexus P6 smart phone and a samsing note 5 smartphones.
I was able to see the LL_REQUEST_LEN and Response link layer commands in the sniffer.
return values exactly like it was described in e2e.ti.com/.../542688
cc2640 request LL_REQUEST_LEN : maxRxOctet of 251 & maxTxOctets of 251
Nexus P6 (or samsung note 5) LL_LENGTH_RSP: maxRxOctet of 251 & maxTxOctets of 27
I need to send more than 27 bytes in data packets from the cc2640 peripheral into the Android smartphone.
I based my tests on the throughput simple peripheral project.
I succeed to send 20 bytes notifications to the Android phone, the packets are also seen in sniffer.
when I increase the number of bytes to 30, the status = GATT_Notification( connectionHandle, ¬i, GATT_NO_AUTHENTICATION);
always return 0x1b; (and packet is not shown in the sniffer)
It also seems that I didn't get a ATT_MTU_UPDATED_EVENT callback after setDataLenCmd was sent (although that I saw the nexus P6 response in the sniffer log)
I also tried to read data through characteristic 5 ; when defining the array size less than 20 bytes I get the data ok into the nexus p6; however when the array size is 30 bytes I don't get it.
What could be the problem?
Thanks,
MF
Hi MF,
The negotiated DLE TX and RX sizes are independent of the ATT MTU size, thus they must be configured independently.
In Android, your client app must request a change in the ATT MTU size to use a value greater than the default 23. See this Stackoverflow article.
Also, you should not attempt to send more than the max ATT MTU size bytes (less based on the selected procedure). The examples in the SDK show how to request the max permissible size with the value is in the 'len' parameter.
Best wishes