This commit is contained in:
iceman1001 2021-12-24 15:06:38 +01:00
commit 4ff7514232
4 changed files with 6 additions and 5 deletions

View file

@ -82,7 +82,7 @@ else
endif
ifneq (,$(findstring WITH_ZX8211,$(APP_CFLAGS)))
SRC_ZX = lfxz.c
SRC_ZX = lfzx.c
else
SRC_ZX =
endif

View file

@ -12,6 +12,7 @@
#include "lfzx.h"
#include "pm3_cmd.h" // struct
#include "zx8211.h"
int zx8211_read(zx8211_data_t *zxd, bool ledcontrol) {
return PM3_SUCCESS;

View file

@ -7,12 +7,12 @@
//-----------------------------------------------------------------------------
// Low frequency ZX8211 funtions
//-----------------------------------------------------------------------------
#ifndef __LFOPS_H
#define __LFOPS_H
#ifndef __LFZX_H
#define __LFZX_H
#include "common.h"
#include "pm3_cmd.h" // struct
#include "zx8211.h"
int zx8211_read(zx8211_data_t *zxd, bool ledcontrol);
int zx8211_write(zx8211_data_t *zxd, bool ledcontrol);

View file

@ -25,8 +25,8 @@
#include "protocols.h" // for T55xx config register definitions
#include "lfdemod.h" // parityTest
#include "cmdlft55xx.h" // write verify
#include "cmdlfem4x05.h" //
#include "cliparser.h"
#include "zx8211.h"
static int CmdHelp(const char *Cmd);