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 4.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  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. #pragma once
  22. // ----- Includes -----
  23. // Compiler Includes
  24. #include <Lib/MainLib.h>
  25. // Project Includes
  26. #include <output_com.h>
  27. // ----- Defines -----
  28. #define CLILineBufferMaxSize 100
  29. #define CLIMaxDictionaries 10
  30. #define CLIEntryTabAlign 13
  31. #define CLIMaxHistorySize 10
  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_) || defined(_mk20dx256vlh7_) // 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. #define RING_PREV(i) CLI_wrap(i - 1, 0, CLIMaxHistorySize - 1)
  54. #define RING_NEXT(i) CLI_wrap(i + 1, 0, CLIMaxHistorySize - 1)
  55. // ----- Structs -----
  56. // Each item has a name, description, and function pointer with an argument for arguments
  57. typedef struct CLIDictItem {
  58. const char* name;
  59. const char* description;
  60. const void (*function)(char*);
  61. } CLIDictItem;
  62. // ----- Variables -----
  63. char CLILineBuffer[CLILineBufferMaxSize+1]; // +1 for an additional NULL
  64. uint8_t CLILineBufferCurrent;
  65. // Main command dictionary
  66. CLIDictItem *CLIDict [CLIMaxDictionaries];
  67. char* CLIDictNames[CLIMaxDictionaries];
  68. uint8_t CLIDictionariesUsed;
  69. // History
  70. char CLIHistoryBuffer[CLIMaxHistorySize][CLILineBufferMaxSize];
  71. uint8_t CLIHistoryHead;
  72. uint8_t CLIHistoryTail;
  73. int8_t CLIHistoryCurrent;
  74. // Debug
  75. uint8_t CLILEDState;
  76. uint8_t CLIHexDebugMode;
  77. // ----- Functions and Corresponding Function Aliases -----
  78. void CLI_init();
  79. void CLI_process();
  80. void CLI_registerDictionary( const CLIDictItem *cmdDict, const char* dictName );
  81. void CLI_argumentIsolation( char* string, char** first, char** second );
  82. int CLI_wrap( int x, int low, int high );
  83. void CLI_commandLookup();
  84. void CLI_tabCompletion();
  85. void CLI_saveHistory( char *buff );
  86. void CLI_retreiveHistory( int index );
  87. // CLI Command Functions
  88. void cliFunc_arch ( char* args );
  89. void cliFunc_chip ( char* args );
  90. void cliFunc_clear ( char* args );
  91. void cliFunc_cliDebug( char* args );
  92. void cliFunc_device ( char* args );
  93. void cliFunc_help ( char* args );
  94. void cliFunc_led ( char* args );
  95. void cliFunc_reload ( char* args );
  96. void cliFunc_reset ( char* args );
  97. void cliFunc_restart ( char* args );
  98. void cliFunc_version ( char* args );