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);