I want to send a DCM signal with USRP N210

1 view (last 30 days)
Xu Jia
Xu Jia on 5 Aug 2019
I want to send a DCM signal with USRP N210.
DCM signal has been modulated, MATLAB N210 hardware support package can also be used.
I completed the example of QPSK with N210 sending and B210 receiving.
this is my procedure . I don't know what's wrong.
function Untitled(data)
persistent radio
if isempty(radio)
radio= comm.SDRuTransmitter( 'Platform', 'N200/N210/USRP2','IPAddress','192.168.10.2','ChannelMapping',1,...
'CenterFrequency',0.603e06,'LocalOscillatorOffset', 0,'Gain',0,'PPSSource', 'Internal',...
'ClockSource', 'Internal', 'MasterClockRate',100e6,'InterpolationFactor',512,...
'TransportDataType', 'int16','EnableBurstMode',false );
currentTime = 0;
while currentTime < 100
radio(data);
currentTime=currentTime+1;
end
release(radio);
end

Answers (0)

Categories

Find more on Communications Toolbox in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!