Bläddra i källkod

Initial Force Gauge CLI commands.

simple
Jacob Alexander 10 år sedan
förälder
incheckning
9de815f8a7
2 ändrade filer med 44 tillägg och 1 borttagningar
  1. 1
    1
      Debug/cli/cli.h
  2. 43
    0
      main.c

+ 1
- 1
Debug/cli/cli.h Visa fil



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




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

+ 43
- 0
main.c Visa fil







// ----- 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 ----- // ----- Variables -----


// Timer Interrupt for flagging a send of the sampled key detection data to the USB host // Timer Interrupt for flagging a send of the sampled key detection data to the USB host
#endif #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 )
{
}