I need to calculate the max number of concurrent connection Central can support given the following
- Connection Internval = 7.5ms
- Baud Rate per connected peripheral: 3072Bytes per second (3KBytes ever 1 second)
- Softdevice: S140
- Only 1 Packet can be sent per connection internval. (Limitation in our software) This means that in 7.5ms only 244 payload bytes can be sent (I.e Max ATT value).
I know the S140 can support 20 concurrent connection. But can it support 20 when every connection needs to maintain a baud rate of 3KBytes per second. So image all connected peripherals are sending data at the same time, they all need to send 3KBytes in 1 second.
I don't understand how these concurrent connection will operate relative to the Connection Interval. For example will peripheral 1 transmit for the first 7.5ms, then peripheral 2 will transmit for the second 7.5ms, is this what will happen?