examples: minor enhancements

This commit is contained in:
Romuald Conty 2010-10-04 12:37:43 +00:00
parent 80ee446f74
commit afb1c3a0f8
2 changed files with 7 additions and 7 deletions

View file

@ -19,7 +19,7 @@
/** /**
* @file nfc-anticol.c * @file nfc-anticol.c
* @brief * @brief Generate one ISO14443-A anticollision process "by-hand"
*/ */
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
@ -179,7 +179,7 @@ main (int argc, char *argv[])
exit (EXIT_FAILURE); exit (EXIT_FAILURE);
} }
printf ("\nConnected to NFC reader: %s\n\n", pnd->acName); printf ("Connected to NFC reader: %s\n\n", pnd->acName);
// Send the 7 bits request command specified in ISO 14443A (0x26) // Send the 7 bits request command specified in ISO 14443A (0x26)
if (!transmit_bits (abtReqa, 7)) { if (!transmit_bits (abtReqa, 7)) {

View file

@ -19,7 +19,7 @@
/** /**
* @file nfc-mfultool.c * @file nfc-mfultool.c
* @brief MIFARE Ultralight dump tool * @brief MIFARE Ultralight dump/restore tool
*/ */
#ifdef HAVE_CONFIG_H #ifdef HAVE_CONFIG_H
@ -180,10 +180,10 @@ main (int argc, const char *argv[])
} }
DBG ("Successfully opened the dump file\n"); DBG ("Successfully opened the dump file\n");
// Try to open the NFC reader // Try to open the NFC device
pnd = nfc_connect (NULL); pnd = nfc_connect (NULL);
if (pnd == NULL) { if (pnd == NULL) {
ERR ("Error connecting NFC reader\n"); ERR ("Error connecting NFC device\n");
return 1; return 1;
} }
@ -194,7 +194,7 @@ main (int argc, const char *argv[])
nfc_perror (pnd, "nfc_configure"); nfc_perror (pnd, "nfc_configure");
exit (EXIT_FAILURE); exit (EXIT_FAILURE);
} }
// Let the reader only try once to find a tag // Let the device only try once to find a tag
if (!nfc_configure (pnd, NDO_INFINITE_SELECT, false)) { if (!nfc_configure (pnd, NDO_INFINITE_SELECT, false)) {
nfc_perror (pnd, "nfc_configure"); nfc_perror (pnd, "nfc_configure");
exit (EXIT_FAILURE); exit (EXIT_FAILURE);
@ -213,7 +213,7 @@ main (int argc, const char *argv[])
exit (EXIT_FAILURE); exit (EXIT_FAILURE);
} }
printf ("Connected to NFC reader: %s\n", pnd->acName); printf ("Connected to NFC device: %s\n", pnd->acName);
// Try to find a MIFARE Ultralight tag // Try to find a MIFARE Ultralight tag
if (!nfc_initiator_select_passive_target (pnd, NM_ISO14443A_106, NULL, 0, &nti)) { if (!nfc_initiator_select_passive_target (pnd, NM_ISO14443A_106, NULL, 0, &nti)) {