Is it possible to establish two or more connections with different peripherals? If yes what is the maximum number?
Is it possible to establish two or more connections with different peripherals? If yes what is the maximum number?
Hi,
Yes, it is possible with multiple connections. Using the SoftDevice Controller the maximum number of connections is 20, as that is maximum of what we test. In principle it may also be possible to get higher numbers, but in practice the limit is often lower. That is because factors like connection interval and event lengths play a key role. (The Zephyr LL has a higher number but for nRF devices, the SoftDevice Controller is what you should use).
The central_multilink sample demonstrate multiple connections as a central.
Thank you, Einar.