EttusResearch / uhd

The USRP™ Hardware Driver Repository
http://uhd.ettus.com
Other
975 stars 655 forks source link

Question about how to create a multiUSRP object with 2 x310 with dual-10GbE each #773

Closed CarlosHdezUAH closed 2 months ago

CarlosHdezUAH commented 2 months ago

I have two x310 with two TwinRX each and I want to create a multiUSRP object in the Python API that accesses all of them simultaneously. As I have read you can specify a single x310 with dual 10GbE as follows:

sdr_addrs = "addr=192.168.10.2" # uses a single 10Gb Ethernet interface on an N3x0 or X3x0 or X4x0

sdr_addrs = "addr=192.168.10.2,second_addr=192.168.20.2" # uses 2 10Gb Ethernet interfaces on a N3x0 or X3x0 or X4x0 (requires that you flashed the FPGA wth the XG image)

And you can specify two different x310s to get the sum of their channels as follows:

sdr_addrs = "addr0=192.168.10.2,addr1=192.168.30.2"

If my configuration is as follows:

First x310:

-192.168.30.2 -192.168.40.2

Second x310:

-192.168.50.2 -192.168.60.2

Would it be possible to combine these calls to access both x310 simultaneously via dual 10GbE?