]> git.donarmstrong.com Git - kiibohd-controller.git/blob - Scan/MD1_1/scan_loop.c
74218a0eed7751e0f9a8476533d0e80c01457515
[kiibohd-controller.git] / Scan / MD1_1 / scan_loop.c
1 /* Copyright (C) 2014,2016 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 <led_scan.h>
31 #include <print.h>
32 #include <matrix_scan.h>
33 #include <macro.h>
34 #include <output_com.h>
35
36 // Local Includes
37 #include "scan_loop.h"
38
39
40
41 // ----- Function Declarations -----
42
43 // ----- Variables -----
44
45 // Number of scans since the last USB send
46 uint16_t Scan_scanCount = 0;
47
48
49
50 // ----- Functions -----
51
52 // Setup
53 inline void Scan_setup()
54 {
55         // Setup GPIO pins for matrix scanning
56         Matrix_setup();
57
58         // Setup ISSI chip to control the leds
59         LED_setup();
60
61         // Reset scan count
62         Scan_scanCount = 0;
63 }
64
65
66 // Main Detection Loop
67 inline uint8_t Scan_loop()
68 {
69         Matrix_scan( Scan_scanCount++ );
70
71         // Process any LED events
72         LED_scan();
73
74         return 0;
75 }
76
77
78 // Signal from Macro Module that all keys have been processed (that it knows about)
79 inline void Scan_finishedWithMacro( uint8_t sentKeys )
80 {
81 }
82
83
84 // Signal from Output Module that all keys have been processed (that it knows about)
85 inline void Scan_finishedWithOutput( uint8_t sentKeys )
86 {
87         // Reset scan loop indicator (resets each key debounce state)
88         // TODO should this occur after USB send or Macro processing?
89         Scan_scanCount = 0;
90 }
91
92
93
94 // ----- Capabilities -----
95
96 // Custom capability examples
97 // Refer to kll.h in Macros/PartialMap for state and stateType information
98 void CustomAction_action1_capability( uint8_t state, uint8_t stateType, uint8_t *args )
99 {
100         // Display capability name
101         // XXX This is required for debug cli to give you a list of capabilities
102         if ( stateType == 0xFF && state == 0xFF )
103         {
104                 print("CustomAction_action1_capability()");
105                 return;
106         }
107
108         // Prints Action1 info message to the debug cli
109         info_print("Action1");
110 }
111
112 uint8_t CustomAction_blockHold_storage = 0;
113 void CustomAction_blockHold_capability( uint8_t state, uint8_t stateType, uint8_t *args )
114 {
115         // Display capability name
116         if ( stateType == 0xFF && state == 0xFF )
117         {
118                 print("CustomAction_blockHold_capability(usbCode)");
119                 return;
120         }
121
122         // Retrieve 8-bit argument
123         uint8_t key = args[0];
124
125         // We only care about normal keys
126         if ( stateType == 0x00 )
127         {
128                 // Block given key if we're in the "Press" or "Hold" state
129                 if ( ( state == 0x01 || state == 0x02 )
130                         && CustomAction_blockHold_storage == 0 )
131                 {
132                         CustomAction_blockHold_storage = key;
133                         info_msg("Blocking Key: ");
134                         printHex( key );
135                         print( NL );
136                 }
137                 // Release if in the "Off" or "Release" state and we're blocking
138                 else if ( ( state == 0x00 || state == 0x03 )
139                         && key == CustomAction_blockHold_storage )
140                 {
141                         info_msg("Unblocking Key: ");
142                         printHex( CustomAction_blockHold_storage );
143                         print( NL );
144                         CustomAction_blockHold_storage = 0;
145                 }
146         }
147 }
148
149 void CustomAction_blockKey_capability( uint8_t state, uint8_t stateType, uint8_t *args )
150 {
151         // Display capability name
152         if ( stateType == 0xFF && state == 0xFF )
153         {
154                 print("CustomAction_blockKey_capability(usbCode)");
155                 return;
156         }
157
158         // Retrieve 8-bit argument
159         uint8_t key = args[0];
160
161         // If key is not blocked, process
162         if ( key != CustomAction_blockHold_storage )
163         {
164                 extern void Output_usbCodeSend_capability( uint8_t state, uint8_t stateType, uint8_t *args );
165                 Output_usbCodeSend_capability( state, stateType, &key );
166         }
167 }
168