]>
git.zerfleddert.de Git - proxmark3-svn/blob - client/cmdmain.c
e199e127139f289c03a042ff7b2258f062d2041d
1 //-----------------------------------------------------------------------------
2 // Copyright (C) 2010 iZsh <izsh at fail0verflow.com>
4 // This code is licensed to you under the terms of the GNU GPL, version 2 or,
5 // at your option, any later version. See the LICENSE.txt file for the text of
7 //-----------------------------------------------------------------------------
8 // Main command parser entry point
9 //-----------------------------------------------------------------------------
18 #include "cmdparser.h"
19 #include "proxmark3.h"
28 #include "util_posix.h"
29 #include "cmdscript.h"
33 unsigned int current_command
= CMD_UNKNOWN
;
35 static int CmdHelp(const char *Cmd
);
36 static int CmdQuit(const char *Cmd
);
37 static int CmdRev(const char *Cmd
);
40 static command_t CommandTable
[] =
42 {"help", CmdHelp
, 1, "This help. Use '<command> help' for details of a particular command."},
43 {"data", CmdData
, 1, "{ Plot window / data buffer manipulation... }"},
44 {"hf", CmdHF
, 1, "{ High Frequency commands... }"},
45 {"hw", CmdHW
, 1, "{ Hardware commands... }"},
46 {"lf", CmdLF
, 1, "{ Low Frequency commands... }"},
47 {"reveng",CmdRev
, 1, "Crc calculations from the software reveng1-30"},
48 {"script",CmdScript
,1, "{ Scripting commands }"},
49 {"quit", CmdQuit
, 1, "Exit program"},
50 {"exit", CmdQuit
, 1, "Exit program"},
54 command_t
* getTopLevelCommandTable()
59 int CmdHelp(const char *Cmd
)
61 CmdsHelp(CommandTable
);
65 int CmdQuit(const char *Cmd
)
70 int CmdRev(const char *Cmd
)
76 //-----------------------------------------------------------------------------
77 // Entry point into our code: called whenever the user types a command and
78 // then presses Enter, which the full command line that they typed.
79 //-----------------------------------------------------------------------------
80 int CommandReceived(char *Cmd
) {
81 return CmdsParse(CommandTable
, Cmd
);