Hi folks,
I am using a TRF7970A EVM with its PC based GUI to talk to an RF430CL330H NFC Booster Pack - mounted on a MSP-EXP430G2 "Value Line" LaunchPad board. I am running the sloc303 / RF430CL330H_G2553_example code using Code Composer Studio.
I am using the ISO14443B Tab on the GUI to talk to the RF430CL330H NFC Booster Pack in Request mode and they seem to communicate correctly.
My problem is trying to relate what the RF430 device is sending to what the GUI displays:-
RF430 device sends:-
#define RF430_DEFAULT_DATA { \
/*NDEF Tag Application Name*/ \
0xD2, 0x76, 0x00, 0x00, 0x85, 0x01, 0x01, \
\
/*Capability Container ID*/ \
0xE1, 0x03, \
0x00, 0x0F, /* CCLEN */ \
0x20, /* Mapping version 2.0 */ \
0x00, 0xF9, /* MLe (49 bytes); Maximum R-APDU data size */ \
0x00, 0xF6, /* MLc (52 bytes); Maximum C-APDU data size */ \
0x04, /* Tag, File Control TLV (4 = NDEF file) */ \
0x06, /* Length, File Control TLV (6 = 6 bytes of data for this tag) */ \
0xE1, 0x04, /* File Identifier */ \
0x0B, 0xDF, /* Max NDEF size (3037 bytes of useable memory) */ \
0x00, /* NDEF file read access condition, read access without any security */ \
0x00, /* NDEF file write access condition; write access without any security */ \
\
/* NDEF File ID */ \
0xE1, 0x04, \
\
/* NDEF File for Hello World */ \
0x00, 0x14, /* NLEN: NDEF length (20 byte long message, max. length for RF430CL) */ \
\
/* NDEF Record (refer to NFC Data Exchange Format specifications)*/ \
0xD1, /*MB(Message Begin), SR(Short Record) flags set, ME(Message End), IL(ID length field present) flags cleared; TNF(3bits) = 1; */ \
0x01, 0x10, /*Type Length = 0x01; Payload Length = 0x10 */ \
0x54, /* Type = T (text) */ \
0x02, /* 1st payload byte: "Start of Text", as specified in ASCII Tables */ \
0x65, 0x6E, /* 'e', 'n', (2nd, 3rd payload bytes*/ \
\
/* 'Hello, world!' NDEF data*/ \
0x48, 0x65, 0x6C, 0x6C, 0x6f, 0x2c, 0x20, 0x77, 0x6f, 0x72, 0x6c, 0x64, 0x21 \
} /* End of data */
#endif /* RF430_EXAMPLE_H_ */
And the GUI displays:-
13:57:52.534 --> 0109000304B0040000
13:57:53.221 <-- 14443B REQB.
[509A2BC6DC00000011008185,7F]
I cannot see any comonality between the two blocks of data!
Please can you tell me where I can find a simple description of the format of this data (without buying the ISO14443B standards at great expense)?
Your help would be greatly appreciated.
Regards, David Smith

