]> git.donarmstrong.com Git - kiibohd-controller.git/blob - Macro/basic/macro.c
Tandy 1000 Converter, basicly works, except for packet mismatches
[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 void keyPressDetection( uint8_t *keys, uint8_t numberOfKeys, uint8_t *modifiers, uint8_t numberOfModifiers, uint8_t *map )
46 //void keyPressDetection( uint8_t *keys, uint8_t numberOfKeys, uint8_t *modifiers, uint8_t numberOfModifiers, uint8_t *map )
47 {
48         USBKeys_Sent = 0;
49
50         for ( uint8_t key = 1; key < numberOfKeys + 1; key++ )
51         //for ( uint8_t key = 0; key < numberOfKeys + 1; key++ )
52         {
53                 //if ( keys[key] & (1 << 7) )
54                 if ( keys[key] )
55                 {
56                         uint8_t modFound = 0;
57
58                         // Determine if the key is a modifier
59                         for ( uint8_t mod = 0; mod < numberOfModifiers; mod++ ) {
60                                 // Modifier found
61                                 if ( modifiers[mod] == key ) {
62                                         USBKeys_Modifiers |= map[key];
63                                         modFound = 1;
64                                         break;
65                                 }
66                         }
67
68                         // Modifier, already done this loop
69                         if ( modFound )
70                                 continue;
71
72                         // Too many keys
73                         if ( USBKeys_Sent >= USBKeys_MaxSize )
74                         {
75                                 info_print("USB Key limit reached");
76                                 errorLED( 1 );
77                                 break;
78                         }
79
80                         // Allow ignoring keys with 0's
81                         if ( map[key] != 0 )
82                                 USBKeys_Array[USBKeys_Sent++] = map[key];
83
84                         /*
85                         char tmpStr[3];
86                         hexToStr_op( USBKeys_Array[0], tmpStr, 2 );
87                         warn_dPrint("Found key: 0x", tmpStr );
88                         */
89                 }
90         }
91 }
92
93 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