rfid_x5530.h

来自「找的一个用U2270B开发的射频卡项目文件」· C头文件 代码 · 共 40 行

H
40
字号
// $Id: rfid_x5530.h,v 1.1 2006/09/25 22:08:15 tprescott Exp $
/*****************************************************
Project : rfid_x5530.c
Date    : 9/08/2006
Author  : Toby Prescott                   
Company : Atmel                           
Comments: AVR Studio GCC

Revisions:
	v1.0 - Started written for CodeVision 
	v2.1 - 3/15/06 Changed from ASCII + stored
			vars in EEPROM
	v2.6 - Clean for WinAVR
*****************************************************/  
#ifndef RFIDX5530_H__
#define RFIDX5530_H__

//   List your includes
#include <avr/eeprom.h> 

//   Declare your global function prototypes here 
  
void x5530_Set_ShortL(unsigned int iT5530_ShortL);
void x5530_Set_ShortH(unsigned int iT5530_ShortH);
void x5530_Set_LongL(unsigned int iT5530_LongL);
void x5530_Set_LongH(unsigned int iT5530_LongH);

unsigned int x5530_Get_ShortL(void);
unsigned int x5530_Get_ShortH(void);
unsigned int x5530_Get_LongL(void);
unsigned int x5530_Get_LongH(void);

//   Declare your global variables (extern) here

//   Declare your global definitions here

/*---------------------------------------------------------------------------*/

#endif // RFIDX5530_H__

⌨️ 快捷键说明

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