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.

question about packets sent with disorder

hi

 i know the bug about GATT_Notification() sending notification packets with disorder, see http://e2e.ti.com/support/low_power_rf/f/538/t/183129.aspx . now my question is whether there are the same bug when using GATT_WriteNoRsp() and GATT_WriteCharValue() or not. like this:use GATT_WriteNoRsp() to write to the same charactoristic .

 GATT_WriteNoRsp(datavalue1);

GATT_WriteNoRsp(datavalue2);

GATT_WriteNoRsp(datavalue3);

 will charactoristic of the server receive the value in order of datavalue1,datavalue2,datavalue3?