YW_ISO15693_Select
ISO15693 标签选卡

参数列表:

int stdcall YW_ISO15693_Select

(

int ReaderID, 

unsigned char Model, 

unsigned char *PUID

);


参数含义:

参数

类型

方向

含义

ReaderID

int

IN

所要获取的设备标示ID,范围0x0000-0xFFFF,如果未知,则ReaderID=0

Model

unsigned char

IN

默认:0x02

PUID

unsigned char *

IN

卡的序列号UID(8Byte)

返 回 值:大于0为成功,小于0为失败

注意

1.执行该函数后,标签被选定,除了Inventory API外,所有其它APIModel可以选择0x00,表示读卡器一直都是对选定的卡片操作,此时附带的APIUID可以给任意值。若Model=0x02,则表示执行的是指定UID的卡片,此时API中的UIDInventory得到的UID.


C++声明(VC++和C++ Builder):

int stdcall YW_ISO15693_Select(int ReaderID, unsigned char Model, unsigned char *PUID);


Delphi声明:

function YW_ISO15693_Select(ReaderID: Integer; Model: Byte; PUID: PChar): Integer;stdcall;external YOWOREADERDLL;


VB声明:

Public Declare Function YW_ISO15693_Select Lib "YW60x.dll" (ByVal ReaderID As Long, ByVal Model As Byte, ByRef PUID As Byte) As Long


JAVA声明:

public int YW_ISO15693_Select(int ReaderID, byte Model, Pointer PUID)

{

int ret;

try

{

JNative fuc = new JNative("YW60x.dll", "YW_ISO15693_Select");

fuc.setRetVal(Type.INT);

fuc.setParameter(0, ReaderID);

fuc.setParameter(1, Model);

fuc.setParameter(2, PUID);

fuc.invoke();

ret = fuc.getRetValAsInt();

}

catch(NativeException e)

{

ret = -1;

}

catch(IllegalAccessException e)

{

ret = -2;

}

return ret;

}


C#声明:

[DllImport("YW60x.dll")]

public static extern int YW_ISO15693_Select(int ReaderID, byte Model, byte [] PUID);


Power Builder 9 声明:

public FUNCTION long YW_ISO15693_Select (long lReaderID , char Model, ref char PUID[]) library "YW60x.dll"


支持的RFID读写器:
YW-605RC, YW-605SC, YW-605UC, YW-605HC, YW-620HC, YW-608RC, YW-608SC, YW-608UC, YW-608HC, YW-610SC, YW-607