I am developing a Bluetooth Low Energy (BLE) application based on Channel Sounding (CS) using the nRF Connect SDK v3.0.2 on ME54BS01 modules from Minew Semiconductor (powered by the nRF54L15). The setup involves one device acting as a CS Reflector, advertising a custom GATT service with notifications and participating in CS procedures, while multiple initiators (also ME54BS01-based) attempt to connect concurrently to perform CS measurements and receive environmental sensor data. The reflector is configured with CONFIG_BT_MAX_CONN=4 and CONFIG_BT_MAX_PAIRED=4, and advertises both connectable and non-connectable extended advertisements. Each initiator performs GATT discovery, subscribes to notifications, and initiates CS exchanges. However, only one initiator can connect to the reflector at a time—subsequent initiators fail to establish a connection (e.g., with error 0x02 or -128), despite no hardware faults. The issue is symmetrical: whichever initiator connects first succeeds, the others fail. All devices use random addresses, bonding is disabled, and GATT client support is enabled. My goal is to enable multiple concurrent GATT + CS connections to a single reflector device. I am seeking clarification on whether the SoftDevice Controller for nRF54L15 currently supports multiple concurrent CS-enabled peripheral connections and whether additional controller configurations (such as CONFIG_BT_CTLR_SDC_MAX_CONN) or changes in the CS stack are required to enable this functionality reliably.Also if anyone has some similar project that is working i would appreciate the help