mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-03-18 19:13:41 +08:00
19 lines
671 B
C
19 lines
671 B
C
//-----------------------------------------------------------------------------
|
|
// 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 __LFZX_H
|
|
#define __LFZX_H
|
|
|
|
#include "common.h"
|
|
#include "zx8211.h"
|
|
|
|
int zx8211_read(zx8211_data_t *zxd, bool ledcontrol);
|
|
int zx8211_write(zx8211_data_t *zxd, bool ledcontrol);
|
|
|
|
#endif
|