fifo.h

来自「基于跳频的音频连接系统设计(Mono Audio Link Using Freq」· C头文件 代码 · 共 41 行

H
41
字号

 /******************************************************************************************************
 *                                                                                                     *
 *        **********                                                                                   *
 *       ************                                                                                  *
 *      ***        ***                                                                                 *
 *      ***   +++   ***                                                                                *
 *      ***   + +   ***                                                                                *
 *      ***   +                        					FIFO include file  			                   *
 *      ***   + +   ***                                                                                *
 *      ***   +++   ***                                                                                *
 *      ***        ***                                                                                 *
 *       ************                                                                                  *
 *        **********                                                                                   *
 *                                                                                                     *
 *******************************************************************************************************
 *                                                                                                     *
 *******************************************************************************************************
 * Compiler: Keil C51                                                                                  *
 * Target platform:  8051F005                                                                          *
 *******************************************************************************************************
 * Revision history:   																				   *
 * Initial release, HKI, 01.08.2004    			                                                       *
 ******************************************************************************************************/

#include <include.h>

#ifndef FIFO_H
#define FIFO_H

 /******************************************************************************************************
 * 										   		Function headers									   *
 ******************************************************************************************************/

// Read from FIFO. Fixed at 16 byte transfers.
void readFIFO(void);

// Write to FIFO. Fiexed at 16 byte transfers.
void writeFIFO(void);

#endif

⌨️ 快捷键说明

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