]> git.donarmstrong.com Git - kiibohd-controller.git/blob - Macro/basic/macro.c
Basic matrix module for the hall effect keypad now working.
[kiibohd-controller.git] / Macro / basic / macro.c
1 /* Copyright (C) 2011 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 // AVR Includes
25
26 // Project Includes
27 #include <led.h>
28 #include <print.h>
29 #include <scan_loop.h>
30 #include <usb_com.h>
31
32 // Keymaps
33 #include <keymap.h>
34 #include <usb_keys.h>
35
36 // Local Includes
37 #include "macro.h"
38
39
40
41 // ----- Functions -----
42
43 // Given a sampling array, and the current number of detected keypress
44 // Add as many keypresses from the sampling array to the USB key send array as possible.
45 inline void keyPressDetection( uint8_t *keys, uint8_t numberOfKeys, uint8_t *modifiers, uint8_t numberOfModifiers, uint8_t *map )
46 {
47         USBKeys_Sent = 0;
48
49         // Parse the detection array starting from 1 (all keys are purposefully mapped from 1 -> total as per typical PCB labels)
50         for ( uint8_t key = 0; key < numberOfKeys + 1; key++ )
51         {
52                 if ( keys[key] & (1 << 7) )
53                 {
54                         // Display the detected scancode
55                         char tmpStr[4];
56                         int8ToStr( key, tmpStr );
57                         dPrintStrs( tmpStr, " " );
58
59                         // Determine if the key is a modifier
60                         uint8_t modFound = 0;
61                         for ( uint8_t mod = 0; mod < numberOfModifiers; mod++ ) {
62                                 // Modifier found
63                                 if ( modifiers[mod] == key ) {
64                                         //USBKeys_Modifiers |= map[key];
65                                         modFound = 1;
66                                         break;
67                                 }
68                         }
69
70                         // Modifier, already done this loop
71                         if ( modFound )
72                                 continue;
73
74                         // Too many keys
75                         if ( USBKeys_Sent >= USBKeys_MaxSize )
76                         {
77                                 info_print("USB Key limit reached");
78                                 errorLED( 1 );
79                                 break;
80                         }
81
82                         // Allow ignoring keys with 0's
83                         if ( map[key] != 0 )
84                                 USBKeys_Array[USBKeys_Sent++] = map[key];
85                 }
86         }
87
88         // Add debug separator if keys sent via USB
89         if ( USBKeys_Sent > 0 )
90                 print("\033[1;32m|\033[0m\n");
91 }
92
93 inline void process_macros(void)
94 {
95         // Debounce Sampling Array to USB Data Array
96         keyPressDetection( KeyIndex_Array, KeyIndex_Size, MODIFIER_MASK, sizeof(MODIFIER_MASK), KEYINDEX_MASK );
97 }
98