This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

TSW14J56EVM: Date rate question

Part Number: TSW14J56EVM

Hi I am using the tsw14j56EVM along with the tsw38j84EVM. I am trying to use my own data within csv files and send them to the pattern generator. I have a matlab script which populates the csv file, I also loaded this file onto the High Speed Data Converter Pro GUI. My question is does the Data rate setting on the GUI need to match with the frequency of the signal? It seems to like this way with the test files which are provided with the software. I followed the test setup procedure described in the tsw38j84 manual but it seems to not be sent correctly. NOTE: I followed used a provided test file with and got the expected result. The only issue I can see with my data is the data rate. I am not sure How I can get it to match with what is required? I will include the code I have along with pictures from the GUI, Thanks for any help.

clear all% clears workspace
qpskMod = comm.QPSKModulator('BitInput',true);%create a QPSK modulator object
numBits = 576000;% Number of bits to process
qpskDemod = comm.QPSKDemodulator('BitOutput',true);%create a QPSK demodulator object
d = fdesign.bandpass('N,Fp1,Fp2,Ap',122,100,105,0.5,1000);
Hd = design(d);
%fvtool(Hd)
rng default % Use default random number generator
dataIn = randi([0 1], numBits, 1); % Generate vector of binary data
dataMod =qpskMod(dataIn);%modulate the binary data using QPSK
d=round(dataMod,3,'decimals');
d=d*1000;
txSignal = filter(Hd,d);
Idata=real(txSignal);
Qdata=imag(txSignal);
copyI=round(Idata*10.5);
copyQ=round(Qdata*10.5);
csvwrite('IQ3data.csv',[copyI copyQ copyI copyQ]); %write into csv file