]> git.zerfleddert.de Git - proxmark3-svn/commitdiff
CHG: moved to header file
authoriceman1001 <iceman@iuse.se>
Tue, 24 Jan 2017 23:34:00 +0000 (00:34 +0100)
committericeman1001 <iceman@iuse.se>
Tue, 24 Jan 2017 23:34:00 +0000 (00:34 +0100)
armsrc/fpgaloader.c
armsrc/fpgaloader.h

index a1011ab7c3fccf635520eb8f1ae6cfbb27ff8f12..a96cb5d9e9b2cffff6eaacd9b8511b52d4e55fe3 100644 (file)
@@ -9,16 +9,7 @@
 // Routines to load the FPGA image, and then to configure the FPGA's major
 // mode once it is configured.
 //-----------------------------------------------------------------------------
-
-#include <stdint.h>
-#include <stddef.h>
-#include <stdbool.h>
 #include "fpgaloader.h"
-#include "proxmark3.h"
-#include "util.h"
-#include "string.h"
-#include "BigBuf.h"
-#include "zlib.h"
 
 extern void Dbprintf(const char *fmt, ...);
 
index 49290dc070dd98aae5f57114721f05f9595dc535..f9fddb11a4b5ac7284b73d2d607261d1263c97b2 100644 (file)
@@ -9,6 +9,15 @@
 // Routines to load the FPGA image, and then to configure the FPGA's major
 // mode once it is configured.
 //-----------------------------------------------------------------------------
+#ifndef __FPGALOADER_H
+#define __FPGALOADER_H
+
+#include "common.h"            // standard definitions
+#include "proxmark3.h" // common area
+//#include "util.h"
+#include "string.h"
+#include "BigBuf.h"            // bigbuf mem
+#include "zlib.h"              // uncompress
 
 void FpgaSendCommand(uint16_t cmd, uint16_t v);
 void FpgaWriteConfWord(uint8_t v);
@@ -72,3 +81,5 @@ void SetAdcMuxFor(uint32_t whichGpio);
 #define FPGA_HF_ISO14443A_TAGSIM_MOD                           (2<<0)
 #define FPGA_HF_ISO14443A_READER_LISTEN                                (3<<0)
 #define FPGA_HF_ISO14443A_READER_MOD                           (4<<0)
+
+#endif
\ No newline at end of file
Impressum, Datenschutz