protos.h

来自「射频芯片驱动」· C头文件 代码 · 共 47 行

H
47
字号
/** @file protos.h
 *
 * @author Runar Kjellhaug
 *
 * @compiler This program has been tested with Keil C51 V7.50.
 *
 * @copyright
 * Copyright (c) 2005 Nordic Semiconductor. All Rights Reserved.
 *
 * The information contained herein is confidential property of Nordic Semiconductor. The use,
 * copying, transfer or disclosure of such information is prohibited except by express written
 * agreement with Nordic Semiconductor.
 * @endcopyright
 *
 * $Date: 30.01.06 13:11 $
 * $Revision: 11 $
 *
 */// UINT type definition
#ifndef _UINT_DEF_
#define _UINT_DEF_
typedef unsigned int UINT;
#endif  /* _UINT_DEF_ */

// BYTE type definition
#ifndef _BYTE_DEF_
#define _BYTE_DEF_
typedef unsigned char BYTE;
#endif   /* _BYTE_DEF_ */

//
// Prototypes
//

//  SPI functions
//unsigned char SPI_Write(unsigned char byte);
//unsigned char SPI_Read(void);




//void Freq_Sweep_TX(void);
//void Freq_Sweep_RX(void);
//void Stop_Freq_Sweep(void);


//void Enter_Testmode(void);

⌨️ 快捷键说明

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