diff options
author | laforge <laforge@e0336214-984f-0b4b-a45f-81c69e1f0ede> | 2008-01-27 02:15:48 +0000 |
---|---|---|
committer | laforge <laforge@e0336214-984f-0b4b-a45f-81c69e1f0ede> | 2008-01-27 02:15:48 +0000 |
commit | c203de04bd740e324b06615b98932ac9fa734ed2 (patch) | |
tree | 42801098aab2fdd4e2a63af47035c0d817b60ed6 /include | |
parent | 6b2db45060b26cc4e42ca6130f236596f9a02c82 (diff) |
* improve scanning support:
** first try REQA/HLTA/REQA/HLTA until no more tags found
** then power off the field and start from the beginning again
* add proper RF field on/off switching support to all readers
* reduce timer to actual value, don't multiply by 10
* detect collisions during transceive_sf (ATQA)
* make UID length depend on cascade level, not ATQA
git-svn-id: https://svn.gnumonks.org/trunk/librfid@2056 e0336214-984f-0b4b-a45f-81c69e1f0ede
Diffstat (limited to 'include')
-rw-r--r-- | include/librfid/rfid_asic_rc632.h | 3 | ||||
-rw-r--r-- | include/librfid/rfid_reader.h | 1 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/librfid/rfid_asic_rc632.h b/include/librfid/rfid_asic_rc632.h index 3aebd1f..ccc4f20 100644 --- a/include/librfid/rfid_asic_rc632.h +++ b/include/librfid/rfid_asic_rc632.h @@ -33,8 +33,7 @@ struct rfid_asic_rc632 { struct { int (*power_up)(struct rfid_asic_handle *h); int (*power_down)(struct rfid_asic_handle *h); - int (*turn_on_rf)(struct rfid_asic_handle *h); - int (*turn_off_rf)(struct rfid_asic_handle *h); + int (*rf_power)(struct rfid_asic_handle *h, int on); int (*transceive)(struct rfid_asic_handle *h, enum rfid_frametype, const u_int8_t *tx_buf, diff --git a/include/librfid/rfid_reader.h b/include/librfid/rfid_reader.h index 296c66f..64ad862 100644 --- a/include/librfid/rfid_reader.h +++ b/include/librfid/rfid_reader.h @@ -35,6 +35,7 @@ struct rfid_reader { u_int64_t timeout, unsigned int flags); struct rfid_reader_handle * (*open)(void *data); void (*close)(struct rfid_reader_handle *h); + int (*rf_power)(struct rfid_reader_handle *h, int on); struct rfid_14443a_reader { int (*init)(struct rfid_reader_handle *h); |