Browse Source

Initial Force Gauge CLI commands.

simple
Jacob Alexander 10 years ago
parent
commit
9de815f8a7
2 changed files with 44 additions and 1 deletions
  1. 1
    1
      Debug/cli/cli.h
  2. 43
    0
      main.c

+ 1
- 1
Debug/cli/cli.h View File

@@ -35,7 +35,7 @@

#define CLILineBufferMaxSize 100
#define CLIMaxDictionaries 5
#define CLIEntryTabAlign 12
#define CLIEntryTabAlign 13


// ----- Structs -----

+ 43
- 0
main.c View File

@@ -49,6 +49,17 @@



// ----- Function Declarations -----

void cliFunc_free ( char* args );
void cliFunc_gaugeHelp ( char* args );
void cliFunc_single ( char* args );
void cliFunc_start ( char* args );
void cliFunc_zeroForce ( char* args );
void cliFunc_zeroPosition( char* args );



// ----- Variables -----

// Timer Interrupt for flagging a send of the sampled key detection data to the USB host
@@ -211,3 +222,35 @@ void pit0_isr(void)
#endif
}


// ----- CLI Command Functions -----

void cliFunc_free( char* args )
{
}


void cliFunc_gaugeHelp( char* args )
{
}


void cliFunc_single( char* args )
{
}


void cliFunc_start( char* args )
{
}


void cliFunc_zeroForce( char* args )
{
}


void cliFunc_zeroPosition( char* args )
{
}