Browse Source

Changed help text for consistency

Now we use more consistent language to refer to the stored configuration
(which is in flash) and the configuration buffer (RAM).
Clara Hobbs 7 years ago
parent
commit
9aa573f8e7
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      src/shell.c

+ 2
- 2
src/shell.c View File

@@ -218,8 +218,8 @@ static void cmd_identify(BaseSequentialStream *chp, int argc, char *argv[])
218 218
 static const struct pdb_shell_cmd commands[] = {
219 219
     {"license", cmd_license, "Show copyright and license information"},
220 220
     {"erase", cmd_erase, "Erase all stored configuration"},
221
-    {"write", cmd_write, "Write the changes to flash"},
222
-    {"load", cmd_load, "Load the stored configuration into RAM"},
221
+    {"write", cmd_write, "Store the configuration buffer"},
222
+    {"load", cmd_load, "Load the stored configuration into the buffer"},
223 223
     {"get_cfg", cmd_get_cfg, "Print the stored configuration"},
224 224
     {"get_tmpcfg", cmd_get_tmpcfg, "Print the configuration buffer"},
225 225
     /* TODO {"toggle_giveback", cmd_toggle_giveback, "Toggle the GiveBack flag"},*/

Loading…
Cancel
Save