demux.m
来自「The GSMSP uses the USRP hardware device 」· M 代码 · 共 24 行
M
24 行
function [ rx_data ] = DeMUX(rx_burst)% DeMUX: This pice of code does the demultiplexing of the received% GSM burst.%% SYNTAX: [ rx_data ] = DeMUX(rx_burst)%% INPUT: ESTIMAE: An entire 148 bit GSM burst. The format is expected% to be:%% [ TAIL | DATA | CTRL | TRAINING | CTRL | DATA | TAIL ]% [ 3 | 57 | 1 | 26 | 1 | 57 | 3 ]% % OUTPUT:% rx_data: The contents of the datafields in the received burst.%% WARNINGS: None.%% AUTHOR: Jan H. Mikkelsen / Arne Norre Ekstr鴐% EMAIL: hmi@kom.auc.dk / aneks@kom.auc.dk%% $Id: DeMUX.m,v 1.3 1997/11/18 12:46:18 aneks Exp $rx_data=[ rx_burst(4:60) , rx_burst(89:145) ];
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?