diff options
author | Evgeny Zinoviev <me@ch1p.io> | 2022-09-02 12:54:59 +0300 |
---|---|---|
committer | Evgeny Zinoviev <me@ch1p.io> | 2022-09-02 12:54:59 +0300 |
commit | f95f3fe3d0923ace5991559a0e08885aad17b3ce (patch) | |
tree | 25ef164d460a1d9c12ae831c4e3e56351cacf6bf | |
parent | 2cfe71d3238a4bfda6a1353e725d7485aca21008 (diff) |
minor help message fixes
-rw-r--r-- | src/inverterctl.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/inverterctl.cc b/src/inverterctl.cc index bc50f60..f4eb51c 100644 --- a/src/inverterctl.cc +++ b/src/inverterctl.cc @@ -127,8 +127,8 @@ static void usage(const char* progname) { " to see a list of allowed values.\n" "\n" " set-max-charge-voltage <cv> <fv>\n" - " cv: Constant voltage (48.0 ~ 58.4).\n" - " fv: Float voltage (48.0 ~ 58.4).\n" + " cv: Constant voltage (48.0 ~ 58.4)\n" + " fv: Float voltage (48.0 ~ 58.4)\n" "\n" " set-ac-output-freq 50|60\n" " set-ac-output-voltage <v>\n" @@ -155,7 +155,7 @@ static void usage(const char* progname) { " set-charge-source-priority <id> <priority>\n" " id: Parallel machine ID\n" " priority: SF|SU|S\n" - " 'SF' means " << p18::ChargeSourcePriority::SolarFirst << ",\n" + " 'SF' means " << p18::ChargeSourcePriority::SolarFirst << "\n" " 'SU' means " << p18::ChargeSourcePriority::SolarAndUtility << "\n" " 'S' means " << p18::ChargeSourcePriority::SolarOnly << "\n" "\n" |