How to Transmit Repeat with B200mini

7 Ansichten (letzte 30 Tage)
Jiyan Dogan
Jiyan Dogan am 20 Aug. 2022
Bearbeitet: Walter Roberson am 7 Mär. 2023
Hey guys, im trying to transmit a signal via Ettus B200mini. My problem is how can i transmit my signal repeatedly? Is there any function like transmitRepeat() like with the Adalm Pluto SDR's?

Akzeptierte Antwort

Nadia Shaik
Nadia Shaik am 7 Mär. 2023
Bearbeitet: Nadia Shaik am 7 Mär. 2023
Hi Jiyan,
I understand that you wish to transmit a signal repeatedly via "Ettus B200mini" and are looking for a function similar to "transmitRepeat".
Unfortunately, "transmitRepeat" supports only "E3xx" series radios and there aren't any similar functions available for "B200mini" radios. As a workaround you can use a while loop to continuosly transmit a signal.
Here is a code snippet for the same:
usrpRadio = comm.SDRuTransmitter('Platform', 'B200mini', 'IPAddress', '192.168.10.2');
usrpRadio.CenterFrequency = 2.4e9;
usrpRadio.Gain = 20;
txSig = randn(1, 10000);
while true
usrpRadio(txSig.');
end
You can modify the while loop according to your use case.
I hope the above workaround resolves your query.
  2 Kommentare
Walter Roberson
Walter Roberson am 7 Mär. 2023
Bearbeitet: Walter Roberson am 7 Mär. 2023
https://www.mathworks.com/matlabcentral/answers/773048-transmitrepeat-function-not-found-n-matlab-2020a#comment_1391907 had a previous discussion. The image for B200 just does not support the feature so you would need to customize the image.
Jiyan Dogan
Jiyan Dogan am 7 Mär. 2023
Yes i solved the problem months ago with while loop but nevertheless thanks for your reply Nadia.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Communications Toolbox finden Sie in Help Center und File Exchange

Produkte


Version

R2022a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by