2010-02-21 08:47:22 +08:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// Copyright (C) 2010 iZsh <izsh at fail0verflow.com>
|
|
|
|
//
|
|
|
|
// 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 commands
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
Client cleanup and restructuring. Stage 1...
Next Step is refactoring some of the giant functions which are
just copy/paste of some other ones with just a few line changes,
removing unnecessary 'goto' etc.
The MS Windows version is broken with this commit but will be fixed
soon. Everything can't be done all at once :P
The commands are now hierarchical, for example:
"hf 14a read" vs. "hf 14b read".
You can also request help:
"hf help", "data help", "hf 15 help" etc.
Indents are now space-based, not tab-based anymore. Hopefully
no one will be trolling about it, considering the suicide-prone work
being done here ;)
client/cmdhw.c, client/proxusb.c, client/cmdhw.h, client/proxusb.h,
client/cmdmain.c, client/cmdlfhid.c, client/cmdmain.h, client/cmdlfhid.h,
client/data.c, client/data.h, client/cmdhf.c, client/cmdlf.c,
client/cmdhf.h, client/cmdhf15.c, client/cmdhf14b.c, client/cmdlf.h,
client/cmdhf15.h, client/cmdhf14b.h, client/cmddata.c, client/cmddata.h,
client/ui.c, client/cmdparser.c, client/cmdlfti.c, client/ui.h,
client/cmdlfem4x.c, client/cmdparser.h, client/cmdlfti.h, client/cmdlfem4x.h,
client/graph.c, client/graph.h, client/cmdhf14a.c, client/cmdhf14a.h,
client/cmdhflegic.c, client/cmdhflegic.c: New files.
client/cli.c, client/flasher.c, client/snooper.c, client/proxmark3.c,
client/proxmark3.h, client/Makefile: Update accordingly.
client/flash.h, client/flash.c, client/proxgui.cpp: Cosmetic changes.
client/translate.h, client/command.c, client/gui.c,
client/usb.c, client/prox.h: Remove.
include/usb_cmd.h (CMD_ACQUIRE_RAW_ADC_SAMPLES_ISO_14443_SIM): Remove dead cmd.
common/crc16.h: New file.
common/crc16.c: Modify accordingly.
common/iso14443crc.h: New file.
common/iso14443_crc.c: Rename to
common/iso14443crc.c: and modify accordingly.
armsrc/lfops.c, armsrc/iso14443.c,
armsrc/iso14443a.c: include .h files from
the common directory instead of including the c files.
common/Makefile.common, armsrc/Makefile: Modify accordingly.
2010-02-04 09:27:07 +08:00
|
|
|
#ifndef CMDLF_H__
|
|
|
|
#define CMDLF_H__
|
2016-02-28 02:47:10 +08:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
2017-07-12 00:31:10 +08:00
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdint.h>
|
2016-02-28 02:47:10 +08:00
|
|
|
#include <string.h>
|
|
|
|
#include <limits.h>
|
|
|
|
#include "proxmark3.h"
|
2019-03-10 06:35:06 +08:00
|
|
|
#include "lfdemod.h" // device/client demods of LF signals
|
|
|
|
#include "util.h" // for parsing cli command utils
|
|
|
|
#include "ui.h" // for show graph controls
|
|
|
|
#include "graph.h" // for graph data
|
|
|
|
#include "cmdparser.h" // for getting cli commands included in cmdmain.h
|
|
|
|
#include "cmdmain.h" // for sending cmds to device. GetFromBigBuf
|
|
|
|
#include "cmddata.h" // for `lf search`
|
|
|
|
#include "cmdlfawid.h" // for awid menu
|
|
|
|
#include "cmdlfem4x.h" // for em4x menu
|
|
|
|
#include "cmdlfhid.h" // for hid menu
|
|
|
|
#include "cmdlfhitag.h" // for hitag menu
|
|
|
|
#include "cmdlfio.h" // for ioprox menu
|
|
|
|
#include "cmdlft55xx.h" // for t55xx menu
|
|
|
|
#include "cmdlfti.h" // for ti menu
|
|
|
|
#include "cmdlfpresco.h" // for presco menu
|
|
|
|
#include "cmdlfpcf7931.h" // for pcf7931 menu
|
|
|
|
#include "cmdlfpyramid.h" // for pyramid menu
|
|
|
|
#include "cmdlfviking.h" // for viking menu
|
|
|
|
#include "cmdlfguard.h" // for GuardAll menu
|
|
|
|
#include "cmdlfnedap.h" // for NEDAP menu
|
|
|
|
#include "cmdlfjablotron.h" // for JABLOTRON menu
|
2016-12-15 06:23:16 +08:00
|
|
|
#include "cmdlfvisa2000.h" // for VISA2000 menu
|
2019-03-10 06:35:06 +08:00
|
|
|
#include "cmdlfnoralsy.h" // for NORALSY meny
|
|
|
|
#include "cmdlffdx.h" // for FDX-B meny
|
|
|
|
#include "cmdlfcotag.h" // for COTAG meny
|
|
|
|
#include "cmdlfindala.h" // for indala menu
|
|
|
|
#include "cmdlfguard.h" // for gproxii menu
|
|
|
|
#include "cmdlffdx.h" // for fdx-b menu
|
|
|
|
#include "cmdlfparadox.h" // for paradox menu
|
|
|
|
#include "cmdlfnexwatch.h" // for nexwatch menu
|
|
|
|
#include "cmdlfsecurakey.h" // for securakey menu
|
|
|
|
#include "cmdlfpac.h" // for pac menu
|
|
|
|
#include "cmdlfkeri.h" // for keri menu
|
2017-01-19 05:54:27 +08:00
|
|
|
|
2019-03-10 06:35:06 +08:00
|
|
|
#define T55XX_WRITE_TIMEOUT 1500
|
2017-01-19 05:54:27 +08:00
|
|
|
|
Client cleanup and restructuring. Stage 1...
Next Step is refactoring some of the giant functions which are
just copy/paste of some other ones with just a few line changes,
removing unnecessary 'goto' etc.
The MS Windows version is broken with this commit but will be fixed
soon. Everything can't be done all at once :P
The commands are now hierarchical, for example:
"hf 14a read" vs. "hf 14b read".
You can also request help:
"hf help", "data help", "hf 15 help" etc.
Indents are now space-based, not tab-based anymore. Hopefully
no one will be trolling about it, considering the suicide-prone work
being done here ;)
client/cmdhw.c, client/proxusb.c, client/cmdhw.h, client/proxusb.h,
client/cmdmain.c, client/cmdlfhid.c, client/cmdmain.h, client/cmdlfhid.h,
client/data.c, client/data.h, client/cmdhf.c, client/cmdlf.c,
client/cmdhf.h, client/cmdhf15.c, client/cmdhf14b.c, client/cmdlf.h,
client/cmdhf15.h, client/cmdhf14b.h, client/cmddata.c, client/cmddata.h,
client/ui.c, client/cmdparser.c, client/cmdlfti.c, client/ui.h,
client/cmdlfem4x.c, client/cmdparser.h, client/cmdlfti.h, client/cmdlfem4x.h,
client/graph.c, client/graph.h, client/cmdhf14a.c, client/cmdhf14a.h,
client/cmdhflegic.c, client/cmdhflegic.c: New files.
client/cli.c, client/flasher.c, client/snooper.c, client/proxmark3.c,
client/proxmark3.h, client/Makefile: Update accordingly.
client/flash.h, client/flash.c, client/proxgui.cpp: Cosmetic changes.
client/translate.h, client/command.c, client/gui.c,
client/usb.c, client/prox.h: Remove.
include/usb_cmd.h (CMD_ACQUIRE_RAW_ADC_SAMPLES_ISO_14443_SIM): Remove dead cmd.
common/crc16.h: New file.
common/crc16.c: Modify accordingly.
common/iso14443crc.h: New file.
common/iso14443_crc.c: Rename to
common/iso14443crc.c: and modify accordingly.
armsrc/lfops.c, armsrc/iso14443.c,
armsrc/iso14443a.c: include .h files from
the common directory instead of including the c files.
common/Makefile.common, armsrc/Makefile: Modify accordingly.
2010-02-04 09:27:07 +08:00
|
|
|
int CmdLF(const char *Cmd);
|
|
|
|
|
2019-04-06 06:38:22 +08:00
|
|
|
int CmdLFSetConfig(const char *Cmd);
|
2017-07-12 00:31:10 +08:00
|
|
|
|
2019-04-06 06:38:22 +08:00
|
|
|
int CmdLFCommandRead(const char *Cmd);
|
|
|
|
int CmdFlexdemod(const char *Cmd);
|
|
|
|
int CmdLFRead(const char *Cmd);
|
|
|
|
int CmdLFSim(const char *Cmd);
|
|
|
|
int CmdLFaskSim(const char *Cmd);
|
|
|
|
int CmdLFfskSim(const char *Cmd);
|
|
|
|
int CmdLFpskSim(const char *Cmd);
|
|
|
|
int CmdLFSimBidir(const char *Cmd);
|
|
|
|
int CmdLFSniff(const char *Cmd);
|
|
|
|
int CmdVchDemod(const char *Cmd);
|
|
|
|
int CmdLFfind(const char *Cmd);
|
2017-02-01 21:11:11 +08:00
|
|
|
|
2019-04-06 06:38:22 +08:00
|
|
|
bool lf_read(bool silent, uint32_t samples);
|
Client cleanup and restructuring. Stage 1...
Next Step is refactoring some of the giant functions which are
just copy/paste of some other ones with just a few line changes,
removing unnecessary 'goto' etc.
The MS Windows version is broken with this commit but will be fixed
soon. Everything can't be done all at once :P
The commands are now hierarchical, for example:
"hf 14a read" vs. "hf 14b read".
You can also request help:
"hf help", "data help", "hf 15 help" etc.
Indents are now space-based, not tab-based anymore. Hopefully
no one will be trolling about it, considering the suicide-prone work
being done here ;)
client/cmdhw.c, client/proxusb.c, client/cmdhw.h, client/proxusb.h,
client/cmdmain.c, client/cmdlfhid.c, client/cmdmain.h, client/cmdlfhid.h,
client/data.c, client/data.h, client/cmdhf.c, client/cmdlf.c,
client/cmdhf.h, client/cmdhf15.c, client/cmdhf14b.c, client/cmdlf.h,
client/cmdhf15.h, client/cmdhf14b.h, client/cmddata.c, client/cmddata.h,
client/ui.c, client/cmdparser.c, client/cmdlfti.c, client/ui.h,
client/cmdlfem4x.c, client/cmdparser.h, client/cmdlfti.h, client/cmdlfem4x.h,
client/graph.c, client/graph.h, client/cmdhf14a.c, client/cmdhf14a.h,
client/cmdhflegic.c, client/cmdhflegic.c: New files.
client/cli.c, client/flasher.c, client/snooper.c, client/proxmark3.c,
client/proxmark3.h, client/Makefile: Update accordingly.
client/flash.h, client/flash.c, client/proxgui.cpp: Cosmetic changes.
client/translate.h, client/command.c, client/gui.c,
client/usb.c, client/prox.h: Remove.
include/usb_cmd.h (CMD_ACQUIRE_RAW_ADC_SAMPLES_ISO_14443_SIM): Remove dead cmd.
common/crc16.h: New file.
common/crc16.c: Modify accordingly.
common/iso14443crc.h: New file.
common/iso14443_crc.c: Rename to
common/iso14443crc.c: and modify accordingly.
armsrc/lfops.c, armsrc/iso14443.c,
armsrc/iso14443a.c: include .h files from
the common directory instead of including the c files.
common/Makefile.common, armsrc/Makefile: Modify accordingly.
2010-02-04 09:27:07 +08:00
|
|
|
|
2015-10-21 15:07:36 +08:00
|
|
|
// usages helptext
|
2019-04-06 06:38:22 +08:00
|
|
|
int usage_lf_cmdread(void);
|
|
|
|
int usage_lf_read(void);
|
|
|
|
int usage_lf_sniff(void);
|
|
|
|
int usage_lf_config(void);
|
|
|
|
int usage_lf_simfsk(void);
|
|
|
|
int usage_lf_simask(void);
|
|
|
|
int usage_lf_simpsk(void);
|
Client cleanup and restructuring. Stage 1...
Next Step is refactoring some of the giant functions which are
just copy/paste of some other ones with just a few line changes,
removing unnecessary 'goto' etc.
The MS Windows version is broken with this commit but will be fixed
soon. Everything can't be done all at once :P
The commands are now hierarchical, for example:
"hf 14a read" vs. "hf 14b read".
You can also request help:
"hf help", "data help", "hf 15 help" etc.
Indents are now space-based, not tab-based anymore. Hopefully
no one will be trolling about it, considering the suicide-prone work
being done here ;)
client/cmdhw.c, client/proxusb.c, client/cmdhw.h, client/proxusb.h,
client/cmdmain.c, client/cmdlfhid.c, client/cmdmain.h, client/cmdlfhid.h,
client/data.c, client/data.h, client/cmdhf.c, client/cmdlf.c,
client/cmdhf.h, client/cmdhf15.c, client/cmdhf14b.c, client/cmdlf.h,
client/cmdhf15.h, client/cmdhf14b.h, client/cmddata.c, client/cmddata.h,
client/ui.c, client/cmdparser.c, client/cmdlfti.c, client/ui.h,
client/cmdlfem4x.c, client/cmdparser.h, client/cmdlfti.h, client/cmdlfem4x.h,
client/graph.c, client/graph.h, client/cmdhf14a.c, client/cmdhf14a.h,
client/cmdhflegic.c, client/cmdhflegic.c: New files.
client/cli.c, client/flasher.c, client/snooper.c, client/proxmark3.c,
client/proxmark3.h, client/Makefile: Update accordingly.
client/flash.h, client/flash.c, client/proxgui.cpp: Cosmetic changes.
client/translate.h, client/command.c, client/gui.c,
client/usb.c, client/prox.h: Remove.
include/usb_cmd.h (CMD_ACQUIRE_RAW_ADC_SAMPLES_ISO_14443_SIM): Remove dead cmd.
common/crc16.h: New file.
common/crc16.c: Modify accordingly.
common/iso14443crc.h: New file.
common/iso14443_crc.c: Rename to
common/iso14443crc.c: and modify accordingly.
armsrc/lfops.c, armsrc/iso14443.c,
armsrc/iso14443a.c: include .h files from
the common directory instead of including the c files.
common/Makefile.common, armsrc/Makefile: Modify accordingly.
2010-02-04 09:27:07 +08:00
|
|
|
#endif
|