txrx.h

来自「应用于无线通信的RS编码和OFDM调制源程序。64点FFT」· C头文件 代码 · 共 17 行

H
17
字号
/* Proceed channel encoding and modulation:
 * SourceCode[] is the source coded data, SrcVector symbols in length;
 * FinalData[] is the output data;
 */
WordType Transmit(short SourceCode[], float FinalData[]);

/* Proceed channel decoding and demodulation:
 * RecData[] is the received data, more than (SymbolSize * SymPerFrame) in length;
 * ChanCodeData[] is the output RS decoded data;
 */
WordType Receive(short RecData[], short ChanCodeData[]);

/* Find the starting point per integrate OFDM frame:
 * SignalIn[] is the processed signal;
 * FirstFrame indicates the frame is the first one or not;
 */
WordType FindFrame(short SignalIn[], WordType FirstFrame);

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?