2010-02-21 00:47:22 +00:00
|
|
|
//-----------------------------------------------------------------------------
|
2022-01-07 01:58:03 +01:00
|
|
|
// Copyright (C) Proxmark3 contributors. See AUTHORS.md for details.
|
|
|
|
|
//
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
//
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
|
//
|
|
|
|
|
// See LICENSE.txt for the text of the license.
|
2010-02-21 00:47:22 +00:00
|
|
|
//-----------------------------------------------------------------------------
|
2020-12-04 00:11:57 +01:00
|
|
|
// Low frequency EM commands
|
2010-02-21 00:47:22 +00:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
2010-02-04 01:27:07 +00:00
|
|
|
#ifndef CMDLFEM4X_H__
|
|
|
|
|
#define CMDLFEM4X_H__
|
2017-02-07 22:26:06 +01:00
|
|
|
|
2019-08-08 16:57:33 +02:00
|
|
|
#include "common.h"
|
2010-02-04 01:27:07 +00:00
|
|
|
|
2020-12-04 00:11:57 +01:00
|
|
|
int CmdLFEM(const char *Cmd);
|
2017-07-30 09:17:48 +02:00
|
|
|
|
2010-02-04 01:27:07 +00:00
|
|
|
#endif
|