]> git.donarmstrong.com Git - kiibohd-controller.git/blob - Output/pjrcUSB/output_com.c
Fixing default ErgoDox layout and adding FlashMode button
[kiibohd-controller.git] / Output / pjrcUSB / output_com.c
1 /* Copyright (C) 2011-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/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 #include "avr/usb_keyboard_serial.h"
36 #elif defined(_mk20dx128_) || defined(_mk20dx128vlf5_) || defined(_mk20dx256_) || defined(_mk20dx256vlh7_)
37 #include "arm/usb_dev.h"
38 #include "arm/usb_keyboard.h"
39 #include "arm/usb_serial.h"
40 #endif
41
42 // Local Includes
43 #include "output_com.h"
44
45
46
47 // ----- Macros -----
48
49 // Used to build a bitmap lookup table from a byte addressable array
50 #define byteLookup( byte ) case (( byte ) * ( 8 )):         bytePosition = byte; byteShift = 0; break; \
51                            case (( byte ) * ( 8 ) + ( 1 )): bytePosition = byte; byteShift = 1; break; \
52                            case (( byte ) * ( 8 ) + ( 2 )): bytePosition = byte; byteShift = 2; break; \
53                            case (( byte ) * ( 8 ) + ( 3 )): bytePosition = byte; byteShift = 3; break; \
54                            case (( byte ) * ( 8 ) + ( 4 )): bytePosition = byte; byteShift = 4; break; \
55                            case (( byte ) * ( 8 ) + ( 5 )): bytePosition = byte; byteShift = 5; break; \
56                            case (( byte ) * ( 8 ) + ( 6 )): bytePosition = byte; byteShift = 6; break; \
57                            case (( byte ) * ( 8 ) + ( 7 )): bytePosition = byte; byteShift = 7; break
58
59
60
61 // ----- Function Declarations -----
62
63 void cliFunc_kbdProtocol( char* args );
64 void cliFunc_outputDebug( char* args );
65 void cliFunc_readLEDs   ( char* args );
66 void cliFunc_sendKeys   ( char* args );
67 void cliFunc_setKeys    ( char* args );
68 void cliFunc_setMod     ( char* args );
69
70
71
72 // ----- Variables -----
73
74 // Output Module command dictionary
75 CLIDict_Entry( kbdProtocol, "Keyboard Protocol Mode: 0 - Boot, 1 - OS/NKRO Mode" );
76 CLIDict_Entry( outputDebug, "Toggle Output Debug mode." );
77 CLIDict_Entry( readLEDs,    "Read LED byte:" NL "\t\t1 NumLck, 2 CapsLck, 4 ScrlLck, 16 Kana, etc." );
78 CLIDict_Entry( sendKeys,    "Send the prepared list of USB codes and modifier byte." );
79 CLIDict_Entry( setKeys,     "Prepare a space separated list of USB codes (decimal). Waits until \033[35msendKeys\033[0m." );
80 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" );
81
82 CLIDict_Def( outputCLIDict, "USB Module Commands" ) = {
83         CLIDict_Item( kbdProtocol ),
84         CLIDict_Item( outputDebug ),
85         CLIDict_Item( readLEDs ),
86         CLIDict_Item( sendKeys ),
87         CLIDict_Item( setKeys ),
88         CLIDict_Item( setMod ),
89         { 0, 0, 0 } // Null entry for dictionary end
90 };
91
92
93 // Which modifier keys are currently pressed
94 // 1=left ctrl,    2=left shift,   4=left alt,    8=left gui
95 // 16=right ctrl, 32=right shift, 64=right alt, 128=right gui
96 uint8_t  USBKeys_Modifiers    = 0;
97 uint8_t  USBKeys_ModifiersCLI = 0; // Separate CLI send buffer
98
99 // Currently pressed keys, max is defined by USB_MAX_KEY_SEND
100 uint8_t  USBKeys_Keys   [USB_NKRO_BITFIELD_SIZE_KEYS];
101 uint8_t  USBKeys_KeysCLI[USB_NKRO_BITFIELD_SIZE_KEYS]; // Separate CLI send buffer
102
103 // System Control and Consumer Control 1KRO containers
104 uint8_t  USBKeys_SysCtrl;
105 uint16_t USBKeys_ConsCtrl;
106
107 // The number of keys sent to the usb in the array
108 uint8_t  USBKeys_Sent    = 0;
109 uint8_t  USBKeys_SentCLI = 0;
110
111 // 1=num lock, 2=caps lock, 4=scroll lock, 8=compose, 16=kana
112 volatile uint8_t  USBKeys_LEDs = 0;
113
114 // Protocol setting from the host.
115 // 0 - Boot Mode
116 // 1 - NKRO Mode (Default, unless set by a BIOS or boot interface)
117 volatile uint8_t  USBKeys_Protocol = 1;
118
119 // Indicate if USB should send update
120 // OS only needs update if there has been a change in state
121 USBKeyChangeState USBKeys_Changed = USBKeyChangeState_None;
122
123 // the idle configuration, how often we send the report to the
124 // host (ms * 4) even when it hasn't changed
125 uint8_t  USBKeys_Idle_Config = 125;
126
127 // count until idle timeout
128 uint8_t  USBKeys_Idle_Count = 0;
129
130 // Indicates whether the Output module is fully functional
131 // 0 - Not fully functional, 1 - Fully functional
132 // 0 is often used to show that a USB cable is not plugged in (but has power)
133 volatile uint8_t  Output_Available = 0;
134
135 // Debug control variable for Output modules
136 // 0 - Debug disabled (default)
137 // 1 - Debug enabled
138 uint8_t  Output_DebugMode = 0;
139
140
141
142 // ----- Capabilities -----
143
144 // Set Boot Keyboard Protocol
145 void Output_kbdProtocolBoot_capability( uint8_t state, uint8_t stateType, uint8_t *args )
146 {
147         // Display capability name
148         if ( stateType == 0xFF && state == 0xFF )
149         {
150                 print("Output_kbdProtocolBoot()");
151                 return;
152         }
153
154         // Only set if necessary
155         if ( USBKeys_Protocol == 0 )
156                 return;
157
158         // TODO Analog inputs
159         // Only set on key press
160         if ( stateType != 0x01 )
161                 return;
162
163         // Flush the key buffers
164         Output_flushBuffers();
165
166         // Set the keyboard protocol to Boot Mode
167         USBKeys_Protocol = 0;
168 }
169
170
171 // Set NKRO Keyboard Protocol
172 void Output_kbdProtocolNKRO_capability( uint8_t state, uint8_t stateType, uint8_t *args )
173 {
174         // Display capability name
175         if ( stateType == 0xFF && state == 0xFF )
176         {
177                 print("Output_kbdProtocolNKRO()");
178                 return;
179         }
180
181         // Only set if necessary
182         if ( USBKeys_Protocol == 1 )
183                 return;
184
185         // TODO Analog inputs
186         // Only set on key press
187         if ( stateType != 0x01 )
188                 return;
189
190         // Flush the key buffers
191         Output_flushBuffers();
192
193         // Set the keyboard protocol to NKRO Mode
194         USBKeys_Protocol = 1;
195 }
196
197
198 // Sends a Consumer Control code to the USB Output buffer
199 void Output_consCtrlSend_capability( uint8_t state, uint8_t stateType, uint8_t *args )
200 {
201         // Display capability name
202         if ( stateType == 0xFF && state == 0xFF )
203         {
204                 print("Output_consCtrlSend(consCode)");
205                 return;
206         }
207
208         // Not implemented in Boot Mode
209         if ( USBKeys_Protocol == 0 )
210         {
211                 warn_print("Consumer Control is not implemented for Boot Mode");
212                 return;
213         }
214
215         // TODO Analog inputs
216         // Only indicate USB has changed if either a press or release has occured
217         if ( state == 0x01 || state == 0x03 )
218                 USBKeys_Changed |= USBKeyChangeState_Consumer;
219
220         // Only send keypresses if press or hold state
221         if ( stateType == 0x00 && state == 0x03 ) // Release state
222         {
223                 USBKeys_ConsCtrl = 0;
224                 return;
225         }
226
227         // Set consumer control code
228         USBKeys_ConsCtrl = *(uint16_t*)(&args[0]);
229 }
230
231
232 // Ignores the given key status update
233 // Used to prevent fall-through, this is the None keyword in KLL
234 void Output_noneSend_capability( uint8_t state, uint8_t stateType, uint8_t *args )
235 {
236         // Display capability name
237         if ( stateType == 0xFF && state == 0xFF )
238         {
239                 print("Output_noneSend()");
240                 return;
241         }
242
243         // Nothing to do, because that's the point :P
244 }
245
246
247 // Sends a System Control code to the USB Output buffer
248 void Output_sysCtrlSend_capability( uint8_t state, uint8_t stateType, uint8_t *args )
249 {
250         // Display capability name
251         if ( stateType == 0xFF && state == 0xFF )
252         {
253                 print("Output_sysCtrlSend(sysCode)");
254                 return;
255         }
256
257         // Not implemented in Boot Mode
258         if ( USBKeys_Protocol == 0 )
259         {
260                 warn_print("System Control is not implemented for Boot Mode");
261                 return;
262         }
263
264         // TODO Analog inputs
265         // Only indicate USB has changed if either a press or release has occured
266         if ( state == 0x01 || state == 0x03 )
267                 USBKeys_Changed |= USBKeyChangeState_System;
268
269         // Only send keypresses if press or hold state
270         if ( stateType == 0x00 && state == 0x03 ) // Release state
271         {
272                 USBKeys_SysCtrl = 0;
273                 return;
274         }
275
276         // Set system control code
277         USBKeys_SysCtrl = args[0];
278 }
279
280
281 // Adds a single USB Code to the USB Output buffer
282 // Argument #1: USB Code
283 void Output_usbCodeSend_capability( uint8_t state, uint8_t stateType, uint8_t *args )
284 {
285         // Display capability name
286         if ( stateType == 0xFF && state == 0xFF )
287         {
288                 print("Output_usbCodeSend(usbCode)");
289                 return;
290         }
291
292         // Depending on which mode the keyboard is in the USB needs Press/Hold/Release events
293         uint8_t keyPress = 0; // Default to key release, only used for NKRO
294         switch ( USBKeys_Protocol )
295         {
296         case 0: // Boot Mode
297                 // TODO Analog inputs
298                 // Only indicate USB has changed if either a press or release has occured
299                 if ( state == 0x01 || state == 0x03 )
300                         USBKeys_Changed = USBKeyChangeState_MainKeys;
301
302                 // Only send keypresses if press or hold state
303                 if ( stateType == 0x00 && state == 0x03 ) // Release state
304                         return;
305                 break;
306         case 1: // NKRO Mode
307                 // Only send press and release events
308                 if ( stateType == 0x00 && state == 0x02 ) // Hold state
309                         return;
310
311                 // Determine if setting or unsetting the bitfield (press == set)
312                 if ( stateType == 0x00 && state == 0x01 ) // Press state
313                         keyPress = 1;
314                 break;
315         }
316
317         // Get the keycode from arguments
318         uint8_t key = args[0];
319
320         // Depending on which mode the keyboard is in, USBKeys_Keys array is used differently
321         // Boot mode - Maximum of 6 byte codes
322         // NKRO mode - Each bit of the 26 byte corresponds to a key
323         //  Bits   0 -  45 (bytes  0 -  5) correspond to USB Codes   4 -  49 (Main)
324         //  Bits  48 - 161 (bytes  6 - 20) correspond to USB Codes  51 - 164 (Secondary)
325         //  Bits 168 - 213 (bytes 21 - 26) correspond to USB Codes 176 - 221 (Tertiary)
326         //  Bits 214 - 216                 unused
327         uint8_t bytePosition = 0;
328         uint8_t byteShift = 0;
329         switch ( USBKeys_Protocol )
330         {
331         case 0: // Boot Mode
332                 // Set the modifier bit if this key is a modifier
333                 if ( (key & 0xE0) == 0xE0 ) // AND with 0xE0 (Left Ctrl, first modifier)
334                 {
335                         USBKeys_Modifiers |= 1 << (key ^ 0xE0); // Left shift 1 by key XOR 0xE0
336                 }
337                 // Normal USB Code
338                 else
339                 {
340                         // USB Key limit reached
341                         if ( USBKeys_Sent >= USB_BOOT_MAX_KEYS )
342                         {
343                                 warn_print("USB Key limit reached");
344                                 return;
345                         }
346
347                         // Make sure key is within the USB HID range
348                         if ( key <= 104 )
349                         {
350                                 USBKeys_Keys[USBKeys_Sent++] = key;
351                         }
352                         // Invalid key
353                         else
354                         {
355                                 warn_msg("USB Code above 104/0x68 in Boot Mode: ");
356                                 printHex( key );
357                                 print( NL );
358                         }
359                 }
360                 break;
361
362         case 1: // NKRO Mode
363                 // Set the modifier bit if this key is a modifier
364                 if ( (key & 0xE0) == 0xE0 ) // AND with 0xE0 (Left Ctrl, first modifier)
365                 {
366                         if ( keyPress )
367                         {
368                                 USBKeys_Modifiers |= 1 << (key ^ 0xE0); // Left shift 1 by key XOR 0xE0
369                         }
370                         else // Release
371                         {
372                                 USBKeys_Modifiers &= ~(1 << (key ^ 0xE0)); // Left shift 1 by key XOR 0xE0
373                         }
374
375                         USBKeys_Changed |= USBKeyChangeState_Modifiers;
376                         break;
377                 }
378                 // First 6 bytes
379                 else if ( key >= 4 && key <= 49 )
380                 {
381                         // Lookup (otherwise division or multiple checks are needed to do alignment)
382                         // Starting at 0th position, each byte has 8 bits, starting at 4th bit
383                         uint8_t keyPos = key + (0 * 8 - 4); // Starting position in array, Ignoring 4 keys
384                         switch ( keyPos )
385                         {
386                                 byteLookup( 0 );
387                                 byteLookup( 1 );
388                                 byteLookup( 2 );
389                                 byteLookup( 3 );
390                                 byteLookup( 4 );
391                                 byteLookup( 5 );
392                         }
393
394                         USBKeys_Changed |= USBKeyChangeState_MainKeys;
395                 }
396                 // Next 14 bytes
397                 else if ( key >= 51 && key <= 155 )
398                 {
399                         // Lookup (otherwise division or multiple checks are needed to do alignment)
400                         // Starting at 6th byte position, each byte has 8 bits, starting at 51st bit
401                         uint8_t keyPos = key + (6 * 8 - 51); // Starting position in array
402                         switch ( keyPos )
403                         {
404                                 byteLookup( 6 );
405                                 byteLookup( 7 );
406                                 byteLookup( 8 );
407                                 byteLookup( 9 );
408                                 byteLookup( 10 );
409                                 byteLookup( 11 );
410                                 byteLookup( 12 );
411                                 byteLookup( 13 );
412                                 byteLookup( 14 );
413                                 byteLookup( 15 );
414                                 byteLookup( 16 );
415                                 byteLookup( 17 );
416                                 byteLookup( 18 );
417                                 byteLookup( 19 );
418                         }
419
420                         USBKeys_Changed |= USBKeyChangeState_SecondaryKeys;
421                 }
422                 // Next byte
423                 else if ( key >= 157 && key <= 164 )
424                 {
425                         // Lookup (otherwise division or multiple checks are needed to do alignment)
426                         uint8_t keyPos = key + (20 * 8 - 157); // Starting position in array, Ignoring 6 keys
427                         switch ( keyPos )
428                         {
429                                 byteLookup( 20 );
430                         }
431
432                         USBKeys_Changed |= USBKeyChangeState_TertiaryKeys;
433                 }
434                 // Last 6 bytes
435                 else if ( key >= 176 && key <= 221 )
436                 {
437                         // Lookup (otherwise division or multiple checks are needed to do alignment)
438                         uint8_t keyPos = key + (21 * 8 - 176); // Starting position in array
439                         switch ( keyPos )
440                         {
441                                 byteLookup( 21 );
442                                 byteLookup( 22 );
443                                 byteLookup( 23 );
444                                 byteLookup( 24 );
445                                 byteLookup( 25 );
446                                 byteLookup( 26 );
447                         }
448
449                         USBKeys_Changed |= USBKeyChangeState_QuartiaryKeys;
450                 }
451                 // Received 0x00
452                 // This is a special USB Code that internally indicates a "break"
453                 // It is used to send "nothing" in order to break up sequences of USB Codes
454                 else if ( key == 0x00 )
455                 {
456                         USBKeys_Changed |= USBKeyChangeState_MainKeys;
457
458                         // Also flush out buffers just in case
459                         Output_flushBuffers();
460                         break;
461                 }
462                 // Invalid key
463                 else
464                 {
465                         warn_msg("USB Code not within 4-49 (0x4-0x31), 51-155 (0x33-0x9B), 157-164 (0x9D-0xA4), 176-221 (0xB0-0xDD) or 224-231 (0xE0-0xE7) NKRO Mode: ");
466                         printHex( key );
467                         print( NL );
468                         break;
469                 }
470
471                 // Set/Unset
472                 if ( keyPress )
473                 {
474                         USBKeys_Keys[bytePosition] |= (1 << byteShift);
475                         USBKeys_Sent++;
476                 }
477                 else // Release
478                 {
479                         USBKeys_Keys[bytePosition] &= ~(1 << byteShift);
480                         USBKeys_Sent++;
481                 }
482
483                 break;
484         }
485 }
486
487 void Output_flashMode_capability( uint8_t state, uint8_t stateType, uint8_t *args )
488 {
489         // Display capability name
490         if ( stateType == 0xFF && state == 0xFF )
491         {
492                 print("Output_flashMode(usbCode)");
493                 return;
494         }
495
496         // Start flash mode
497         Output_firmwareReload();
498 }
499
500
501
502 // ----- Functions -----
503
504 // Flush Key buffers
505 void Output_flushBuffers()
506 {
507         // Zero out USBKeys_Keys array
508         for ( uint8_t c = 0; c < USB_NKRO_BITFIELD_SIZE_KEYS; c++ )
509                 USBKeys_Keys[ c ] = 0;
510
511         // Zero out other key buffers
512         USBKeys_ConsCtrl = 0;
513         USBKeys_Modifiers = 0;
514         USBKeys_SysCtrl = 0;
515 }
516
517
518 // USB Module Setup
519 inline void Output_setup()
520 {
521         // Initialize the USB
522         // If a USB connection does not exist, just ignore it
523         // All usb related functions will non-fatally fail if called
524         // If the USB initialization is delayed, then functionality will just be delayed
525         usb_init();
526
527         // Register USB Output CLI dictionary
528         CLI_registerDictionary( outputCLIDict, outputCLIDictName );
529
530         // Flush key buffers
531         Output_flushBuffers();
532 }
533
534
535 // USB Data Send
536 inline void Output_send()
537 {
538         // Boot Mode Only, unset stale keys
539         if ( USBKeys_Protocol == 0 )
540                 for ( uint8_t c = USBKeys_Sent; c < USB_BOOT_MAX_KEYS; c++ )
541                         USBKeys_Keys[c] = 0;
542
543         // Send keypresses while there are pending changes
544         while ( USBKeys_Changed )
545                 usb_keyboard_send();
546
547         // Clear keys sent
548         USBKeys_Sent = 0;
549
550         // Signal Scan Module we are finished
551         switch ( USBKeys_Protocol )
552         {
553         case 0: // Boot Mode
554                 // Clear modifiers only in boot mode
555                 USBKeys_Modifiers = 0;
556                 Scan_finishedWithOutput( USBKeys_Sent <= USB_BOOT_MAX_KEYS ? USBKeys_Sent : USB_BOOT_MAX_KEYS );
557                 break;
558         case 1: // NKRO Mode
559                 Scan_finishedWithOutput( USBKeys_Sent );
560                 break;
561         }
562 }
563
564
565 // Sets the device into firmware reload mode
566 inline void Output_firmwareReload()
567 {
568         usb_device_reload();
569 }
570
571
572 // USB Input buffer available
573 inline unsigned int Output_availablechar()
574 {
575         return usb_serial_available();
576 }
577
578
579 // USB Get Character from input buffer
580 inline int Output_getchar()
581 {
582         // XXX Make sure to check output_availablechar() first! Information is lost with the cast (error codes) (AVR)
583         return (int)usb_serial_getchar();
584 }
585
586
587 // USB Send Character to output buffer
588 inline int Output_putchar( char c )
589 {
590         return usb_serial_putchar( c );
591 }
592
593
594 // USB Send String to output buffer, null terminated
595 inline int Output_putstr( char* str )
596 {
597 #if defined(_at90usb162_) || defined(_atmega32u4_) || defined(_at90usb646_) || defined(_at90usb1286_) // AVR
598         uint16_t count = 0;
599 #elif defined(_mk20dx128_) || defined(_mk20dx128vlf5_) || defined(_mk20dx256_) || defined(_mk20dx256vlh7_) // ARM
600         uint32_t count = 0;
601 #endif
602         // Count characters until NULL character, then send the amount counted
603         while ( str[count] != '\0' )
604                 count++;
605
606         return usb_serial_write( str, count );
607 }
608
609
610 // Soft Chip Reset
611 inline void Output_softReset()
612 {
613         usb_device_software_reset();
614 }
615
616
617 // ----- CLI Command Functions -----
618
619 void cliFunc_kbdProtocol( char* args )
620 {
621         print( NL );
622         info_msg("Keyboard Protocol: ");
623         printInt8( USBKeys_Protocol );
624 }
625
626
627 void cliFunc_outputDebug( char* args )
628 {
629         // Parse number from argument
630         //  NOTE: Only first argument is used
631         char* arg1Ptr;
632         char* arg2Ptr;
633         CLI_argumentIsolation( args, &arg1Ptr, &arg2Ptr );
634
635         // Default to 1 if no argument is given
636         Output_DebugMode = 1;
637
638         if ( arg1Ptr[0] != '\0' )
639         {
640                 Output_DebugMode = (uint16_t)numToInt( arg1Ptr );
641         }
642 }
643
644
645 void cliFunc_readLEDs( char* args )
646 {
647         print( NL );
648         info_msg("LED State: ");
649         printInt8( USBKeys_LEDs );
650 }
651
652
653 void cliFunc_sendKeys( char* args )
654 {
655         // Copy USBKeys_KeysCLI to USBKeys_Keys
656         for ( uint8_t key = 0; key < USBKeys_SentCLI; ++key )
657         {
658                 // TODO
659                 //USBKeys_Keys[key] = USBKeys_KeysCLI[key];
660         }
661         USBKeys_Sent = USBKeys_SentCLI;
662
663         // Set modifier byte
664         USBKeys_Modifiers = USBKeys_ModifiersCLI;
665 }
666
667
668 void cliFunc_setKeys( char* args )
669 {
670         char* curArgs;
671         char* arg1Ptr;
672         char* arg2Ptr = args;
673
674         // Parse up to USBKeys_MaxSize args (whichever is least)
675         for ( USBKeys_SentCLI = 0; USBKeys_SentCLI < USB_BOOT_MAX_KEYS; ++USBKeys_SentCLI )
676         {
677                 curArgs = arg2Ptr;
678                 CLI_argumentIsolation( curArgs, &arg1Ptr, &arg2Ptr );
679
680                 // Stop processing args if no more are found
681                 if ( *arg1Ptr == '\0' )
682                         break;
683
684                 // Add the USB code to be sent
685                 // TODO
686                 //USBKeys_KeysCLI[USBKeys_SentCLI] = numToInt( arg1Ptr );
687         }
688 }
689
690
691 void cliFunc_setMod( char* args )
692 {
693         // Parse number from argument
694         //  NOTE: Only first argument is used
695         char* arg1Ptr;
696         char* arg2Ptr;
697         CLI_argumentIsolation( args, &arg1Ptr, &arg2Ptr );
698
699         USBKeys_ModifiersCLI = numToInt( arg1Ptr );
700 }
701