?? carriersense.m
字號:
% Program 6-9
% carriersense.m
%
% The function of the carrier sense
%
% Input arguments
% no : terminal which carrier sensing
% now_time : now time
%
% Output argument
% result : 0: idle 1:busy
%
% Programmed by M.Okita
% Checked by H.Harada
%
function [result] = carriersense(no,now_time)
global Mnum Mstime Ttime Dtime % definition of the global variable
delay = Dtime * Ttime; % calculation of the delay time
idx = find((Mstime+delay)<=now_time & now_time<=(Mstime+delay+Ttime)); % carrier sense
if length(idx) > 0 % carrier is detected
result = 1; % channel is busy
else % charier can乫t be detected
result = 0; % channel is idle
end
%%%%%%%%%%%%%%%%%%%%%% end of file %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -