User's Manual

CAEN RFID API Reference Manual
89
SetProtocol Method
Description:
This method sets the air protocol of the reader.
Parameters:
Name
Description
Protocol
The CAENRFIDProtocol representing the air protocol to be set.
Syntax:
C# representation:
public void SetProtocol(
CAENRFIDProtocol Protocol)
Java and Android representation:
public void SetProtocol(
CAENRFIDProtocol Protocol)
throws CAENRFIDException
C representation:
CAENRFIDErrorCodes CAENRFID_SetProtocol(
CAENRFIDHandle handle,
CAENRFIDProtocol Protocol);
SetRFChannel Method
Description:
This method sets the RF channel to use. This method fixes the RF channel only when the listen before talk or the
frequency hopping feature is disabled.
Parameters:
Name
Description
Channel
The RF channel index to be set.
Syntax:
C# representation:
public void SetRFChannel(
short Channel)
Java and Android representation:
public void SetRFChannel(
short Channel)
throws CAENRFIDException
C representation:
CAENRFIDErrorCodes CAENRFID_SetRFChannel(
CAENRFIDHandle handle,
unsigned short Channel);
Remarks
This method is only used for testing applications.