Hello,
i have complied and run this https://github.com/NordicPlayground/nRF5x-custom-ble-service-tutorial program, so in on_write function am copying data from receiving buffer to array... like this
for(i=0; i<p_evt_write->len; i++)
{
dt_array[i] = p_evt_write->data[i];
}
here i am able to receive only one byte
But i want receive multiple bytes so what and all changes need to be done here
Please resolve this issue its little urgent..!!
thank you