// at your option, any later version. See the LICENSE.txt file for the text of
// the license.
//-----------------------------------------------------------------------------
-// Low frequency AWID26 commands
+// Low frequency AWID26/50 commands
//-----------------------------------------------------------------------------
-
-#include <stdio.h> // sscanf
-#include "proxmark3.h" // Definitions, USB controls, etc
-#include "ui.h" // PrintAndLog
-#include "cmdparser.h" // CmdsParse, CmdsHelp
#include "cmdlfawid.h" // AWID function declarations
-#include "lfdemod.h" // parityTest
-#include "util.h" // weigandparity
-#include "protocols.h" // for T55xx config register definitions
-#include "cmdmain.h"
-#include "sleep.h"
static int CmdHelp(const char *Cmd);
#ifndef CMDLFAWID_H__
#define CMDLFAWID_H__
+#include <stdio.h> // sscanf
+#include <stdbool.h> // bool
+#include "proxmark3.h" // Definitions, USB controls, etc
+#include "ui.h" // PrintAndLog
+#include "cmdparser.h" // CmdsParse, CmdsHelp
+#include "lfdemod.h" // parityTest
+#include "util.h" // weigandparity
+#include "protocols.h" // for T55xx config register definitions
+#include "cmdmain.h"
+#include "sleep.h"
+
+
int CmdLFAWID(const char *Cmd);
int CmdAWIDDemodFSK(const char *Cmd);
int CmdAWIDSim(const char *Cmd);