Files
bouwhuim.nikhef.nl dee2668a61 newest version WRPC
2013-09-10 08:08:59 +00:00

22 lines
379 B
C

#include "shell.h"
#include "endpoint.h"
#include <string.h>
#include <wrc.h>
static int cmd_stat(const char *args[])
{
if (!strcasecmp(args[0], "cont")) {
wrc_ui_mode = UI_STAT_MODE;
} else if (!strcasecmp(args[0], "bts"))
mprintf("%d ps\n", ep_get_bitslide());
else
wrc_log_stats(1);
return 0;
}
DEFINE_WRC_COMMAND(stat) = {
.name = "stat",
.exec = cmd_stat,
};