X-Git-Url: http://cvs.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/e30c654b196a87a13ae7f7d4ced930b296c038ec..d1e197e9ec44affdf3ad9ef0ea6a221d0c30aa6d:/armsrc/legicrf.h?ds=inline

diff --git a/armsrc/legicrf.h b/armsrc/legicrf.h
index 16c6ce6a..5c3bd81b 100644
--- a/armsrc/legicrf.h
+++ b/armsrc/legicrf.h
@@ -1,13 +1,48 @@
-/*
- * LEGIC RF emulation public interface
- *
- * (c) 2009 Henryk Plötz <henryk@ploetzli.ch>
- */
+//-----------------------------------------------------------------------------
+// (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
 
-extern void LegicRfSimulate(void);
-extern void LegicRfReader(int bytes, int offset);
+#include "proxmark3.h"	//
+#include "apps.h"
+#include "util.h"		//
+#include "string.h"		
+#include "legic_prng.h"	// legic PRNG impl
+#include "crc.h"		// legic crc-4
+#include "ticks.h"		// timers
+#include "legic.h"		// legic_card_select_t struct
+
+extern void LegicRfSimulate(int phase, int frame, int reqresp);
+extern int 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 LegicRfInfo(void);
+
+uint32_t get_key_stream(int skip, int count);
+void frame_send_tag(uint16_t response, uint8_t bits);
+void frame_sendAsReader(uint32_t data, uint8_t bits);
+
+int legic_read_byte( uint16_t index, uint8_t cmd_sz);
+bool legic_write_byte(uint16_t index, uint8_t byte, uint8_t addr_sz);
+
+int legic_select_card(legic_card_select_t *p_card);
+int legic_select_card_iv(legic_card_select_t *p_card, uint8_t iv);
+
+void LegicCommonInit(bool clear_mem);
+
+// emulator mem
+void LegicEMemSet(uint32_t arg0, uint32_t arg1, uint8_t *data);
+void LegicEMemGet(uint32_t arg0, uint32_t arg1);
+void legic_emlset_mem(uint8_t *data, int offset, int numofbytes);
+void legic_emlget_mem(uint8_t *data, int offset, int numofbytes);
+
+void ice_legic_setup();
 
 #endif /* __LEGICRF_H */