mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-14 18:48:13 -07:00
skeleton for ZX8211
This commit is contained in:
parent
7668d99300
commit
69ea599fee
11 changed files with 253 additions and 1 deletions
24
armsrc/lfzx.c
Normal file
24
armsrc/lfzx.c
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue