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?