This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

how to increase receiving length of data from apk to controller BLE

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

Parents Reply Children
Related