Kiibohd Controller
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

cli.h 3.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. /* Copyright (C) 2014-2015 by Jacob Alexander
  2. *
  3. * Permission is hereby granted, free of charge, to any person obtaining a copy
  4. * of this software and associated documentation files (the "Software"), to deal
  5. * in the Software without restriction, including without limitation the rights
  6. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  7. * copies of the Software, and to permit persons to whom the Software is
  8. * furnished to do so, subject to the following conditions:
  9. *
  10. * The above copyright notice and this permission notice shall be included in
  11. * all copies or substantial portions of the Software.
  12. *
  13. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  14. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  15. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  16. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  17. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  18. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  19. * THE SOFTWARE.
  20. */
  21. #ifndef cli_h__
  22. #define cli_h__
  23. // ----- Includes -----
  24. // Compiler Includes
  25. #include <Lib/MainLib.h>
  26. // Project Includes
  27. #include <output_com.h>
  28. // ----- Defines -----
  29. #define CLILineBufferMaxSize 100
  30. #define CLIMaxDictionaries 10
  31. #define CLIEntryTabAlign 13
  32. // ----- Macros -----
  33. // AVR CLI Dictionary definitions (has to deal with the annoying PROGMEM
  34. // Only using PROGMEM with descriptions (all the string comparison tools need to be re-written otherwise)
  35. #if defined(_at90usb162_) || defined(_atmega32u4_) || defined(_at90usb646_) || defined(_at90usb1286_) // AVR
  36. #define CLIDict_Def(name,description) \
  37. const PROGMEM char name##Name[] = description; \
  38. const CLIDictItem name[]
  39. #define CLIDict_Item(name) \
  40. { #name, name##CLIDict_DescEntry, (const void (*)(char*))cliFunc_##name }
  41. #define CLIDict_Entry(name,description) \
  42. const PROGMEM char name##CLIDict_DescEntry[] = description;
  43. // ARM is easy :P
  44. #elif defined(_mk20dx128_) || defined(_mk20dx128vlf5_) || defined(_mk20dx256_) // ARM
  45. #define CLIDict_Def(name,description) \
  46. const char name##Name[] = description; \
  47. const CLIDictItem name[]
  48. #define CLIDict_Item(name) \
  49. { #name, name##CLIDict_DescEntry, (const void (*)(char*))cliFunc_##name }
  50. #define CLIDict_Entry(name,description) \
  51. const char name##CLIDict_DescEntry[] = description;
  52. #endif
  53. // ----- Structs -----
  54. // Each item has a name, description, and function pointer with an argument for arguments
  55. typedef struct CLIDictItem {
  56. const char* name;
  57. const char* description;
  58. const void (*function)(char*);
  59. } CLIDictItem;
  60. // ----- Variables -----
  61. char CLILineBuffer[CLILineBufferMaxSize+1]; // +1 for an additional NULL
  62. uint8_t CLILineBufferCurrent;
  63. // Main command dictionary
  64. CLIDictItem *CLIDict [CLIMaxDictionaries];
  65. char* CLIDictNames[CLIMaxDictionaries];
  66. uint8_t CLIDictionariesUsed;
  67. uint8_t CLILEDState;
  68. uint8_t CLIHexDebugMode;
  69. // ----- Functions and Corresponding Function Aliases -----
  70. void CLI_init();
  71. void CLI_process();
  72. void CLI_registerDictionary( const CLIDictItem *cmdDict, const char* dictName );
  73. void CLI_argumentIsolation( char* string, char** first, char** second );
  74. void CLI_commandLookup();
  75. void CLI_tabCompletion();
  76. // CLI Command Functions
  77. void cliFunc_arch ( char* args );
  78. void cliFunc_chip ( char* args );
  79. void cliFunc_cliDebug( char* args );
  80. void cliFunc_device ( char* args );
  81. void cliFunc_help ( char* args );
  82. void cliFunc_led ( char* args );
  83. void cliFunc_reload ( char* args );
  84. void cliFunc_reset ( char* args );
  85. void cliFunc_restart ( char* args );
  86. void cliFunc_version ( char* args );
  87. #endif