comparison Scan/KType/scan_loop.c @ 378:890a18d98c47

Initial code for KType TKL
author Jacob Alexander <haata@kiibohd.com>
date Tue, 29 Sep 2015 19:29:27 -0700
parents
children 23a1868b4ac2
comparison
equal deleted inserted replaced
377:dbbdedccc275 378:890a18d98c47
1 /* Copyright (C) 2014-2015 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 <led.h>
31 #include <led_scan.h>
32 #include <print.h>
33 #include <matrix_scan.h>
34 #include <macro.h>
35 #include <output_com.h>
36
37 // Local Includes
38 #include "scan_loop.h"
39
40
41
42 // ----- Function Declarations -----
43
44 // ----- Variables -----
45
46 // Number of scans since the last USB send
47 uint16_t Scan_scanCount = 0;
48
49
50
51 // ----- Functions -----
52
53 // Setup
54 inline void Scan_setup()
55 {
56 // Setup UART Connect, if Output_Available, this is the master node
57 Connect_setup( Output_Available );
58
59 // Setup GPIO pins for matrix scanning
60 Matrix_setup();
61
62 // Setup ISSI chip to control the leds
63 LED_setup();
64
65 // Reset scan count
66 Scan_scanCount = 0;
67 }
68
69
70 // Main Detection Loop
71 inline uint8_t Scan_loop()
72 {
73 // Scan Matrix
74 Matrix_scan( Scan_scanCount++ );
75
76 // Process any interconnect commands
77 Connect_scan();
78
79 // Process any LED events
80 LED_scan();
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