📄 rfid_rfidmenu.h
字号:
// $Id: rfid_RFIDMenu.h,v 1.2 2006/09/27 20:57:06 tprescott Exp $
/*****************************************************
Project : rfid_RFIDMenu.h
Date : 9/08/2006
Author : Toby Prescott
Company : Atmel
Comments: AVR Studio GCC
Revisions:
v1.0 - Started
v2.1 - 1/20/06 Changed to work with new LCD drive
v2.2 - 3/8/06 Changed to Flash Srings to save SRAM
v2.3 - 3/14/06 Fixing 5558 read/write routines
3/15/06 Adding 5530 Support
v2.4 - 4/6/06 Add new working 5558 R/W routines
5/19/06 Fixed mfg. ID error and display as dec
v2.5 - 6/20/06 Add Animal ID section with Read and Write
v2.6 - 9/19/06 Clean for WinAVR
*****************************************************/
#ifndef RFIDRFIDMENU_H__
#define RFIDRFIDMENU_H__
#include <avr/io.h>
#include <string.h>
#include <stdlib.h>
#include <avr/pgmspace.h>
#include "atml_Lcd.h"
#include "atml_Message.h"
#include "rfid_UserIO.h"
#include "rfid_TimingMenu.h"
#include "rfid_ReadMenu.h"
#include "rfid_WriteMenu.h"
#include "rfid_AnimalIDMenu.h"
#include "rfid_U2270.h"
#include "rfid_x5530.h"
#include "rfid_x5551.h"
#include "rfid_x5557.h"
#include "rfid_x5567.h"
#include "rfid_x5577.h"
#include "rfid_x5570.h"
#include "rfid_x5558.h"
// Declare your global function prototypes here
void rfidMenu_Display(void);
void rfidMenu_Select(void);
void rfidMenu_U2270Config(void);
void rfidMenu_WriteConfiguration(void);
void rfidMenu_ReadWriteMenu(void);
// Declare your global variables (extern) here
extern PGM_P sRFIDTAGPtr[8];
// Declare your global definitions here
#define U2270 20
#define x5530 0
#define x5551 1
#define x5552 2
#define x5557 3
#define x5567 4
#define x5577 5
#define x5570 6
#define x5558 7
/*---------------------------------------------------------------------------*/
#endif // RFIDRFIDMENU_H__
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -