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

📄 variable.c

📁 ATMEL全套MP3设计资料
💻 C
字号:
/*C**************************************************************************
* $RCSfile: variable.c,v $
*----------------------------------------------------------------------------
* Copyright (c) 2002 Atmel.
*----------------------------------------------------------------------------
* RELEASE:      $Name: DEMO_FAT_1_9_9 $      
* REVISION:     $Revision: 1.5 $     
* FILE_CVSID:   $Id: variable.c,v 1.5 2002/09/06 12:59:12 njourdan Exp $       
*----------------------------------------------------------------------------
* PURPOSE:
* This file contains the definition of the global variables
*****************************************************************************/

 
/*_____ I N C L U D E S ____________________________________________________*/

#include "config.h"                         /* system definition */
#include "..\file\wav.h"                    /* wav file definition */


/*_____ M A C R O S ________________________________________________________*/


/*_____ D E F I N I T I O N ________________________________________________*/

bdata   bit     gl_kbd_lock;            /* set to TRUE if keyboard locked */
bdata   bit     gl_key_press;           /* set to TRUE if a key is decoded */
idata   Byte    gl_key;                 /* value of the key pressed */
data    Byte    gl_kbd_tick;            /* keyboard tick counter */

bdata   bit     gl_memory;              /* selected memory */
bdata   bit     gl_mem_failure;         /* memory hardware failure */
data    Uint32  gl_ptr_mem;             /* memory data pointer */
data    Byte    gl_mem_tick;            /* memory tick counter */

data    Byte    gl_cpt_tick;            /* general tick counter */

pdata   Byte    gl_buffer[GL_BUF_SIZE];
data    Byte    gl_pointer;

/* const for SBC libraries */
code    Byte    gl_sbc_vendor_id[8] = SBC_VENDOR_ID;
code    Byte    gl_sbc_product_id[16] = SBC_PRODUCT_ID;
code    Byte    gl_sbc_revision_id[4] = SBC_REVISION_ID;

code    wav_struct  gl_wav_header = WAV_HEADER;



/*_____ D E C L A R A T I O N ______________________________________________*/

⌨️ 快捷键说明

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