This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

13.56MHz NFC芯片 RF430CL330H的NDEF格式问题

Other Parts Discussed in Thread: RF430CL330H, DLP-RF430BP

各位TI的工程师们,你们好,最近我刚接触 RF430CL330H,对NDEF格式有点疑问:

   与我网上查到的资料不一致,https://blog.csdn.net/lovoo/article/details/52304153  。

   请解答一下,谢谢。

官方文件编号为:sloc303   《DLP-RF430BP Example Code》

NDEF格式如下:

#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 \