Can MATLAB 2013b be used to interface with USRP X310? Or do you need higher versions? And how do you actually use the add on package? What is is real purpose? Thanks a lot.
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
VINAYAK KARANDIKAR
el 9 de En. de 2019
Comentada: VINAYAK KARANDIKAR
el 9 de En. de 2019
connectedRadios = findsdru;
if strncmp(connectedRadios(1).Status, 'Success', 7)
switch connectedRadios(1).Platform
case {'B200','B210'}
address = connectedRadios(1).SerialNum;
platform = connectedRadios(1).Platform;
case {'N200/N210/USRP2'}
address = connectedRadios(1).IPAddress;
platform = 'N200/N210/USRP2';
case {'X300','X310'}
address = connectedRadios(1).IPAddress;
platform = connectedRadios(1).Platform;
end
else
address = '192.168.10.2';
platform = 'N200/N210/USRP2';
end
Undefined function or variable 'findsdru'.
0 comentarios
Respuesta aceptada
Walter Roberson
el 9 de En. de 2019
No you need r2016b for that. In the below table the appropriate entry is the one under Communications for Embedded Radio.
https://www.mathworks.com/hardware-support/system-requirements.html
7 comentarios
Walter Roberson
el 9 de En. de 2019
I am not even close to a specialist on USRP so I do not know what the lastest hardware revs are or when they became supported, but Yes, generally speaking, the latest MATLAB will have the widest support. However, for timing and testing reasons, each MATLAB release does not necessarily support the newest rev that was available as of the MATLAB release date (e.g., mid September 2018 for R2018b.)
Más respuestas (0)
Ver también
Categorías
Más información sobre Communications Toolbox en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!