mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-12-27 10:34:08 +08:00
e779f06c5e
I see no adventage in poluting all sources that include legicrf.h with our internal depedencies (includes) and function names.
21 lines
848 B
C
21 lines
848 B
C
//-----------------------------------------------------------------------------
|
|
// (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
|
|
//-----------------------------------------------------------------------------
|
|
|
|
#ifndef __LEGICRF_H
|
|
#define __LEGICRF_H
|
|
|
|
#include "proxmark3.h"
|
|
|
|
extern void LegicRfInfo(void);
|
|
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);
|
|
extern void LegicRfSimulate(int phase, int frame, int reqresp);
|
|
|
|
#endif /* __LEGICRF_H */
|