Fix a warning (Rainer Keller <mail@rainerkeller.de>)
[librfid] / src / rfid.c
index ea6c0aa..fa98220 100644 (file)
@@ -1,4 +1,6 @@
-/*
+/* librfid core 
+ *  (C) 2005-2006 by Harald Welte <laforge@gnumonks.org>
+ *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License version 2 
  *  as published by the Free Software Foundation
 #include <stdio.h>
 #include <string.h>
 
-#include <librfid/rfid_reader_cm5121.h>
-#include <librfid/rfid_reader_openpcd.h>
+#include <librfid/rfid_reader.h>
 #include <librfid/rfid_protocol.h>
 #include <librfid/rfid_protocol_tcl.h>
 #include <librfid/rfid_protocol_mifare_ul.h>
 #include <librfid/rfid_protocol_mifare_classic.h>
 
+#ifdef LIBRFID_STATIC
+struct rfid_asic_handle rfid_ah;
+struct rfid_layer2_handle rfid_l2h;
+struct rfid_protocol_handle rfid_ph;
+struct rfid_asic_transport_handle rfid_ath;
+struct rfid_reader_handle rfid_rh;
+#endif
+
+#ifndef LIBRFID_FIRMWARE
 const char *
 rfid_hexdump(const void *data, unsigned int len)
 {
@@ -38,20 +48,63 @@ rfid_hexdump(const void *data, unsigned int len)
        }
        return string;
 }
+#else
+#define rfid_hexdump(x, y) hexdump(x, y)
+#endif
 
-int rfid_init()
+#if 0
+int rfid_setopt(struct rfid_handle *rh, unsigned int level,
+               unsigned int optname,
+               const void *opt, unsigned int *optlen)
 {
-       rfid_reader_register(&rfid_reader_cm5121);
-       rfid_reader_register(&rfid_reader_openpcd);
-       rfid_layer2_register(&rfid_layer2_iso14443a);
-       rfid_layer2_register(&rfid_layer2_iso14443b);
-       rfid_protocol_register(&rfid_protocol_tcl);
-       rfid_protocol_register(&rfid_protocol_mful);
-       rfid_protocol_register(&rfid_protocol_mfcl);
+       switch (level) {
+       case RFID_LEVEL_ASIC:
+       case RFID_LEVEL_READER:
+               return -EINVAL;
+               break;
+       case RFID_LEVEL_LAYER2:
+               return rfid_layer2_setopt(optname, opt, optlen);
+               break;
+       case RFID_LEVEL_LAYER3:
+               return rfid_layer3_setopt(optname, opt, optlen);
+               break;
+       default:
+               return -EINVAL;
+               break;
+       }
 
        return 0;
 }
 
+int rfid_getopt(struct rfid_handle *rh, unsigned int level,
+               unsigned int optname,
+               void *opt, unsigned int *optlen)
+{
+       switch (level) {
+       case RFID_LEVEL_ASIC:
+       case RFID_LEVEL_READER:
+               return -EINVAL;
+               break;
+       case RFID_LEVEL_LAYER2:
+               return rfid_layer2_getopt(optname, opt, optlen);
+               break;
+       case RFID_LEVEL_LAYER3:
+               return rfid_layer3_getopt(optname, opt, optlen);
+               break;
+       default:
+               return -EINVAL;
+               break;
+       }
+
+       return 0;
+}
+#endif
+
+int rfid_init()
+{
+       return 0;
+}
+
 void rfid_fini()
 {
        /* FIXME: implementation */