Hello,
I am writing code in zephyr on nRF52840. I am advertising my BLE. and we have a stable android app (built-in a flutter). My problem is when I am trying to write an array of data from android app data characteristics one by one. It writes first data and it stucks, it seems that nRF52840 does not respond to write. I haven't used the write without response property but still, I have to write property in flutter "withoutResponse:true" to proceed. that's why I believe nRF52840 is not responding. Is this understanding correct?
await characteristic.write(bytes, withoutResponse: true ); //flutter code
I have defined Characteristic as shown below:
Is there anything wrong with my code? How can I make sure my nRF52840 is responding back?
Thanks in advance,
Regards,
Neeraj Dhekale