3-29 ScrSelectCard
This function selects the communication with Smart card, SAM1 or SAM2 and is only
available to use with SPP-R210 SCR.
async Task<byte> ScrSelectCard (uint card);
[Parameters]
* UINT card
[in] smart card for communication
Select Smart card for communication
Select SAM1 for communication
Select SAM2 for communication
[Return Values]
* ResponseS
[out] If the value is 0x00, it means that the SCR is successfully powered down,
otherwise, it fails. Please refer to the Command Manual for more information.
* Example
BxlWinPhoneSDK bxlPrinter = new BxlWinPhoneSDK();
……
byte ResponseS = await bxlPrinter.ScrSelectCard(BXL_SCR_SMARTCARD);
if (0x00 != ResponseS)
return;
……