parent
02cf0b3d60
commit
a2b022609f
8 changed files with 13 additions and 13 deletions
|
|
@ -91,7 +91,7 @@ uint8_t nfcforum_capability_container[] = {
|
|||
// Notes:
|
||||
// - I (Romuald) don't know why Nokia 6212 Classic refuses the NDEF message if MLe is more than 0xFD (any suggests are welcome);
|
||||
// - ARYGON devices doesn't support extended frame sending, consequently these devices can't sent more than 0xFE bytes as APDU, so 0xFB APDU data bytes.
|
||||
// - I (Romuald) don't know why ARYGON device doesn't ACK when MLe > 0x54 (ARYGON frame lenght = 0xC2 (192 bytes))
|
||||
// - I (Romuald) don't know why ARYGON device doesn't ACK when MLe > 0x54 (ARYGON frame length = 0xC2 (192 bytes))
|
||||
0x00, 0xFF, /* MLc Maximum C-ADPU data size */
|
||||
0x04, /* T field of the NDEF File-Control TLV */
|
||||
0x06, /* L field of the NDEF File-Control TLV */
|
||||
|
|
|
|||
|
|
@ -8,7 +8,7 @@ nfc-mfultralight \- MIFARE Ultralight command line tool
|
|||
|
||||
.SH DESCRIPTION
|
||||
.B nfc-mfultralight
|
||||
is a MIFARE Ultralight tool that allows to read or write
|
||||
is a MIFARE Ultralight tool that allows one to read or write
|
||||
a tag data to/from a
|
||||
.IR DUMP
|
||||
file.
|
||||
|
|
|
|||
|
|
@ -273,7 +273,7 @@ main(int argc, char *argv[])
|
|||
fprintf (message_stream, "NFC Forum Tag Type 3 capacity: %d bytes\n", available_block_count * 16);
|
||||
|
||||
uint32_t ndef_data_len = (data[11] << 16) + (data[12] << 8) + data[13];
|
||||
fprintf (message_stream, "NDEF data lenght: %d bytes\n", ndef_data_len);
|
||||
fprintf (message_stream, "NDEF data length: %d bytes\n", ndef_data_len);
|
||||
|
||||
uint16_t ndef_calculated_checksum = 0;
|
||||
for (size_t n = 0; n < 14; n++)
|
||||
|
|
|
|||
|
|
@ -46,10 +46,10 @@ Remote relay over TCP/IP:
|
|||
|
||||
\fBsocat\fP
|
||||
TCP-LISTEN:port,reuseaddr
|
||||
"EXEC:\fBnfc-relay-picc -i\fP,fdin=3,fdout=4"
|
||||
"EXEC:\fBnfc-relay-picc \-i\fP,fdin=3,fdout=4"
|
||||
\fBsocat\fP
|
||||
TCP:remotehost:port
|
||||
"EXEC:\fBnfc-relay-picc -t\fP,fdin=3,fdout=4"
|
||||
"EXEC:\fBnfc-relay-picc \-t\fP,fdin=3,fdout=4"
|
||||
|
||||
.SH NOTES
|
||||
There are some differences with \fBnfc-relay\fP:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue