Effacer les filtres
Effacer les filtres

How to create a USRP NI 2920 Transmitter object in MATLAB

12 vues (au cours des 30 derniers jours)
Sana Rehman
Sana Rehman le 21 Fév 2022
Réponse apportée : Ninad le 20 Jan 2024
Hi i am working with NI 2920 usrp . i can detect the sdr using the code 'findsdru ',but i cannot figure out how to send the ppm signal that i created earlier in matlab to the usrp . What i am getting is, i need to create an object but still how will a real time transmission will carry out is not clear . Any help is really appreciated.

Réponses (1)

Ninad
Ninad le 20 Jan 2024
Hi Sana,
As per my understanding, you are working with a NI 2920 USRP and trying to send a PPM signal that you created earlier in MATLAB to the USRP. You have used the "findsdru" code to detect the SDR, but are unsure how to create an object and carry out real-time transmission.
To send data to a USRP hardware device, you can use the "comm.SDRuTransmitter" object in MATLAB. The SDRuTransmitter System object sends data to a Universal Software Radio Peripheral (USRP) hardware device, enabling simulation and development for various software-defined radio applications.
The following line of code creates a defautl SDRu transmitter System object.
tx = comm.SDRuTransmitter
The following line of code sends data to a USRP device associated with the "comm.SDRuTansmitter" System object "tx" and returns an integer value that indicates data discontinuity for the input data input.
underrun = tx(input)
Where, "input" is an input signal sent to the USRP radio, specified as a complex column vector or complex matrix.
You can go through following MATLAB documentation for more details on the "comm.SDRuTransmitter" object:
Hope this helps.
Regards
Ninad

Catégories

En savoir plus sur Communications Toolbox dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by