Skip to content

Commit

Permalink
Minor command description changes to sync with user guide
Browse files Browse the repository at this point in the history
  • Loading branch information
dexterbg committed Aug 8, 2018
1 parent 3704933 commit 7192be1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions vehicle/OVMS.V3/main/ovms_command.cpp
Expand Up @@ -542,8 +542,8 @@ OvmsCommandApp::OvmsCommandApp()
monitor = cmd_log->RegisterCommand("monitor", "Monitor log on this console", log_monitor , "[$C]", 0, 1, true);
monitor_yes = monitor->RegisterCommand("yes", "Monitor log", log_monitor , "", 0, 0, true);
monitor->RegisterCommand("no", "Don't monitor log", log_monitor , "", 0, 0, true);
m_root.RegisterCommand("enable","Enter secure mode", enable, "[<password>]", 0, 1);
m_root.RegisterCommand("disable","Leave secure mode", disable, "", 0, 0, true);
m_root.RegisterCommand("enable","Enter secure mode (enable access to all commands)", enable, "[<password>]", 0, 1);
m_root.RegisterCommand("disable","Leave secure mode (disable access to most commands)", disable, "", 0, 0, true);
}

OvmsCommandApp::~OvmsCommandApp()
Expand Down
2 changes: 1 addition & 1 deletion vehicle/OVMS.V3/main/ovms_vfs.cpp
Expand Up @@ -398,7 +398,7 @@ VfsInit::VfsInit()
{
ESP_LOGI(TAG, "Initialising VFS (5200)");

OvmsCommand* cmd_vfs = MyCommandApp.RegisterCommand("vfs","VFS framework",NULL,"$C <file(s)>",0,0,true);
OvmsCommand* cmd_vfs = MyCommandApp.RegisterCommand("vfs","Virtual File System framework",NULL,"$C <file(s)>",0,0,true);
cmd_vfs->RegisterCommand("ls","VFS Directory Listing",vfs_ls, "[<file>]", 0, 1, true);
cmd_vfs->RegisterCommand("cat","VFS Display a file",vfs_cat, "<file>", 1, 1, true);
cmd_vfs->RegisterCommand("stat","VFS Status of a file",vfs_stat, "<file>", 1, 1, true);
Expand Down

0 comments on commit 7192be1

Please sign in to comment.