2016-02-26 05:42 PM
Hi,
I have downloaded the source code for the ST25 demo Android app (1.0.2), and have found a bug with the SendInterrupt command inType4Tagm24sr7816STCommands.java:// SendInterrupt command
// On receiving the SendInterrupt command the M24SR generates a negative pulse on the GPO pins
// /!\ System file shall be selected by issuing the System Select command before
static final byte[] m24sr7816STSendInterrupt =
new
byte[]{
(byte) 0xA2,(byte) 0xD6,
// CAS , INS
(byte) 0x00,(byte) 0x01,
// P1 , P2
(byte) 0x00
};
However, P2 should be 0x1E as per M24SRxx datasheets.
Thanks,
Martin.
#android-app
Solved! Go to Solution.
2016-03-02 03:05 AM
Hello Martin,
Indeed the offset should be 0x001E (ie P2 = 0x1E) as per datasheet. We'll be releasing the updated ST25 demo Android application shortly and will let you know when available.Thanks a lot for bringing this issue out.Best Regards,Have a good day2016-03-02 03:05 AM
Hello Martin,
Indeed the offset should be 0x001E (ie P2 = 0x1E) as per datasheet. We'll be releasing the updated ST25 demo Android application shortly and will let you know when available.Thanks a lot for bringing this issue out.Best Regards,Have a good day2016-03-03 04:56 AM
Hi,
Ok great - thanks for the reply.Martin.