From a740a7a578cb8a3f53b1b12b2e0833c8dbf4dcff Mon Sep 17 00:00:00 2001 From: laforge Date: Sun, 11 Sep 2005 19:59:05 +0000 Subject: As Juergen Heinzl pointed out, much of my original fwi calculations evaluated to zero due to the integer range limitations. shifting everything to the microsecond range should solve this problem without introducing ugly floating point arithmetics. git-svn-id: https://svn.gnumonks.org/trunk/librfid@1425 e0336214-984f-0b4b-a45f-81c69e1f0ede --- include/rfid/rfid_layer2_iso14443b.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/rfid/rfid_layer2_iso14443b.h') diff --git a/include/rfid/rfid_layer2_iso14443b.h b/include/rfid/rfid_layer2_iso14443b.h index 72e6155..b35a118 100644 --- a/include/rfid/rfid_layer2_iso14443b.h +++ b/include/rfid/rfid_layer2_iso14443b.h @@ -49,7 +49,7 @@ struct iso14443b_handle { unsigned int fsc; /* max. frame size card */ unsigned int fsd; /* max. frame size reader */ - unsigned int fwt; /* frame waiting time */ + unsigned int fwt; /* frame waiting time (in usec) */ unsigned int mbl; /* maximum buffer length */ -- cgit v1.2.3