X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=utils%2Fcommon.c;h=ec7fda0e85fd9ceafbace701ca9dda23a10de0af;hb=79e204d323cd6c465e1a3a53598a655304be1d7a;hp=12c3bd492771841681acc295baaac36fbc6024e9;hpb=c203de04bd740e324b06615b98932ac9fa734ed2;p=librfid diff --git a/utils/common.c b/utils/common.c index 12c3bd4..ec7fda0 100644 --- a/utils/common.c +++ b/utils/common.c @@ -72,13 +72,13 @@ struct rfid_protocol_handle *ph; int reader_init(void) { - printf("opening reader handle\n"); - rh = rfid_reader_open(NULL, RFID_READER_CM5121); + printf("opening reader handle OpenPCD, CM5x21\n"); + rh = rfid_reader_open(NULL, RFID_READER_OPENPCD); if (!rh) { - fprintf(stderr, "No Omnikey Cardman 5121 found\n"); - rh = rfid_reader_open(NULL, RFID_READER_OPENPCD); + fprintf(stderr, "No OpenPCD found\n"); + rh = rfid_reader_open(NULL, RFID_READER_CM5121); if (!rh) { - fprintf(stderr, "No OpenPCD found either\n"); + fprintf(stderr, "No Omnikey Cardman 5x21 found\n"); return -1; } } @@ -92,11 +92,11 @@ int l2_init(int layer2) printf("opening layer2 handle\n"); l2h = rfid_layer2_init(rh, layer2); if (!l2h) { - fprintf(stderr, "error during iso14443a_init\n"); + fprintf(stderr, "error during layer2(%d)_init (0=14a,1=14b,3=15)\n",layer2); return -1; } - printf("running layer2 anticol\n"); + printf("running layer2 anticol(_open)\n"); rc = rfid_layer2_open(l2h); if (rc < 0) { fprintf(stderr, "error during layer2_open\n");