I want to send a DCM signal with USRP N210

조회 수: 1 (최근 30일)
Xu Jia
Xu Jia 2019년 8월 5일
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

답변 (0개)

카테고리

Help CenterFile Exchange에서 Communications Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by