Quesiton about transmitRe​peat(sdrTr​ansmit, data) and sdrTransmi​t.Repeat(t​xWavefrom)

9 views (last 30 days)
While working on SDR, I realize that earlier Matlab used transmitRepeat and now it is changed to sdrTransmit.Repeat method.
Now my question is: I have a waveform that is ready to be transmitted on the zynq SDR (radio) called 'time_wave_tx'. How do I transmit the waveform file on the radio and capture the waveform file on the receiver side.
I do not want to follow the method discussed in the following link:
802.11a Transmission and Reception Using Analog Devices AD9361/AD9364
The above methed splits the data based on MSDU length and so on. Then convert into waveform to transmit.
What kind of configuration is needed to transmit over the air?
Thanks and await your response.

Answers (2)

Neil MacEwen
Neil MacEwen on 23 Jun 2020
Hi Jarul,
The interface has not changed, it is still transmitRepeat. In the 802.11a example, the data to be sent is split into chunks so that a WLAN compatible waveform can be put together. txwaveform is actually the name of the signal that can be sent.
txWaveform = wlanWaveformGenerator(data,nonHTcfg, ...
'NumPackets',numMSDUs,'IdleTime',20e-6, ...
'ScramblerInitialization',scramblerInitialization);
A more straightforward transmitRepeat example is the QPSK one.
Thanks,
Neil
  2 Comments
瑞婷 牛
瑞婷 牛 on 10 May 2022
当我使用transmitRepeat进行波形传输时,由于只有usrp b210不支持这个函数,我该怎么办

Sign in to comment.


Neil MacEwen
Neil MacEwen on 10 May 2022
Hi, I'm afraid transmitRepeat is not a supported functionality for the USRP B210. All transmission for that hardware uses streaming functionality, from the host PC, as shown in the QPSK Transmitter Example.
Kind regards,
Neil

Categories

Find more on Communications Toolbox in Help Center and File Exchange

Products


Release

R2019b

Community Treasure Hunt

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

Start Hunting!