Hello, I want to send the signal from one usrp2940r and receive it using another USRP2940. I use following code
tx = comm.SDRuTransmitter(...
'Platform', 'X310', ...
'IPAddress', '172.16.4.43', ... % Replace with your device's IP address
'SerialNum', '308D31B', ...
'CenterFrequency', 2.5e9, ...
'InterpolationFactor', 256);
mod = comm.DPSKModulator(BitInput = true);
for counter = 1:20
data = randi([0 1],30,1);
modSignal = mod(data);
tx(modSignal);
end
and i get following error
Error using
comm.SDRuTransmitter/setupImplLocal
Radio with IP address
'192.168.10.2' is not of the
specified platform 'X310'.
Error in
comm.internal.SDRuBase/setupImpl
Error in TRY (line 10)
tx(modSignal);
My USRP is connected to computer using PCI cable and computer is connected to the network of my institution. I have installled communication toolbox USRP package