This is an old revision of the document!
Initialize the SDK.
void initialize(Context context, DeviceListener listener)
Parameters
If this function is not called, the SDK will not work properly.
It should be called as soon as possible after running the application.
Run the SDK service.
int run()
Return Code
Returns “SUCCESS” if successfully launched; returns the corresponding error code if an error occurs.
The SDK was developed for use with a single application.
It requires caution because it is not used concurrently in other applications.
Get the SDK/Firmware versions.
int getVersions(Versions versions)
Parameters
Return Code
Returns “SUCCESS” if successfully launched; returns the corresponding error code if an error occurs.
Set the RF card type.
int setCardType(int cardType)
Parameters
No. | Description |
1 | HIGH_FREQUENCY |
2 | HIGH_FREQUENCY_ICLASS |
3 | LOW_FREQUENCY |
4 | LOW_FREQUENCY_PROX |
Return Code
Returns “SUCCESS” if successfully launched; returns the corresponding error code if an error occurs.
connect to the FTP server.
int connectFtpServer(FirmwareOption option)
Parameters
Return Code
Returns “SUCCESS” if successfully launched; returns the corresponding error code if an error occurs.
To use the firmware upgrade function, you need to build an
FTP server.
The API acts as an
FTP client.
To use the API, Android applications require the following permissions:
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
Disconnects to the FTP server.
int disconnectFtpServer()
Return Code
Returns “SUCCESS” if successfully launched; returns the corresponding error code if an error occurs.
To use the firmware upgrade function, you need to build an
FTP server.
The API acts as an
FTP client.
To use the API, Android applications require the following permissions:
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
Get a list of file names for the FTP server.
int getFtpFileList(ArrayList<String> fileList)
Parameters
Return Code
Returns “SUCCESS” if successfully launched; returns the corresponding error code if an error occurs.
To use the firmware upgrade function, you need to build an
FTP server.
The API acts as an
FTP client.
To use the API, Android applications require the following permissions:
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
Copy the upgrade file to the specified firmware file.
int upgradeFirmware(FirmwareOption option)
Parameters
Return Code
Returns “SUCCESS” if successfully launched; returns the corresponding error code if an error occurs.
To use the firmware upgrade function, you need to build an
FTP server.
The API acts as an
FTP client.
To use the API, Android applications require the following permissions:
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
Reboot the device.
int rebootDevice()
Return Code
Returns “SUCCESS” if successfully launched; returns the corresponding error code if an error occurs.
The firmware will be upgraded at device reboot.