]> git.donarmstrong.com Git - kiibohd-controller.git/blob - Scan/MD1/scan_loop.c
Initial MatrixARM implementation
[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
32 // Local Includes
33 #include "scan_loop.h"
34 #include "macro.h"
35
36
37
38 // ----- Variables -----
39
40 // Indicates if the next scan is the first after a USB send
41 uint8_t Scan_firstScan = 1;
42
43 // Number of scans since the last USB send
44 uint16_t Scan_scanCount = 0;
45
46
47
48 // ----- Functions -----
49
50 // Setup
51 inline void Scan_setup()
52 {
53         // Setup GPIO pins for matrix scanning
54         Matrix_setup();
55
56         // First scan is next
57         Scan_firstScan = 1;
58 }
59
60
61 // Main Detection Loop
62 inline uint8_t Scan_loop()
63 {
64         Matrix_scan( Scan_scanCount++, Scan_firstScan );
65
66         // No longer the first scan
67         Scan_firstScan = 0;
68
69         return 0;
70 }
71
72
73 // Signal from Macro Module that all keys have been processed (that it knows about)
74 inline void Scan_finishedWithMacro( uint8_t sentKeys )
75 {
76 }
77
78
79 // Signal from Output Module that all keys have been processed (that it knows about)
80 inline void Scan_finishedWithOutput( uint8_t sentKeys )
81 {
82         // Reset scan loop indicator (resets each key debounce state)
83         // TODO should this occur after USB send or Macro processing?
84         Scan_firstScan = 1;
85         Scan_scanCount = 0;
86 }
87