Skip to content

Commit 38deb82

Browse files
committedNov 22, 2017
initial
1 parent 7b7b9d1 commit 38deb82

14 files changed

+400
-0
lines changed
 

‎FMReciver.m

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
% Request user input from the command-line for application parameters
2+
userInput = helperFMUserInput;
3+
4+
% Calculate FM system parameters based on the user input
5+
[fmRxParams,sigSrc] = helperFMConfig(userInput);
6+
7+
% Create FM broadcast receiver object and configure based on user input
8+
fmBroadcastDemod = comm.FMBroadcastDemodulator(...
9+
'SampleRate', fmRxParams.FrontEndSampleRate, ...
10+
'FrequencyDeviation', fmRxParams.FrequencyDeviation, ...
11+
'FilterTimeConstant', fmRxParams.FilterTimeConstant, ...
12+
'AudioSampleRate', fmRxParams.AudioSampleRate, ...
13+
'Stereo', true);
14+
15+
% Create audio player
16+
player = audioDeviceWriter('SampleRate',fmRxParams.AudioSampleRate);
17+
18+
% Initialize radio time
19+
radioTime = 0;
20+
21+
% Main loop
22+
while radioTime < userInput.Duration
23+
% Receive baseband samples (Signal Source)
24+
if fmRxParams.isSourceRadio
25+
[rcv,~,lost,late] = sigSrc();
26+
else
27+
rcv = sigSrc();
28+
lost = 0;
29+
late = 1;
30+
end
31+
32+
% Demodulate FM broadcast signals and play the decoded audio
33+
audioSig = fmBroadcastDemod(rcv);
34+
player(audioSig);
35+
36+
% Update radio time. If there were lost samples, add those too.
37+
radioTime = radioTime + fmRxParams.FrontEndFrameTime + ...
38+
double(lost)/fmRxParams.FrontEndSampleRate;
39+
end
40+
41+
% Release the audio and the signal source
42+
release(sigSrc)
43+
release(fmBroadcastDemod)
44+
release(player)

‎Reciver.m

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
%SDR Reciver
2+
3+
%recive
4+
inputnoise = recive(); %TODO
5+
6+
%demodulate
7+
input = findbegin(inputnoise); %TODO
8+
recive = demodulate(input); %TODO
9+
bits = derepet(recive); %TODO
10+
data = prepostremove(bits); %TODO
11+
12+
%save data
13+
%TODO
14+
15+

‎Transmitter.asv

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
% SDR Transmitter
2+
3+
%Recive data input
4+
5+
data = [1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,0,1,1,0,1,0,1,1,0,0];
6+
% s = fopen('datei.txt','r');
7+
% bitsequence = fread(s, 'ubit1')'
8+
% fclose(s);
9+
10+
% Modulate data
11+
%prefix = [1,1,1,1,1,1,1,1];
12+
%postfix = [1,1,1,1,1,1,1,1];
13+
14+
bits = data;
15+
send = fm4modulate(bits);
16+
receive = fm4demodulate(send);
17+
18+
subplot(2,1,1)
19+
plot(receive,'ro')
20+
subplot()
21+
%Send data
22+
%send(send) %TODO
23+
% plot(send);
24+
% plot(fmdemodulate(send),'ro');

‎Transmitter.m

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
% SDR Transmitter
2+
3+
%Recive data input
4+
5+
data = [1,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,1,0,1,1,0,1,0,1,1,0,0];
6+
% s = fopen('datei.txt','r');
7+
% bitsequence = fread(s, 'ubit1')'
8+
% fclose(s);
9+
10+
% Modulate data
11+
%prefix = [1,1,1,1,1,1,1,1];
12+
%postfix = [1,1,1,1,1,1,1,1];
13+
14+
bits = data;
15+
send = fm4modulate(bits);
16+
receive = fm4demodulate(send);
17+
18+
subplot(2,1,1)
19+
plot(receive,'ro')
20+
subplot(2,1,2)
21+
plot(data, 'ro')
22+
%Send data
23+
%send(send) %TODO
24+
% plot(send);
25+
% plot(fmdemodulate(send),'ro');

‎findbits.asv

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
function x = findbits (bits,tofind)
2+
3+
x = zeros(1,length(bits)/length(tofind));
4+
5+
for i=1:length(tofind):length(bits)-1
6+
7+
x = [x,tofind == bits(1,i:i+length(tofind)-1)]
8+
9+
10+
end
11+
12+
13+
14+
15+
end

‎findbits.m

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
function x = findbits (bits,tofind)
2+
3+
x = [];
4+
5+
for i=1:length(tofind):length(bits)-1
6+
7+
x = [x,isequal(tofind,bits(1,i:i+length(tofind)-1))]
8+
9+
end
10+
end

‎fm4demodulate.asv

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
function z = fm4demodulate (bits)
2+
3+
4+
tau00 = 4;
5+
tau01 = 8;
6+
tau10 = 16;
7+
tau11 = 20;
8+
9+
tauS = 80;
10+
11+
t = 0:length(bits)-1;
12+
13+
for i = 1:length(bits)/tauS
14+
z00(i) = cos(2*pi/tau00*t((i-1)*tauS+1:i*tauS))*bits((i-1)*tauS+1:i*tauS)';
15+
z01(i) = cos(2*pi/tau01*t((i-1)*tauS+1:i*tauS))*bits((i-1)*tauS+1:i*tauS)';
16+
z10(i) = cos(2*pi/tau10*t((i-1)*tauS+1:i*tauS))*bits((i-1)*tauS+1:i*tauS)';
17+
z11(i) = cos(2*pi/tau11*t((i-1)*tauS+1:i*tauS))*bits((i-1)*tauS+1:i*tauS)';
18+
end
19+
%
20+
21+
r00 = repdecode(z00,2);
22+
r01 = repdecode(z01,2);
23+
r10 = repdecode(z10,2);
24+
r11 = repdecode(z11,2);
25+
% subplot(4,1,1)
26+
% plot(z00,'ro')
27+
% subplot(4,1,2)
28+
% plot(z01,'ro')
29+
% subplot(4,1,3)
30+
% plot(z10,'ro')
31+
% subplot(4,1,4)
32+
% plot(z11,'ro')
33+
34+
35+
36+
37+
38+
end

‎fm4demodulate.m

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
function z = fm4demodulate (bits)
2+
3+
4+
tau00 = 4;
5+
tau01 = 8;
6+
tau10 = 16;
7+
tau11 = 20;
8+
9+
tauS = 80;
10+
11+
t = 0:length(bits)-1;
12+
13+
for i = 1:length(bits)/tauS
14+
z00(i) = cos(2*pi/tau00*t((i-1)*tauS+1:i*tauS))*bits((i-1)*tauS+1:i*tauS)';
15+
z01(i) = cos(2*pi/tau01*t((i-1)*tauS+1:i*tauS))*bits((i-1)*tauS+1:i*tauS)';
16+
z10(i) = cos(2*pi/tau10*t((i-1)*tauS+1:i*tauS))*bits((i-1)*tauS+1:i*tauS)';
17+
z11(i) = cos(2*pi/tau11*t((i-1)*tauS+1:i*tauS))*bits((i-1)*tauS+1:i*tauS)';
18+
end
19+
%
20+
21+
r00 = repdecode(z00,2);
22+
r01 = repdecode(z01,2);
23+
r10 = repdecode(z10,2);
24+
r11 = repdecode(z11,2);
25+
26+
z00 = round(r00/(tauS/2));
27+
z01 = round(r01/(tauS/2));
28+
z10 = round(r10/(tauS/2));
29+
z11 = round(r11/(tauS/2));
30+
31+
for i=1:length(z00)
32+
z(2*i-1:2*i) = z00(i).*[0,0]+z01(i).*[0,1]+z10(i).*[1,0]+z11(i).*[1,1];
33+
end
34+
35+
subplot(4,1,1)
36+
plot(z00,'ro')
37+
subplot(4,1,2)
38+
plot(z01,'ro')
39+
subplot(4,1,3)
40+
plot(z10,'ro')
41+
subplot(4,1,4)
42+
plot(z11,'ro')
43+
44+
45+
46+
47+
48+
49+
50+
end

‎fm4modulate.asv

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
function y= fm4modulate(data)
2+
3+
tau00 = 4;
4+
tau01 = 8;
5+
tau10 = 16;
6+
tau11 = 20;
7+
8+
tauS = 80;
9+
10+
% repencode
11+
12+
t = linspace(0,tauS*length(data),length(data));
13+
14+
y00 = findbits(data,[0,0]);
15+
y01 = findbits(data,[0,1]);
16+
y10 = findbits(data,[1,0]);
17+
y11 = findbits(data,[1,1]);
18+
19+
z00 = repencode(y00,tauS).*cos(2*pi/tau00*t);
20+
z01 = repencode(y01,tauS).*cos(2*pi/tau01*t);
21+
z10 = repencode(y10,tauS).*cos(2*pi/tau10*t);
22+
z11 = repencode(y11,tauS).*cos(2*pi/tau11*t);
23+
24+
z = z00 + z01 + z10 + z11;
25+
26+
plot(t,z)
27+
28+
29+
30+
31+
32+
end

‎fm4modulate.m

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
function z = fm4modulate(data)
2+
3+
tau00 = 4;
4+
tau01 = 8;
5+
tau10 = 16;
6+
tau11 = 20;
7+
8+
tauS = 80;
9+
10+
% repencode
11+
12+
t = linspace(0,tauS*length(data)-1,tauS*length(data));
13+
14+
y00 = findbits(data,[0,0]);
15+
y01 = findbits(data,[0,1]);
16+
y10 = findbits(data,[1,0]);
17+
y11 = findbits(data,[1,1]);
18+
19+
z00 = repencode(y00,2*tauS).*cos(2*pi/tau00*t);
20+
z01 = repencode(y01,2*tauS).*cos(2*pi/tau01*t);
21+
z10 = repencode(y10,2*tauS).*cos(2*pi/tau10*t);
22+
z11 = repencode(y11,2*tauS).*cos(2*pi/tau11*t);
23+
24+
% subplot(5,1,1)
25+
% plot(z00)
26+
% subplot(5,1,2)
27+
% plot(z01)
28+
% subplot(5,1,3)
29+
% plot(z10)
30+
% subplot(5,1,4)
31+
% plot(z11)
32+
% subplot(5,1,5)
33+
% plot(data,'ro')
34+
z = z00 + z01 + z10 + z11;
35+
%
36+
% plot(t,z)
37+
38+
end

‎fmdemodulate.m

+46
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
function bhat = demodulate(r)
2+
%UNTITLED2 Summary of this function goes here
3+
% Detailed explanation goes here
4+
5+
tau0 = 20;
6+
tau1 = 8;
7+
tauS = 80;
8+
9+
t = 0:length(r)-1;
10+
11+
% y0 = cos(2*pi/tau0*t).*r;
12+
% y1 = cos(2*pi/tau1*t).*r;
13+
14+
for i = 1:length(r)/tauS
15+
z0(i) = cos(2*pi/tau0*t((i-1)*tauS+1:i*tauS))*r((i-1)*tauS+1:i*tauS)'
16+
z1(i) = cos(2*pi/tau1*t((i-1)*tauS+1:i*tauS))*r((i-1)*tauS+1:i*tauS)'
17+
end
18+
19+
20+
bhat = (z1-z0+tauS/2)/tauS;
21+
%
22+
% subplot(7,1,1);
23+
% plot(t,r);
24+
% axis([0 length(r) -1 1]);
25+
% subplot(7,1,2);
26+
% plot(t,y0);
27+
% axis([0 length(r) -1 1]);
28+
% subplot(7,1,3);
29+
% plot([1:length(r)/tauS],z0,'o');
30+
% axis([1 length(r)/tauS 0 40]);
31+
% subplot(7,1,4);
32+
% plot(t,y1);
33+
% axis([0 length(r) -1 1]);
34+
% subplot(7,1,5);
35+
% plot([1:length(r)/tauS],z1,'o');
36+
% axis([1 length(r)/tauS 0 40]);
37+
% subplot(7,1,6);
38+
% plot([1:length(r)/tauS],z1-z0,'o');
39+
% axis([1 length(r)/tauS -40 40]);
40+
% subplot(7,1,7);
41+
% plot([1:length(r)/tauS],bhat,'o');
42+
% axis([1 length(r)/tauS 0 1]);
43+
44+
end
45+
46+

‎fmmodulate.m

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
function y = modulate(b)
2+
%UNTITLED Summary of this function goes here
3+
% Detailed explanation goes here
4+
tau0 = 20;
5+
tau1 = 8;
6+
tauS = 80;
7+
8+
b_rep = repencode(b, tauS);
9+
t = linspace(0,length(b_rep)-1,length(b_rep));
10+
11+
y1 = b_rep.*cos(2*pi/tau1*t);
12+
y2 = (1-b_rep).*cos(2*pi/tau0*t);
13+
% subplot(5,1,1)
14+
% x1 = 1:length(b);
15+
% plot(x1,b,'o');
16+
% subplot(5,1,2)
17+
% plot(t, b_rep)
18+
% subplot(5,1,3)
19+
% plot(t, y1)
20+
% subplot(5,1,4)
21+
% plot(t,y2)
22+
% subplot(5,1,5)
23+
% plot(t,y1+y2);
24+
25+
y = y1+y2;
26+
end
27+

‎repdecode.m

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
function outputsequence = repdecode(bit_sequence, n)
2+
% function output = repdecode(seq, n)
3+
%
4+
% Zweck: Wandelt eine repetierte Bitsequenz wieder in die normale
5+
% Bitsequenz zurück in dem es den Mittelwert aus den n-mal repetitiven Bits
6+
% nimmt.
7+
%
8+
% Parameters: bit_sequence ... Bitsequenz
9+
% n ... Repetitionszahl jedes Bits
10+
%
11+
% Returns: outputsequence ... ausgegebene Bitsequenz
12+
%
13+
outputsequence = round(sum(reshape(bit_sequence, n, length(bit_sequence)/n))/n);
14+
15+
end
16+

‎repencode.m

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
function outputsequence = repencode(bit_sequence, n)
2+
% function outputsequence = repencode(seq, n)
3+
%
4+
% Zweck: Repetiercode der jedes Bit in einer Bitsequenz n-mal repetiert
5+
% z.B. 101 -> 111000111
6+
%
7+
% Parameters: bit_sequence ... Bitsequenz
8+
% n ... Repetitionszahl jedes Bits
9+
%
10+
% Returns: outputsequence ... ausgegebene Bitsequenz
11+
%
12+
13+
% Macht aus einer aus einem [1xm]-Vektor eine [nxm]-Matrix
14+
SEQ = repmat(bit_sequence, n,1);
15+
16+
% Wandelt eine [nxm]-Matrix in ein [1x(n*m)]-Vektor um
17+
outputsequence = reshape(SEQ, 1, length(bit_sequence)*n);
18+
19+
end
20+

0 commit comments

Comments
 (0)
Please sign in to comment.