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

📄 rfidreaderenum.h

📁 270的linux说明
💻 H
字号:
/*

Copyright (c) 2008, Intel Corporation. 

All rights reserved.

 

Redistribution and use in source and binary forms, with or without modification, 
are permitted provided that the following conditions are met:


    * Redistributions of source code must retain the above copyright notice, 
this list of conditions and the following disclaimer.

    * Redistributions in binary form must reproduce the above copyright notice, 
this list of conditions and the following disclaimer in the documentation and/or 
other materials provided with the distribution.

    * Neither the name of Intel Corporation nor the names of its contributors 
may be used to endorse or promote products derived from this software without 
specific prior written permission.

 

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND 
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 
IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, 
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, 
OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 
WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY 
OF SUCH DAMAGE.

*/

//==============================================================================
// RfidReaderEnum.h 
//==============================================================================
#ifndef RFID_READER_ENUM_H#define RFID_READER_ENUM_H

#ifndef DllExport
#define DllExport // __declspec( dllimport  )
#endif

#define 	ISO15693    0x01
#define 	I_CODE1		0x02
#define 	TAG_IT_HF	0x03
#define		ISO14443A	0x04
#define		ISO14443B	0x05
#define 	PICOTAG		0x06
#define		GEMWAVE		0x08
#include "inc/Base/base_Enum.h"
namespace Intel
{
	namespace Mobile
	{
		namespace Rfid
		{
			class ConnectionInterfaceEnumProperty;
			class BaudRateEnumProperty;
			struct TagInfo;
			class RfidReaderInstance;

			///////////////////////////////////////////////////////////////////////
			//   Enum defintion
			//
			class DllExport ConnectionInterfaceEnum	: public Intel::Mobile::Base::BaseEnum
			{
				friend class  ConnectionInterfaceEnumProperty;
			public:
				static const ConnectionInterfaceEnum	SerialPort;
				static const ConnectionInterfaceEnum	Bluetooth;
				static const ConnectionInterfaceEnum	Usb;

				DECLARE_ENUM( ConnectionInterfaceEnum );
			};

			class DllExport BaudRateEnum : public Intel::Mobile::Base::BaseEnum
			{
				friend class  BaudRateEnumProperty;
			public:
				static const BaudRateEnum Imb_110;
				static const BaudRateEnum Imb_19200;
				static const BaudRateEnum Imb_300;
				static const BaudRateEnum Imb_38400;
				static const BaudRateEnum Imb_600;
				static const BaudRateEnum Imb_56000;
				static const BaudRateEnum Imb_1200;
				static const BaudRateEnum Imb_57600;
				static const BaudRateEnum Imb_2400;
				static const BaudRateEnum Imb_115200;
				static const BaudRateEnum Imb_4800;
				static const BaudRateEnum Imb_128000;
				static const BaudRateEnum Imb_9600;
				static const BaudRateEnum Imb_256000;
				static const BaudRateEnum Imb_14400;

				DECLARE_ENUM( BaudRateEnum );
			};			

			class DllExport TagTypeEnum : public Intel::Mobile::Base::BaseEnum
			{
				friend class  Intel::Mobile::Rfid::TagInfo;
				friend class  Intel::Mobile::Rfid::RfidReaderInstance;
			public:
				static const TagTypeEnum Iso15693;
				static const TagTypeEnum ICode1;
				static const TagTypeEnum TagItHf;
				static const TagTypeEnum Iso14443A;
				static const TagTypeEnum Iso14443B;
				static const TagTypeEnum Picotag;
				static const TagTypeEnum Gemwave;

				DECLARE_ENUM( TagTypeEnum );
			};			
		}
	}
}#endif

⌨️ 快捷键说明

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