Skip to content Skip to sidebar Skip to footer

Nfc-v Icode Slix (sl2s2002)

I'm developing an application for managing ICODE SLIX-S tags under android. I'm finding problems regarding the 'SET_PASSWORD' as defined in the data sheet (https://www.nxp.com/docs

Solution 1:

NFC-V android stack is not working properly. It exits a timeout issue on Android OS. So, sometime even if you get a TagLost the command is executed on the Icode SLIX2. The best solution, I found, is to use NXP TapLink library. It replaces NFC android stack and works great with their NXP tags (from Mifare to ICode).

The set password will become:

byte[] rand = iCodeSLIX2.getRandomNumber();
byte[] pwd = Utilities.xor(password, Utilities.append(rand, rand));
iCodeSLIX2.setPasswordWrite(pwd);

Solution 2:

please take a look at the "NFC-V SLIX-S write password" post again. I figured it out and posted a solution. The proper way to WRITE PASSWORD is to SET PASSWORD prior tp that. Even if you have a brand new card that is not in PRIVACY MODE you have to do the SET PASSWORD command with the default preset password of "0F0F0F0F".

And of course you have to use the correct flag! For SET PASSWORD it should be 02 and for WRITE PASSWORD it is 22!

Regards Gambrius

Post a Comment for "Nfc-v Icode Slix (sl2s2002)"