chg: 'trace'-commands can load / save tracefiles, which should allow it to run offline.

This commit is contained in:
Chris 2018-07-22 08:09:50 +02:00
parent 868784f818
commit 052c8f0998

View file

@ -603,9 +603,9 @@ int CmdTraceSave(const char *Cmd) {
static command_t CommandTable[] = {
{"help", CmdHelp, 1, "This help"},
{"list", CmdTraceList, 0, "List protocol data in trace buffer"},
{"load", CmdTraceLoad, 0, "Load trace from file"},
{"save", CmdTraceSave, 0, "Save trace buffer to file"},
{"list", CmdTraceList, 1, "List protocol data in trace buffer"},
{"load", CmdTraceLoad, 1, "Load trace from file"},
{"save", CmdTraceSave, 1, "Save trace buffer to file"},
{NULL, NULL, 0, NULL}
};