MIFARE Classic 1K memory cards have multiple sectors to store data, so I want to know how the data is allocated and stored into the sectors of MIFARE Classic 1k when writing NDEF data to the tag in Android unsing the following command:
Ndef ndef = Ndef.get(tag);
ndef.writeNdefMessage(message);
As MIFARE Classic is no standard NFC tag, there is no standardized way for storing NDEF formatted data on such cards. However, NXP provides two datasheets that explains NXP's proprietary NDEF mapping for MIFARE Classic tags:
The mapping descibed in these datasheet is widely used with devices that are capable of reading/storing NDEF messages on MIFARE Classic and are also used in Android devices with NXP's NFC chipset.
The basic principles of the NDEF mapping are:
<0x03> <LEN (1 Byte)> <NDEF MESSAGE>
(or<0x03> <0xFF> <LEN (2 Bytes)> <NDEF MESSAGE>
.0xFE
.