nfc_target_t have now nfc_modulation_t instead of nfc_modulatation_type_t

This commit is contained in:
Romuald Conty 2010-10-13 19:17:51 +00:00
parent 584a18ec11
commit 979430ecd1
10 changed files with 47 additions and 19 deletions

View file

@ -117,7 +117,7 @@ main (int argc, const char *argv[])
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].nmt);
printf ("T%d: ", n + 1);
print_nfc_target ( antTargets[n] );
}