/*- * Public platform independent Near Field Communication (NFC) library * * Copyright (C) 2010, Romuald Conty * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as published by the * Free Software Foundation, either version 3 of the License, or (at your * option) any later version. * * This program is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for * more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program. If not, see */ /** * @file nfc-poll * @brief Polling example */ #ifdef HAVE_CONFIG_H # include "config.h" #endif // HAVE_CONFIG_H #include #include #include #include #include #include #include #include #include "nfc-utils.h" #define MAX_DEVICE_COUNT 16 static nfc_device_t *pnd; int main (int argc, const char *argv[]) { size_t szFound; size_t i; nfc_device_desc_t *pnddDevices; // Display libnfc version const char *acLibnfcVersion = nfc_version (); if (argc > 1) { errx (1, "usage: %s", argv[0]); } printf ("%s use libnfc %s\n", argv[0], acLibnfcVersion); if (!(pnddDevices = malloc (MAX_DEVICE_COUNT * sizeof (*pnddDevices)))) { fprintf (stderr, "malloc() failed\n"); return EXIT_FAILURE; } nfc_list_devices (pnddDevices, MAX_DEVICE_COUNT, &szFound); if (szFound == 0) { INFO ("%s", "No device found."); } for (i = 0; i < szFound; i++) { const byte_t btPollNr = 20; const byte_t btPeriod = 2; const nfc_target_type_t nttArray[4] = {NTT_GENERIC_PASSIVE_106, NTT_GENERIC_PASSIVE_212, NTT_GENERIC_PASSIVE_424, NTT_ISO14443B_106}; const size_t szTargetTypes = 4; nfc_target_t antTargets[2]; size_t szTargetFound; bool res; pnd = nfc_connect (&(pnddDevices[i])); if (pnd == NULL) { ERR ("%s", "Unable to connect to NFC device."); return 1; } nfc_initiator_init (pnd); // Drop the field for a while if (!nfc_configure (pnd, NDO_ACTIVATE_FIELD, false)) { nfc_perror (pnd, "nfc_configure"); exit (EXIT_FAILURE); } // Let the reader only try once to find a tag if (!nfc_configure (pnd, NDO_INFINITE_SELECT, false)) { nfc_perror (pnd, "nfc_configure"); exit (EXIT_FAILURE); } // Configure the CRC and Parity settings if (!nfc_configure (pnd, NDO_HANDLE_CRC, true)) { nfc_perror (pnd, "nfc_configure"); exit (EXIT_FAILURE); } if (!nfc_configure (pnd, NDO_HANDLE_PARITY, true)) { nfc_perror (pnd, "nfc_configure"); exit (EXIT_FAILURE); } // Enable field so more power consuming cards can power themselves up if (!nfc_configure (pnd, NDO_ACTIVATE_FIELD, true)) { nfc_perror (pnd, "nfc_configure"); exit (EXIT_FAILURE); } printf ("Connected to NFC reader: %s\n", pnd->acName); printf ("PN53x will poll during %ld ms\n", (unsigned long) btPollNr * szTargetTypes * btPeriod * 150); res = nfc_initiator_poll_targets (pnd, nttArray, szTargetTypes, btPollNr, btPeriod, antTargets, &szTargetFound); if (res) { uint8_t n; printf ("%ld target(s) have been found.\n", (unsigned long) szTargetFound); for (n = 0; n < szTargetFound; n++) { printf ("T%d: targetType=%02x, ", n + 1, antTargets[n].ntt); printf ("targetData:\n"); switch(antTargets[n].ntt) { case NTT_MIFARE: case NTT_ISO14443A_106: print_nfc_iso14443a_info (antTargets[n].nti.nai); break; case NTT_FELICA_212: case NTT_FELICA_424: print_nfc_felica_info (antTargets[n].nti.nfi); break; case NTT_ISO14443B_TCL_106: print_nfc_iso14443b_info (antTargets[n].nti.nbi); break; }; } } else { nfc_perror (pnd, "nfc_initiator_poll_targets"); exit (EXIT_FAILURE); } nfc_disconnect (pnd); } free (pnddDevices); return 0; }