-33
15. BYTE
SUNLITRFID_ProductNameGet(
SUNLITRFID_PRODUCT_NAME *ProductName
);
SUNLITRFID_ProductNameGet
is used to get the product name information form the device.
Parameters
:
ProductName
:
Please see
「
TYPE
」
definition.
Return Values
:
The function will return byte value that indicate the execution result, please see
「
MESSAGE
」
definition for byte value.
For example
:
SUNLITRFID_PRODUCT_NAME ProductName;
if(SUNLITRFID_ProductNameGet(&ProductName)==HANDLE_SUCCESS)
{} //Get product name information successfully
else
{}
16. BYTE
SUNLITRFID_ModelNameGet(
SUNLITRFID_MODEL_NAME *ModelName
);
SUNLITRFID_ModelNameGet
is used to get the model name information form the device.
Parameters
:
ModelName
:
Please see
「
TYPE
」
definition.
Return Values
:
The function will return byte value that indicate the execution result, please see
「
MESSAGE
」
definition for byte value.
For example
:
SUNLITRFID_MODEL_NAME ModelName;
if(SUNLITRFID_ModelNameGet(&ModelName)==HANDLE_SUCCESS)
{} //Get model name information successfully
else
{}