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

18 lines
256 B
C

/* Command: gui
Arguments: none
Description: launches the WR Core monitor GUI */
#include "shell.h"
static int cmd_gui(const char *args[])
{
wrc_ui_mode = UI_GUI_MODE;
return 0;
}
DEFINE_WRC_COMMAND(gui) = {
.name = "gui",
.exec = cmd_gui,
};