sc8-gat-stand/gat_stand_fw/user/console/commands/about.h

31 lines
559 B
C

/*
* about.h
*/
#ifndef USER_SHELL_COMMANDS_ABOUT_H_
#define USER_SHELL_COMMANDS_ABOUT_H_
static const char about[] = "true's GAT Stand\n"
"a device for displaying badge addons\n"
"compatible with GAT, SAOv1, SAOv1.69bis standards\n\n"
"code and hardware design by true\n"
"manual and info at https://basic.truecontrol.org\n\n";
void cons_about(int argc, char **argv)
{
if (!argc) {
CONS_PRINT("...just do it.");
return;
}
CONS_PRINT(about);
}
#endif /* USER_SHELL_COMMANDS_ABOUT_H_ */