]> git.donarmstrong.com Git - kiibohd-controller.git/blob - Scan/MD1/scan_loop.c
Small typos
[kiibohd-controller.git] / Scan / MD1 / scan_loop.c
1 /* Copyright (C) 2014 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
22 // ----- Includes -----
23
24 // Compiler Includes
25 #include <Lib/ScanLib.h>
26
27 // Project Includes
28 #include <cli.h>
29 #include <led.h>
30 #include <print.h>
31 #include <matrix_scan.h>
32 #include <macro.h>
33
34 // Local Includes
35 #include "scan_loop.h"
36
37
38
39 // ----- Function Declarations -----
40
41 // CLI Functions
42 void cliFunc_echo( char* args );
43
44
45
46 // ----- Variables -----
47
48 // Scan Module command dictionary
49 CLIDict_Entry( echo,        "Example command, echos the arguments." );
50
51 CLIDict_Def( scanCLIDict, "Scan Module Commands" ) = {
52         CLIDict_Item( echo ),
53         { 0, 0, 0 } // Null entry for dictionary end
54 };
55
56 // Number of scans since the last USB send
57 uint16_t Scan_scanCount = 0;
58
59
60
61 // ----- Functions -----
62
63 // Setup
64 inline void Scan_setup()
65 {
66         // Register Scan CLI dictionary
67         CLI_registerDictionary( scanCLIDict, scanCLIDictName );
68
69         // Setup GPIO pins for matrix scanning
70         Matrix_setup();
71
72         // Reset scan count
73         Scan_scanCount = 0;
74 }
75
76
77 // Main Detection Loop
78 inline uint8_t Scan_loop()
79 {
80         Matrix_scan( Scan_scanCount++ );
81
82         return 0;
83 }
84
85
86 // Signal from Macro Module that all keys have been processed (that it knows about)
87 inline void Scan_finishedWithMacro( uint8_t sentKeys )
88 {
89 }
90
91
92 // Signal from Output Module that all keys have been processed (that it knows about)
93 inline void Scan_finishedWithOutput( uint8_t sentKeys )
94 {
95         // Reset scan loop indicator (resets each key debounce state)
96         // TODO should this occur after USB send or Macro processing?
97         Scan_scanCount = 0;
98 }
99
100
101 // ----- CLI Command Functions -----
102
103 // XXX Just an example command showing how to parse arguments (more complex than generally needed)
104 void cliFunc_echo( char* args )
105 {
106         char* curArgs;
107         char* arg1Ptr;
108         char* arg2Ptr = args;
109
110         // Parse args until a \0 is found
111         while ( 1 )
112         {
113                 print( NL ); // No \r\n by default after the command is entered
114
115                 curArgs = arg2Ptr; // Use the previous 2nd arg pointer to separate the next arg from the list
116                 CLI_argumentIsolation( curArgs, &arg1Ptr, &arg2Ptr );
117
118                 // Stop processing args if no more are found
119                 if ( *arg1Ptr == '\0' )
120                         break;
121
122                 // Print out the arg
123                 dPrint( arg1Ptr );
124         }
125 }
126