]> git.donarmstrong.com Git - kiibohd-controller.git/blob - Scan/MDErgo1/scan_loop.c
Adding dynamic USB power support
[kiibohd-controller.git] / Scan / MDErgo1 / 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 <connect_scan.h>
30 #include <lcd_scan.h>
31 #include <led.h>
32 #include <led_scan.h>
33 #include <print.h>
34 #include <matrix_scan.h>
35 #include <macro.h>
36 #include <output_com.h>
37
38 // Local Includes
39 #include "scan_loop.h"
40
41
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 UART Connect, if Output_Available, this is the master node
56         Connect_setup( Output_Available );
57
58         // Setup GPIO pins for matrix scanning
59         Matrix_setup();
60
61         // Setup ISSI chip to control the leds
62         LED_setup();
63
64         // Setup the ST/NHD lcd display
65         LCD_setup();
66
67         // Reset scan count
68         Scan_scanCount = 0;
69 }
70
71
72 // Main Detection Loop
73 inline uint8_t Scan_loop()
74 {
75         // Scan Matrix
76         Matrix_scan( Scan_scanCount++ );
77
78         // Process any interconnect commands
79         Connect_scan();
80
81         // Process any LED events
82         LED_scan();
83
84         // Process any LCD events
85         LCD_scan();
86
87         return 0;
88 }
89
90
91 // Signal from Macro Module that all keys have been processed (that it knows about)
92 inline void Scan_finishedWithMacro( uint8_t sentKeys )
93 {
94 }
95
96
97 // Signal from Output Module that all keys have been processed (that it knows about)
98 inline void Scan_finishedWithOutput( uint8_t sentKeys )
99 {
100         // Reset scan loop indicator (resets each key debounce state)
101         // TODO should this occur after USB send or Macro processing?
102         Scan_scanCount = 0;
103 }
104
105
106 // Signal from the Output Module that the available current has changed
107 // current - mA
108 void Scan_currentChange( unsigned int current )
109 {
110         // Indicate to all submodules current change
111         Connect_currentChange( current );
112         Matrix_currentChange( current );
113         LED_currentChange( current );
114         LCD_currentChange( current );
115 }
116