]> git.donarmstrong.com Git - kiibohd-controller.git/blob - Scan/MD1.1/scan_loop.c
Adding dynamic USB power support
[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 // Signal from the Output Module that the available current has changed
94 // current - mA
95 void Scan_currentChange( unsigned int current )
96 {
97         // Indicate to all submodules current change
98         Matrix_currentChange( current );
99         LED_currentChange( current );
100 }
101
102
103
104 // ----- Capabilities -----
105
106 // Custom capability examples
107 // Refer to kll.h in Macros/PartialMap for state and stateType information
108 void CustomAction_action1_capability( uint8_t state, uint8_t stateType, uint8_t *args )
109 {
110         // Display capability name
111         // XXX This is required for debug cli to give you a list of capabilities
112         if ( stateType == 0xFF && state == 0xFF )
113         {
114                 print("CustomAction_action1_capability()");
115                 return;
116         }
117
118         // Prints Action1 info message to the debug cli
119         info_print("Action1");
120 }
121
122 uint8_t CustomAction_blockHold_storage = 0;
123 void CustomAction_blockHold_capability( uint8_t state, uint8_t stateType, uint8_t *args )
124 {
125         // Display capability name
126         if ( stateType == 0xFF && state == 0xFF )
127         {
128                 print("CustomAction_blockHold_capability(usbCode)");
129                 return;
130         }
131
132         // Retrieve 8-bit argument
133         uint8_t key = args[0];
134
135         // We only care about normal keys
136         if ( stateType == 0x00 )
137         {
138                 // Block given key if we're in the "Press" or "Hold" state
139                 if ( ( state == 0x01 || state == 0x02 )
140                         && CustomAction_blockHold_storage == 0 )
141                 {
142                         CustomAction_blockHold_storage = key;
143                         info_msg("Blocking Key: ");
144                         printHex( key );
145                         print( NL );
146                 }
147                 // Release if in the "Off" or "Release" state and we're blocking
148                 else if ( ( state == 0x00 || state == 0x03 )
149                         && key == CustomAction_blockHold_storage )
150                 {
151                         info_msg("Unblocking Key: ");
152                         printHex( CustomAction_blockHold_storage );
153                         print( NL );
154                         CustomAction_blockHold_storage = 0;
155                 }
156         }
157 }
158
159 void CustomAction_blockKey_capability( uint8_t state, uint8_t stateType, uint8_t *args )
160 {
161         // Display capability name
162         if ( stateType == 0xFF && state == 0xFF )
163         {
164                 print("CustomAction_blockKey_capability(usbCode)");
165                 return;
166         }
167
168         // Retrieve 8-bit argument
169         uint8_t key = args[0];
170
171         // If key is not blocked, process
172         if ( key != CustomAction_blockHold_storage )
173         {
174                 extern void Output_usbCodeSend_capability( uint8_t state, uint8_t stateType, uint8_t *args );
175                 Output_usbCodeSend_capability( state, stateType, &key );
176         }
177 }
178