mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-14 02:27:26 -07:00
internal help fcts -> static
This commit is contained in:
parent
cc0454d5d2
commit
3d6d58aae5
63 changed files with 392 additions and 539 deletions
|
@ -15,7 +15,7 @@ static int CmdHelp(const char *Cmd);
|
|||
static uint8_t *trace;
|
||||
long traceLen = 0;
|
||||
|
||||
int usage_trace_list() {
|
||||
static int usage_trace_list() {
|
||||
PrintAndLogEx(NORMAL, "List protocol data in trace buffer.");
|
||||
PrintAndLogEx(NORMAL, "Usage: trace list <protocol> [f][c| <0|1>");
|
||||
PrintAndLogEx(NORMAL, " f - show frame delay times as well");
|
||||
|
@ -43,14 +43,14 @@ int usage_trace_list() {
|
|||
PrintAndLogEx(NORMAL, " trace list iclass");
|
||||
return 0;
|
||||
}
|
||||
int usage_trace_load() {
|
||||
static int usage_trace_load() {
|
||||
PrintAndLogEx(NORMAL, "Load protocol data from file to trace buffer.");
|
||||
PrintAndLogEx(NORMAL, "Usage: trace load <filename>");
|
||||
PrintAndLogEx(NORMAL, "Examples:");
|
||||
PrintAndLogEx(NORMAL, " trace load mytracefile.bin");
|
||||
return 0;
|
||||
}
|
||||
int usage_trace_save() {
|
||||
static int usage_trace_save() {
|
||||
PrintAndLogEx(NORMAL, "Save protocol data from trace buffer to file.");
|
||||
PrintAndLogEx(NORMAL, "Usage: trace save <filename>");
|
||||
PrintAndLogEx(NORMAL, "Examples:");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue