Adding basic CLI functionality.

- Supports multiple custom command dictionaries
- Basic handling of control characters
- Initial dictionary for integrated commands
This commit is contained in:
Jacob Alexander 2014-01-22 00:38:53 -08:00
parent 85dd7f5c52
commit 7230e061d7
5 changed files with 263 additions and 5 deletions

View file

@ -109,6 +109,7 @@ void int16ToStr ( uint16_t in, char* out );
void hexToStr_op( uint16_t in, char* out, uint8_t op );
void revsStr ( char* in );
uint16_t lenStr ( char* in );
uint8_t eqStr ( char* str1, char* str2 ); // Returns 1 if identical, 0 otherwise
#endif