changeset 317:7d21e5b97be4

Merge pull request #32 from smasher816/master Add Clear CLI function
author Jacob Alexander <haata@kiibohd.com>
date Thu, 02 Apr 2015 19:07:21 -0700
parents bcdc04cb8e2e (current diff) a0ad3a172269 (diff)
children 64f43aad73af
files
diffstat 2 files changed, 8 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/Debug/cli/cli.c	Sat Mar 21 17:12:41 2015 -0700
+++ b/Debug/cli/cli.c	Thu Apr 02 19:07:21 2015 -0700
@@ -35,6 +35,7 @@
 // ----- Variables -----
 
 // Basic command dictionary
+CLIDict_Entry( clear, "Clear the screen.");
 CLIDict_Entry( cliDebug, "Enables/Disables hex output of the most recent cli input." );
 CLIDict_Entry( help,     "You're looking at it :P" );
 CLIDict_Entry( led,      "Enables/Disables indicator LED. Try a couple times just in case the LED is in an odd state.\r\n\t\t\033[33mWarning\033[0m: May adversely affect some modules..." );
@@ -44,6 +45,7 @@
 CLIDict_Entry( version,  "Version information about this firmware." );
 
 CLIDict_Def( basicCLIDict, "General Commands" ) = {
+	CLIDict_Item( clear ),
 	CLIDict_Item( cliDebug ),
 	CLIDict_Item( help ),
 	CLIDict_Item( led ),
@@ -350,6 +352,11 @@
 
 // ----- CLI Command Functions -----
 
+void cliFunc_clear( char* args)
+{
+	print("\033[2J\033[H\r"); // Erases the whole screen
+}
+
 void cliFunc_cliDebug( char* args )
 {
 	// Toggle Hex Debug Mode
--- a/Debug/cli/cli.h	Sat Mar 21 17:12:41 2015 -0700
+++ b/Debug/cli/cli.h	Thu Apr 02 19:07:21 2015 -0700
@@ -108,6 +108,7 @@
 // CLI Command Functions
 void cliFunc_arch    ( char* args );
 void cliFunc_chip    ( char* args );
+void cliFunc_clear   ( char* args );
 void cliFunc_cliDebug( char* args );
 void cliFunc_device  ( char* args );
 void cliFunc_help    ( char* args );