]> git.donarmstrong.com Git - kiibohd-controller.git/blob - Output/uartOut/output_com.c
HUGE AVR RAM optimization (~28%).
[kiibohd-controller.git] / Output / uartOut / output_com.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/OutputLib.h>
26
27 // Project Includes
28 #include <cli.h>
29 #include <led.h>
30 #include <print.h>
31 #include <scan_loop.h>
32
33 // USB Includes
34 #if defined(_at90usb162_) || defined(_atmega32u4_) || defined(_at90usb646_) || defined(_at90usb1286_)
35 #elif defined(_mk20dx128_) || defined(_mk20dx128vlf5_) || defined(_mk20dx256_)
36 #include "arm/uart_serial.h"
37 #endif
38
39 // Local Includes
40 #include "output_com.h"
41
42
43
44 // ----- Function Declarations -----
45
46 void cliFunc_kbdProtocol( char* args );
47 void cliFunc_readLEDs   ( char* args );
48 void cliFunc_sendKeys   ( char* args );
49 void cliFunc_setKeys    ( char* args );
50 void cliFunc_setMod     ( char* args );
51
52
53
54 // ----- Variables -----
55
56 // Output Module command dictionary
57 CLIDict_Entry( kbdProtocol, "Keyboard Protocol Mode: 0 - Boot, 1 - OS/NKRO Mode" );
58 CLIDict_Entry( readLEDs,    "Read LED byte:" NL "\t\t1 NumLck, 2 CapsLck, 4 ScrlLck, 16 Kana, etc." );
59 CLIDict_Entry( sendKeys,    "Send the prepared list of USB codes and modifier byte." );
60 CLIDict_Entry( setKeys,     "Prepare a space separated list of USB codes (decimal). Waits until \033[35msendKeys\033[0m." );
61 CLIDict_Entry( setMod,      "Set the modfier byte:" NL "\t\t1 LCtrl, 2 LShft, 4 LAlt, 8 LGUI, 16 RCtrl, 32 RShft, 64 RAlt, 128 RGUI" );
62
63 CLIDict_Def( outputCLIDict, "USB Module Commands" ) = {
64         CLIDict_Item( kbdProtocol ),
65         CLIDict_Item( readLEDs ),
66         CLIDict_Item( sendKeys ),
67         CLIDict_Item( setKeys ),
68         CLIDict_Item( setMod ),
69         { 0, 0, 0 } // Null entry for dictionary end
70 };
71
72
73 // Which modifier keys are currently pressed
74 // 1=left ctrl,    2=left shift,   4=left alt,    8=left gui
75 // 16=right ctrl, 32=right shift, 64=right alt, 128=right gui
76          uint8_t  USBKeys_Modifiers    = 0;
77          uint8_t  USBKeys_ModifiersCLI = 0; // Separate CLI send buffer
78
79 // Currently pressed keys, max is defined by USB_MAX_KEY_SEND
80          uint8_t  USBKeys_Keys   [USB_NKRO_BITFIELD_SIZE_KEYS];
81          uint8_t  USBKeys_KeysCLI[USB_NKRO_BITFIELD_SIZE_KEYS]; // Separate CLI send buffer
82
83 // System Control and Consumer Control 1KRO containers
84          uint8_t  USBKeys_SysCtrl;
85          uint16_t USBKeys_ConsCtrl;
86
87 // The number of keys sent to the usb in the array
88          uint8_t  USBKeys_Sent    = 0;
89          uint8_t  USBKeys_SentCLI = 0;
90
91 // 1=num lock, 2=caps lock, 4=scroll lock, 8=compose, 16=kana
92 volatile uint8_t  USBKeys_LEDs = 0;
93
94 // Protocol setting from the host.
95 // 0 - Boot Mode
96 // 1 - NKRO Mode (Default, unless set by a BIOS or boot interface)
97 volatile uint8_t  USBKeys_Protocol = 0;
98
99 // Indicate if USB should send update
100 // OS only needs update if there has been a change in state
101 USBKeyChangeState USBKeys_Changed = USBKeyChangeState_None;
102
103 // the idle configuration, how often we send the report to the
104 // host (ms * 4) even when it hasn't changed
105          uint8_t  USBKeys_Idle_Config = 125;
106
107 // count until idle timeout
108          uint8_t  USBKeys_Idle_Count = 0;
109
110
111
112 // ----- Capabilities -----
113
114 // Adds a single USB Code to the USB Output buffer
115 // Argument #1: USB Code
116 void Output_usbCodeSend_capability( uint8_t state, uint8_t stateType, uint8_t *args )
117 {
118         // Display capability name
119         if ( stateType == 0xFF && state == 0xFF )
120         {
121                 print("Output_usbCodeSend(usbCode)");
122                 print("Not used in uartOut...");
123                 return;
124         }
125 }
126
127
128
129 // ----- Functions -----
130
131 // USB Module Setup
132 inline void Output_setup()
133 {
134         // Setup UART
135         uart_serial_setup();
136
137         // Register USB Output CLI dictionary
138         CLI_registerDictionary( outputCLIDict, outputCLIDictName );
139 }
140
141
142 // USB Data Send
143 inline void Output_send(void)
144 {
145         // TODO
146 }
147
148
149 // Sets the device into firmware reload mode
150 inline void Output_firmwareReload()
151 {
152         uart_device_reload();
153 }
154
155
156 // USB Input buffer available
157 inline unsigned int Output_availablechar()
158 {
159         return uart_serial_available();
160 }
161
162
163 // USB Get Character from input buffer
164 inline int Output_getchar()
165 {
166         // XXX Make sure to check output_availablechar() first! Information is lost with the cast (error codes) (AVR)
167         return (int)uart_serial_getchar();
168 }
169
170
171 // USB Send Character to output buffer
172 inline int Output_putchar( char c )
173 {
174         return uart_serial_putchar( c );
175 }
176
177
178 // USB Send String to output buffer, null terminated
179 inline int Output_putstr( char* str )
180 {
181 #if defined(_at90usb162_) || defined(_atmega32u4_) || defined(_at90usb646_) || defined(_at90usb1286_) // AVR
182         uint16_t count = 0;
183 #elif defined(_mk20dx128_) || defined(_mk20dx128vlf5_) || defined(_mk20dx256_) // ARM
184         uint32_t count = 0;
185 #endif
186         // Count characters until NULL character, then send the amount counted
187         while ( str[count] != '\0' )
188                 count++;
189
190         return uart_serial_write( str, count );
191 }
192
193
194 // Soft Chip Reset
195 inline void Output_softReset()
196 {
197 #if defined(_at90usb162_) || defined(_atmega32u4_) || defined(_at90usb646_) || defined(_at90usb1286_) // AVR
198 #elif defined(_mk20dx128_) || defined(_mk20dx128vlf5_) || defined(_mk20dx256_) // ARM
199         SOFTWARE_RESET();
200 #endif
201 }
202
203
204 // ----- CLI Command Functions -----
205
206 void cliFunc_kbdProtocol( char* args )
207 {
208         print( NL );
209         info_msg("Keyboard Protocol: ");
210         printInt8( USBKeys_Protocol );
211 }
212
213
214 void cliFunc_readLEDs( char* args )
215 {
216         print( NL );
217         info_msg("LED State: ");
218         printInt8( USBKeys_LEDs );
219 }
220
221
222 void cliFunc_sendKeys( char* args )
223 {
224         // Copy USBKeys_KeysCLI to USBKeys_Keys
225         for ( uint8_t key = 0; key < USBKeys_SentCLI; ++key )
226         {
227                 // TODO
228                 //USBKeys_Keys[key] = USBKeys_KeysCLI[key];
229         }
230         USBKeys_Sent = USBKeys_SentCLI;
231
232         // Set modifier byte
233         USBKeys_Modifiers = USBKeys_ModifiersCLI;
234 }
235
236
237 void cliFunc_setKeys( char* args )
238 {
239         char* curArgs;
240         char* arg1Ptr;
241         char* arg2Ptr = args;
242
243         // Parse up to USBKeys_MaxSize args (whichever is least)
244         for ( USBKeys_SentCLI = 0; USBKeys_SentCLI < USB_BOOT_MAX_KEYS; ++USBKeys_SentCLI )
245         {
246                 curArgs = arg2Ptr;
247                 CLI_argumentIsolation( curArgs, &arg1Ptr, &arg2Ptr );
248
249                 // Stop processing args if no more are found
250                 if ( *arg1Ptr == '\0' )
251                         break;
252
253                 // Add the USB code to be sent
254                 // TODO
255                 //USBKeys_KeysCLI[USBKeys_SentCLI] = numToInt( arg1Ptr );
256         }
257 }
258
259
260 void cliFunc_setMod( char* args )
261 {
262         // Parse number from argument
263         //  NOTE: Only first argument is used
264         char* arg1Ptr;
265         char* arg2Ptr;
266         CLI_argumentIsolation( args, &arg1Ptr, &arg2Ptr );
267
268         USBKeys_ModifiersCLI = numToInt( arg1Ptr );
269 }
270