Recently, I am reading the core code about the frame detection described in your repository called SDR_Matlab_OFDM_802.11a_2.4GHz. But some parameters setting confuse me. To be exact, i do not understand the intention of parameter Length_over_Threshold and why the value of Length_over_Threshold should be 230.
For another, the nexe code block confuses me.
for x=1:length(Packet_Front_idx)-1
if M_n(Packet_Front_idx(x)+Length_over_Threshold)>Threshold;
idx=Packet_Front_idx(x)+L+1;
end
end
If you are free, I would be more than thankful to receive your answers to my questions.
Recently, I am reading the core code about the frame detection described in your repository called SDR_Matlab_OFDM_802.11a_2.4GHz. But some parameters setting confuse me. To be exact, i do not understand the intention of parameter Length_over_Threshold and why the value of Length_over_Threshold should be 230.
For another, the nexe code block confuses me.
for x=1:length(Packet_Front_idx)-1 if M_n(Packet_Front_idx(x)+Length_over_Threshold)>Threshold; idx=Packet_Front_idx(x)+L+1; end endIf you are free, I would be more than thankful to receive your answers to my questions.