Added more CLI commands.

- Hex debug for debugging VT100 control characters from the keyboard
- Renamed reset to restart (software reset)
- Added reset command (same as bash reset, which resets the VT100 variables)
- Cleaned up the version module field
This commit is contained in:
Jacob Alexander 2014-01-23 02:36:00 -08:00
parent 6ac1482862
commit 38847b7841
3 changed files with 47 additions and 14 deletions

View file

@ -59,7 +59,7 @@ CLIDictItem *CLIDict[CLIMaxDictionaries];
uint8_t CLIDictionariesUsed;
uint8_t CLILEDState;
uint8_t CLIHexDebugMode;
@ -81,6 +81,7 @@ void cliFunc_help ( char* args );
void cliFunc_led ( char* args );
void cliFunc_reload ( char* args );
void cliFunc_reset ( char* args );
void cliFunc_restart ( char* args );
void cliFunc_version ( char* args );