/* * cons_about.h * * Created on: Nov 6, 2024 * Author: true */ #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_ */