skeleton for ZX8211

This commit is contained in:
iceman1001 2021-12-24 13:32:28 +01:00
commit 69ea599fee
11 changed files with 253 additions and 1 deletions

24
armsrc/lfzx.c Normal file
View file

@ -0,0 +1,24 @@
//-----------------------------------------------------------------------------
// Copyright (C) 2021 Iceman
//
// 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.
//-----------------------------------------------------------------------------
// Low frequency ZX8211 funtions
//-----------------------------------------------------------------------------
#ifndef __LFOPS_H
#define __LFOPS_H
#include "lfzx.h"
#include "pm3_cmd.h" // struct
int zx8211_read(zx8211_data_t *zxd, bool ledcontrol) {
return PM3_SUCCESS;
}
int zx8211_write(zx8211_data_t *zxd, bool ledcontrol) {
return PM3_SUCCESS;
}
#endif