unsigned int -> size_t in some appropriate places.
[librfid] / include / librfid / rfid_reader_cm5121.h
1 #ifndef _RFID_READER_CM5121_H
2 #define _RFID_READER_CM5121_H
3
4 #include <librfid/rfid_reader.h>
5
6 #define CM5121_CW_CONDUCTANCE   0x3f
7 #define CM5121_MOD_CONDUCTANCE  0x3f
8 #define CM5121_14443A_BITPHASE  0xa9
9 #define CM5121_14443A_THRESHOLD 0xff
10
11 #define CM5121_14443B_BITPHASE  0xad
12 #define CM5121_14443B_THRESHOLD 0xff
13
14 extern int
15 PC_to_RDR_Escape(void *handle,
16                 const unsigned char *tx_buf, size_t tx_len,
17                 unsigned char *rx_buf, size_t *rx_len);
18
19 extern const struct rfid_reader rfid_reader_cm5121;
20 // extern struct rfid_asic_transport cm5121_ccid;
21
22 #endif