I have a device based on the Nordic nRF52832. I am using softdevice s132. I am using Nordic nRF5_SDK_15.3.0_59ac345. My Android device I am testing with is running Android 9.1 and has a 4.2 BLE hardware in it. It is a samsung Galaxy Tab tablet.
My firmware works fine if I have the NRF_SDH_BLE_GATT_MAX_MTU_SIZE set to 255 or lower. If I set it to > 255 (even 256), then when I try to write to my characteristic from an Android app I am writing the OS returns an error of "Failed to write characteristic - 128".
I am trying to determine if this is an error on the app side or the firmware side.
I did read one post on this forum about it not being a good idea to increase the MTU above 255. Can you clarify whether that is a hard limit of some kind?
The other interesting thing is that my firmware receives ALL of the bytes I send. I have the MTU currently set to 488 and I receive all 488 bytes on the firmware device even though the Android app is giving the write error 128.
Can this be explained?