- disable debug statements

- cleanly initialize pps[2]


git-svn-id: https://svn.gnumonks.org/trunk/librfid@1672 e0336214-984f-0b4b-a45f-81c69e1f0ede
This commit is contained in:
laforge 2005-11-08 16:25:57 +00:00
parent 7408d67d2e
commit 1016f644a1
3 changed files with 7 additions and 19 deletions

View File

@ -11,8 +11,14 @@ enum rfid_frametype {
RFID_MIFARE_FRAME, RFID_MIFARE_FRAME,
}; };
#if 0
#define DEBUGP(x, args ...) fprintf(stderr, "%s(%d):%s: " x, __FILE__, __LINE__, __FUNCTION__, ## args) #define DEBUGP(x, args ...) fprintf(stderr, "%s(%d):%s: " x, __FILE__, __LINE__, __FUNCTION__, ## args)
#define DEBUGPC(x, args ...) fprintf(stderr, x, ## args) #define DEBUGPC(x, args ...) fprintf(stderr, x, ## args)
#else
#define DEBUGP(x, args ...)
#define DEBUGPC(x, args ...)
#endif
extern const char *rfid_hexdump(const void *data, unsigned int len); extern const char *rfid_hexdump(const void *data, unsigned int len);
#ifndef ARRAY_SIZE #ifndef ARRAY_SIZE

View File

@ -36,17 +36,6 @@
#include "rfid_iso14443_common.h" #include "rfid_iso14443_common.h"
#if 0
#ifdef DEBUGP
#undef DEBUGP
#define DEBUGP(x, ...)
#endif
#ifdef DEBUGPC
#undef DEBUGPC
#define DEBUGPC(x, ...)
#endif
#endif
static enum rfid_frametype l2_to_frame(unsigned int layer2) static enum rfid_frametype l2_to_frame(unsigned int layer2)
{ {
switch (layer2) { switch (layer2) {
@ -281,6 +270,7 @@ tcl_do_pps(struct rfid_protocol_handle *h)
ppss[0] = 0xd0 | (h->priv.tcl.cid & 0x0f); ppss[0] = 0xd0 | (h->priv.tcl.cid & 0x0f);
ppss[1] = 0x11; ppss[1] = 0x11;
ppss[2] = 0x00;
/* FIXME: deal with different speed for each direction */ /* FIXME: deal with different speed for each direction */
DrI = d_to_di(h, Dr); DrI = d_to_di(h, Dr);

View File

@ -45,14 +45,6 @@
#define SENDBUF_LEN 100 #define SENDBUF_LEN 100
#define RECVBUF_LEN 40 #define RECVBUF_LEN 40
#if 0
#ifdef DEBUGP
#undef DEBUGP
#define DEBUGP(x, ...)
#define DEBUGPC(x, ...)
#endif
#endif
static static
int Write1ByteToReg(struct rfid_asic_transport_handle *rath, int Write1ByteToReg(struct rfid_asic_transport_handle *rath,
unsigned char reg, unsigned char value) unsigned char reg, unsigned char value)