Hi,
I am making an application based on the peripheral-nus example.
The checking for CR is removed and all characters are just sent further when available.
The problem is that even short messages might be split in parts when close to buffer ends.
For example, the message "John" might be cut in parts.
First "Joh" and, typically 50ms later, "n" because a new buffer was then in use for "n".
With a circular buffer short messages would not be cut apart.
Of course it is possible in the application to wait 50ms and then put it together but a circular buffer would be better.
Are there some way to have the bytes from async uart delivered to a circular buffer instead of supplying new buffers?