BitRate = 9600;
ChipRate = 1228800;
N = 184; % 9.6 KBps rate -> 184 netto data bits in each 20 msec packet
MFType = 1; % Matched filter type - Raised Cosine
R = 5; % Analog Signal Simulation rate
% ------------------------ Viterbi Polynom -------------------
G_Vit = [1 1 1 1 0 1 0 1 1; 1 0 1 1 1 0 0 0 1];
K = size(G_Vit, 2); % number of cheap per data bit
L = size(G_Vit, 1); % number of cheap per data bit
% ------------------------ Walsh Matrix ----------