satdump/src-cli/legacy/help_general.cpp
2026-05-25 11:41:11 +02:00

37 lines
1.7 KiB
C++

#include "help_general.h"
#include "init.h"
#include "logger.h"
#include "satdump_vars.h"
void help_general()
{
logger->error("");
logger->error("Visit: www.satdump.org");
logger->error("");
logger->info("Many usecases of SatDump CLI are cover at the following link");
logger->debug("www.satdump.org/posts/basic-usage/#cli-this-part-was-made-by-aang23");
logger->info("");
logger->info("This is GobDump v" + (std::string)satdump::SATDUMP_VERSION);
logger->info("Live processing");
logger->debug(" - Usage: satdump live + parameters");
logger->debug(" - info: use 'satdump live' for more information on 'live' usage and parameters");
logger->info("record processing");
logger->debug(" - Usage: satdump record + parameters");
logger->debug(" - info: use 'satdump record' for more information on 'record' usage and parameters");
logger->info("autotrack feature");
logger->debug(" - Usage: satdump autotrack + parameters");
logger->debug(" - info: use 'satdump autotrack' for more information on 'autotrack' usage and parameters");
logger->info("SatDump GUI version");
logger->debug(" - Usage: satdump-ui");
logger->debug(" - info: GUI version of SatDump");
logger->info("SDR probe");
logger->debug(" - Usage: satdump sdr_probe");
logger->debug(" - info: Return a list of local and remote receivers ");
logger->info("General help");
logger->debug(" - Usage: satdump help or -h");
logger->debug(" - info: Display the general help function");
logger->info("version of GobDump");
logger->debug(" - Usage: satdump version");
logger->debug(" - info: Display the current version of GobDump. Also visible above");
exit(0);
}