⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 appio.h

📁 g.726编解码源程序
💻 H
字号:
/*
 *  Copyright 2002 by Texas Instruments Incorporated.
 *  All rights reserved. Property of Texas Instruments Incorporated.
 *  Restricted rights to use, duplicate or disclose this code are
 *  granted through contract.
 *  
 */
/* "@(#) RF3_UART_G726 1.00.00 07-18-02 (swat-c03)" */
/*
 *  ======== appIO.h ========
 *
 *  Apllication IO initialization and priming
 */
#ifndef APPIO_
#define APPIO_

#include <plio.h>           /* PLIO adapter declarations */

#include "appResources.h"   /* application-wide common info (and CDB) */

/*
 *  Declaration of PLIO objects used for transfer of data to/from codec,
 *  and to/from the UART in case they are ever needed by the application
 *  outside of appIO.c.
 *  plioRxCodec & plioTxUart  are only used by the Encoder and
 *  plioRxUart  & plioTxCodec are only used by the Decoder
 */
extern PLIO_Obj plioRxCodec, plioTxCodec;
extern PLIO_Obj plioRxUart, plioTxUart;

/*
 *  ======== appIOInit ========
 *  Initialize LIO and other (non-streaming) IO components, if any
 */
extern Void appIOInit();

/*
 *  ======== appIOPrime ========
 *  Prime the input/output data stream pipes
 */
extern Void appIOPrime();

#endif /* APPIO_ */

⌨️ 快捷键说明

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