From 2634d75528b48a0a1aa742fd74b7f1c8e841d1fb Mon Sep 17 00:00:00 2001 From: Bruce Luckcuck Date: Sun, 7 Apr 2019 09:27:57 -0400 Subject: [PATCH] Add missing help text for CLI vtx command --- src/main/cli/cli.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main/cli/cli.c b/src/main/cli/cli.c index 715c9cadb8..ed48ea1c76 100644 --- a/src/main/cli/cli.c +++ b/src/main/cli/cli.c @@ -5740,7 +5740,11 @@ const clicmd_t cmdTable[] = { #endif CLI_COMMAND_DEF("version", "show version", NULL, cliVersion), #ifdef USE_VTX_CONTROL +#ifdef MINIMAL_CLI CLI_COMMAND_DEF("vtx", "vtx channels on switch", NULL, cliVtx), +#else + CLI_COMMAND_DEF("vtx", "vtx channels on switch", " ", cliVtx), +#endif #endif #ifdef USE_VTX_TABLE CLI_COMMAND_DEF("vtxtable", "vtx frequency able", " ... \r\n", cliVtxTable),