From f8a13c9ac8c868abd22a38fffd66c34e52ccbda9 Mon Sep 17 00:00:00 2001 From: mikeller Date: Sun, 16 Jun 2019 13:14:45 +1200 Subject: [PATCH] Fixed help text for CLI 'serialpassthrough'. --- src/main/cli/cli.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/cli/cli.c b/src/main/cli/cli.c index f4e545cd4e..1f2654d5f6 100644 --- a/src/main/cli/cli.c +++ b/src/main/cli/cli.c @@ -5965,9 +5965,9 @@ const clicmd_t cmdTable[] = { CLI_COMMAND_DEF("serial", "configure serial ports", NULL, cliSerial), #if defined(USE_SERIAL_PASSTHROUGH) #if defined(USE_PINIO) - CLI_COMMAND_DEF("serialpassthrough", "passthrough serial data to port", " [baud] [mode] [dtr pinio|'reset']", cliSerialPassthrough), + CLI_COMMAND_DEF("serialpassthrough", "passthrough serial data data from port 1 to VCP / port 2", " [] [1] [none||reset] [] [] []", cliSerialPassthrough), #else - CLI_COMMAND_DEF("serialpassthrough", "passthrough serial data to port", " [baud] [mode] ['reset']", cliSerialPassthrough), + CLI_COMMAND_DEF("serialpassthrough", "passthrough serial data from port 1 to VCP / port 2", " [] [] [none|reset] [] [] []", cliSerialPassthrough), #endif #endif #ifdef USE_SERVOS