I have read these the following posts:
devzone.nordicsemi.com/.../ devzone.nordicsemi.com/.../
But, most of the answers are quite old. I am wondering if the solution to send multiple notifications is still an valid answer.
Thank you.
I have read these the following posts:
devzone.nordicsemi.com/.../ devzone.nordicsemi.com/.../
But, most of the answers are quite old. I am wondering if the solution to send multiple notifications is still an valid answer.
Thank you.
Hi Jack,
Short answer is YES.
Long answer follows:
Cheers Jan
The post you mention is solving the basic problem "how to cut longer message into 20-byte fragments, stack them to BLE Stack - aka Nordic Soft Device - to go out as Tx packets, manage overflow of internal Soft Device buffers and continue once some buffer is empty until all data go out". Now it's question if you need some "session" management on top of it (e.g. which side can talk when, how you find out that whole "long message" has arrived and you can process it etc,) In principle you can define per message or per fragment but there are countless ways how to define all the details...
The post you mention is solving the basic problem "how to cut longer message into 20-byte fragments, stack them to BLE Stack - aka Nordic Soft Device - to go out as Tx packets, manage overflow of internal Soft Device buffers and continue once some buffer is empty until all data go out". Now it's question if you need some "session" management on top of it (e.g. which side can talk when, how you find out that whole "long message" has arrived and you can process it etc,) In principle you can define per message or per fragment but there are countless ways how to define all the details...