-
Notifications
You must be signed in to change notification settings - Fork 231
Description
I am just trying to send data by BLE, to and from by using two Arduino Nano33 Iot devices, One is Peripheral(Server) and other is Central(client). Earlier when connecting with just a mobile application I was able to send data of more than 20 bytes easily without any problem, But the problem arises when I tried to between two Arduino Nano33 IOT devices. The problem is mainly arising is that I am not able to send and receive data more than 20 bytes. I tried changing max MTU value in ATT.h library file but that does not work as well. After trying with different approach I was able to change MAX_AD_DATA_LENGTH which was 31 earlier in BLEAdvertisingdata.h by doing so I am able to send data of more than 20 bytes but not able to receive data from central device.Tried most of the possible things, can anyone tell me what to do at the central device side so that I would be able to receive data at the peripheral as well.
Thank you