From: iceman1001 Date: Sat, 21 Jan 2017 09:29:21 +0000 (+0100) Subject: CHG: moved to header file X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/commitdiff_plain/0eea62d4c34035c01a00d2c6e0c62a179dde6e70 CHG: moved to header file --- diff --git a/armsrc/pcf7931.c b/armsrc/pcf7931.c index 58fd5099..df8b1a96 100644 --- a/armsrc/pcf7931.c +++ b/armsrc/pcf7931.c @@ -1,8 +1,4 @@ -#include "proxmark3.h" -#include "apps.h" -#include "lfsampling.h" #include "pcf7931.h" -#include "string.h" #define T0_PCF 8 //period for the pcf7931 in us #define ALLOC 16 diff --git a/armsrc/pcf7931.h b/armsrc/pcf7931.h index cfa81399..48167062 100644 --- a/armsrc/pcf7931.h +++ b/armsrc/pcf7931.h @@ -1,6 +1,12 @@ #ifndef __PCF7931_H #define __PCF7931_H +#include "proxmark3.h" +#include "apps.h" +#include "lfsampling.h" +#include "pcf7931.h" +#include "string.h" + int DemodPCF7931(uint8_t **outBlocks); int IsBlock0PCF7931(uint8_t *Block); int IsBlock1PCF7931(uint8_t *Block);