summaryrefslogtreecommitdiff
path: root/openpcd/firmware/include/librfid/rfid.h
blob: 308f46e2551b10e5c5edf5058717f9a24ff81f57 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef _RFID_H
#define _RFID_H

#include <os/dbgu.h>

#define rfid_hexdump hexdump

enum rfid_frametype {
	RFID_14443A_FRAME_REGULAR,
	RFID_14443B_FRAME_REGULAR,
	RFID_MIFARE_FRAME,
};

struct rfid_asic_handle {
};

struct rfid_asic {
};

#define RAH NULL

#define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))

#endif
personal git repositories of Harald Welte. Your mileage may vary