mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-07-10 23:42:40 -07:00
Add version command
This commit is contained in:
parent
7af790aa03
commit
ba8a80b30c
6 changed files with 66 additions and 0 deletions
|
@ -2732,6 +2732,13 @@ static void CmdReadmem(char *str)
|
|||
SendCommand(&c, FALSE);
|
||||
}
|
||||
|
||||
static void CmdVersion(char *str)
|
||||
{
|
||||
UsbCommand c;
|
||||
c.cmd = CMD_VERSION;
|
||||
SendCommand(&c, FALSE);
|
||||
}
|
||||
|
||||
static void CmdLcdReset(char *str)
|
||||
{
|
||||
UsbCommand c;
|
||||
|
@ -2844,6 +2851,7 @@ static struct {
|
|||
{"tiwrite", CmdTIWrite, 0, "Write new data to a r/w TI 134 kHz tag"},
|
||||
{"threshold", CmdThreshold, 1, "Maximize/minimize every value in the graph window depending on threshold"},
|
||||
{"tune", CmdTune, 0, "Measure antenna tuning"},
|
||||
{"version", CmdVersion, 0, "Show version inforation about the connected Proxmark"},
|
||||
{"vchdemod", CmdVchdemod, 0, "['clone'] -- Demodulate samples for VeriChip"},
|
||||
{"zerocrossings", CmdZerocrossings, 1, "Count time between zero-crossings"},
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue