2010-02-21 08:12:52 +08:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// (c) 2009 Henryk Plötz <henryk@ploetzli.ch>
|
|
|
|
//
|
|
|
|
// This code is licensed to you under the terms of the GNU GPL, version 2 or,
|
|
|
|
// at your option, any later version. See the LICENSE.txt file for the text of
|
|
|
|
// the license.
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// LEGIC RF emulation public interface
|
|
|
|
//-----------------------------------------------------------------------------
|
2009-10-12 19:47:39 +08:00
|
|
|
|
2010-02-21 05:57:20 +08:00
|
|
|
#ifndef __LEGICRF_H
|
|
|
|
#define __LEGICRF_H
|
2009-10-12 19:47:39 +08:00
|
|
|
|
2010-05-06 19:24:01 +08:00
|
|
|
extern void LegicRfSimulate(int phase, int frame, int reqresp);
|
|
|
|
extern int LegicRfReader(int bytes, int offset);
|
|
|
|
extern void LegicRfWriter(int bytes, int offset);
|
2010-02-21 05:57:20 +08:00
|
|
|
|
|
|
|
#endif /* __LEGICRF_H */
|