2019-03-09 15:49:41 +08:00
|
|
|
//-----------------------------------------------------------------------------
|
2010-02-21 08:12:52 +08:00
|
|
|
// (c) 2009 Henryk Plötz <henryk@ploetzli.ch>
|
2018-09-06 04:23:25 +08:00
|
|
|
// 2018 AntiCat
|
2010-02-21 08:12:52 +08:00
|
|
|
//
|
|
|
|
// 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
|
|
|
|
2018-07-29 17:50:37 +08:00
|
|
|
#include "proxmark3.h"
|
2016-09-02 22:25:54 +08:00
|
|
|
|
2018-08-06 21:05:36 +08:00
|
|
|
extern void LegicRfInfo(void);
|
2018-07-29 17:50:37 +08:00
|
|
|
extern void LegicRfReader(uint16_t offset, uint16_t len, uint8_t iv);
|
|
|
|
extern void LegicRfWriter(uint16_t offset, uint16_t byte, uint8_t iv, uint8_t *data);
|
2010-02-21 05:57:20 +08:00
|
|
|
|
|
|
|
#endif /* __LEGICRF_H */
|