📄 appmain.h
字号:
/*
* Copyright 2003 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.
*
*/
/* "@(#) ReferenceFrameworks 2.10.00.11 04-30-03 (swat-d15)" */
/*
* ======== appMain.h ========
*
* Apllication Main initialization and priming
* xjs 2006 11 7
*/
#ifndef APPMAIN_
#define APPMAIN_
#ifdef __cplusplus
extern "C" {
#endif
/*
* Declaration of PIO objects used for transfer of data to/from codec,
* in case they are ever needed by the application outside of appIO.c.
*/
#define LIGHT *((volatile uint32_t*)0x90080010)
#define DATALEN 0x10000
#define HAS_ENC 1
#define HAS_DEC 0
extern int32_t write_tag, read_tag;
extern int32_t dec_tag[2];
extern uint8_t enc_Buf[2][DATALEN];
extern uint8_t dec_Buf[2][DATALEN];
extern uint8_t *pstart,*pputdata,*pgetdata;
#ifdef __cplusplus
}
#endif /* extern "C" */
#endif /* APPIO_ */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -