]> git.donarmstrong.com Git - kiibohd-controller.git/blob - Output/pjrcUSB/output_com.c
Merge pull request #14 from aclowes/master
[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          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                 return;
223
224         // Set consumer control code
225         USBKeys_ConsCtrl = *(uint16_t*)(&args[0]);
226 }
227
228
229 // Sends a System Control code to the USB Output buffer
230 void Output_sysCtrlSend_capability( uint8_t state, uint8_t stateType, uint8_t *args )
231 {
232         // Display capability name
233         if ( stateType == 0xFF && state == 0xFF )
234         {
235                 print("Output_sysCtrlSend(sysCode)");
236                 return;
237         }
238
239         // Not implemented in Boot Mode
240         if ( USBKeys_Protocol == 0 )
241         {
242                 warn_print("System Control is not implemented for Boot Mode");
243                 return;
244         }
245
246         // TODO Analog inputs
247         // Only indicate USB has changed if either a press or release has occured
248         if ( state == 0x01 || state == 0x03 )
249                 USBKeys_Changed |= USBKeyChangeState_System;
250
251         // Only send keypresses if press or hold state
252         if ( stateType == 0x00 && state == 0x03 ) // Release state
253                 return;
254
255         // Set system control code
256         USBKeys_SysCtrl = args[0];
257 }
258
259
260 // Adds a single USB Code to the USB Output buffer
261 // Argument #1: USB Code
262 void Output_usbCodeSend_capability( uint8_t state, uint8_t stateType, uint8_t *args )
263 {
264         // Display capability name
265         if ( stateType == 0xFF && state == 0xFF )
266         {
267                 print("Output_usbCodeSend(usbCode)");
268                 return;
269         }
270
271         // Depending on which mode the keyboard is in the USB needs Press/Hold/Release events
272         uint8_t keyPress = 0; // Default to key release, only used for NKRO
273         switch ( USBKeys_Protocol )
274         {
275         case 0: // Boot Mode
276                 // TODO Analog inputs
277                 // Only indicate USB has changed if either a press or release has occured
278                 if ( state == 0x01 || state == 0x03 )
279                         USBKeys_Changed = USBKeyChangeState_MainKeys;
280
281                 // Only send keypresses if press or hold state
282                 if ( stateType == 0x00 && state == 0x03 ) // Release state
283                         return;
284                 break;
285         case 1: // NKRO Mode
286                 // Only send press and release events
287                 if ( stateType == 0x00 && state == 0x02 ) // Hold state
288                         return;
289
290                 // Determine if setting or unsetting the bitfield (press == set)
291                 if ( stateType == 0x00 && state == 0x01 ) // Press state
292                         keyPress = 1;
293                 break;
294         }
295
296         // Get the keycode from arguments
297         uint8_t key = args[0];
298
299         // Depending on which mode the keyboard is in, USBKeys_Keys array is used differently
300         // Boot mode - Maximum of 6 byte codes
301         // NKRO mode - Each bit of the 26 byte corresponds to a key
302         //  Bits   0 -  45 (bytes  0 -  5) correspond to USB Codes   4 -  49 (Main)
303         //  Bits  48 - 161 (bytes  6 - 20) correspond to USB Codes  51 - 164 (Secondary)
304         //  Bits 168 - 213 (bytes 21 - 26) correspond to USB Codes 176 - 221 (Tertiary)
305         //  Bits 214 - 216                 unused
306         uint8_t bytePosition = 0;
307         uint8_t byteShift = 0;
308         switch ( USBKeys_Protocol )
309         {
310         case 0: // Boot Mode
311                 // Set the modifier bit if this key is a modifier
312                 if ( (key & 0xE0) == 0xE0 ) // AND with 0xE0 (Left Ctrl, first modifier)
313                 {
314                         USBKeys_Modifiers |= 1 << (key ^ 0xE0); // Left shift 1 by key XOR 0xE0
315                 }
316                 // Normal USB Code
317                 else
318                 {
319                         // USB Key limit reached
320                         if ( USBKeys_Sent >= USB_BOOT_MAX_KEYS )
321                         {
322                                 warn_print("USB Key limit reached");
323                                 return;
324                         }
325
326                         // Make sure key is within the USB HID range
327                         if ( key <= 104 )
328                         {
329                                 USBKeys_Keys[USBKeys_Sent++] = key;
330                         }
331                         // Invalid key
332                         else
333                         {
334                                 warn_msg("USB Code above 104/0x68 in Boot Mode: ");
335                                 printHex( key );
336                                 print( NL );
337                         }
338                 }
339                 break;
340
341         case 1: // NKRO Mode
342                 // Set the modifier bit if this key is a modifier
343                 if ( (key & 0xE0) == 0xE0 ) // AND with 0xE0 (Left Ctrl, first modifier)
344                 {
345                         if ( keyPress )
346                         {
347                                 USBKeys_Modifiers |= 1 << (key ^ 0xE0); // Left shift 1 by key XOR 0xE0
348                         }
349                         else // Release
350                         {
351                                 USBKeys_Modifiers &= ~(1 << (key ^ 0xE0)); // Left shift 1 by key XOR 0xE0
352                         }
353
354                         USBKeys_Changed |= USBKeyChangeState_Modifiers;
355                         break;
356                 }
357                 // First 6 bytes
358                 else if ( key >= 4 && key <= 49 )
359                 {
360                         // Lookup (otherwise division or multiple checks are needed to do alignment)
361                         // Starting at 0th position, each byte has 8 bits, starting at 4th bit
362                         uint8_t keyPos = key + (0 * 8 - 4); // Starting position in array, Ignoring 4 keys
363                         switch ( keyPos )
364                         {
365                                 byteLookup( 0 );
366                                 byteLookup( 1 );
367                                 byteLookup( 2 );
368                                 byteLookup( 3 );
369                                 byteLookup( 4 );
370                                 byteLookup( 5 );
371                         }
372
373                         USBKeys_Changed |= USBKeyChangeState_MainKeys;
374                 }
375                 // Next 14 bytes
376                 else if ( key >= 51 && key <= 155 )
377                 {
378                         // Lookup (otherwise division or multiple checks are needed to do alignment)
379                         // Starting at 6th byte position, each byte has 8 bits, starting at 51st bit
380                         uint8_t keyPos = key + (6 * 8 - 51); // Starting position in array
381                         switch ( keyPos )
382                         {
383                                 byteLookup( 6 );
384                                 byteLookup( 7 );
385                                 byteLookup( 8 );
386                                 byteLookup( 9 );
387                                 byteLookup( 10 );
388                                 byteLookup( 11 );
389                                 byteLookup( 12 );
390                                 byteLookup( 13 );
391                                 byteLookup( 14 );
392                                 byteLookup( 15 );
393                                 byteLookup( 16 );
394                                 byteLookup( 17 );
395                                 byteLookup( 18 );
396                                 byteLookup( 19 );
397                         }
398
399                         USBKeys_Changed |= USBKeyChangeState_SecondaryKeys;
400                 }
401                 // Next byte
402                 else if ( key >= 157 && key <= 164 )
403                 {
404                         // Lookup (otherwise division or multiple checks are needed to do alignment)
405                         uint8_t keyPos = key + (20 * 8 - 157); // Starting position in array, Ignoring 6 keys
406                         switch ( keyPos )
407                         {
408                                 byteLookup( 20 );
409                         }
410
411                         USBKeys_Changed |= USBKeyChangeState_TertiaryKeys;
412                 }
413                 // Last 6 bytes
414                 else if ( key >= 176 && key <= 221 )
415                 {
416                         // Lookup (otherwise division or multiple checks are needed to do alignment)
417                         uint8_t keyPos = key + (21 * 8 - 176); // Starting position in array
418                         switch ( keyPos )
419                         {
420                                 byteLookup( 21 );
421                                 byteLookup( 22 );
422                                 byteLookup( 23 );
423                                 byteLookup( 24 );
424                                 byteLookup( 25 );
425                                 byteLookup( 26 );
426                         }
427
428                         USBKeys_Changed |= USBKeyChangeState_QuartiaryKeys;
429                 }
430                 // Received 0x00
431                 // This is a special USB Code that internally indicates a "break"
432                 // It is used to send "nothing" in order to break up sequences of USB Codes
433                 else if ( key == 0x00 )
434                 {
435                         USBKeys_Changed |= USBKeyChangeState_MainKeys;
436
437                         // Also flush out buffers just in case
438                         Output_flushBuffers();
439                         break;
440                 }
441                 // Invalid key
442                 else
443                 {
444                         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: ");
445                         printHex( key );
446                         print( NL );
447                         break;
448                 }
449
450                 // Set/Unset
451                 if ( keyPress )
452                 {
453                         USBKeys_Keys[bytePosition] |= (1 << byteShift);
454                         USBKeys_Sent++;
455                 }
456                 else // Release
457                 {
458                         USBKeys_Keys[bytePosition] &= ~(1 << byteShift);
459                         USBKeys_Sent++;
460                 }
461
462                 break;
463         }
464 }
465
466
467
468 // ----- Functions -----
469
470 // Flush Key buffers
471 void Output_flushBuffers()
472 {
473         // Zero out USBKeys_Keys array
474         for ( uint8_t c = 0; c < USB_NKRO_BITFIELD_SIZE_KEYS; c++ )
475                 USBKeys_Keys[ c ] = 0;
476
477         // Zero out other key buffers
478         USBKeys_ConsCtrl = 0;
479         USBKeys_Modifiers = 0;
480         USBKeys_SysCtrl = 0;
481 }
482
483
484 // USB Module Setup
485 inline void Output_setup()
486 {
487         // Initialize the USB, and then wait for the host to set configuration.
488         // This will hang forever if USB does not initialize
489         // If no USB cable is attached, does not try and initialize USB
490         if ( usb_init() )
491         {
492                 while ( !usb_configured() );
493         }
494
495         // Register USB Output CLI dictionary
496         CLI_registerDictionary( outputCLIDict, outputCLIDictName );
497
498         // Flush key buffers
499         Output_flushBuffers();
500 }
501
502
503 // USB Data Send
504 inline void Output_send()
505 {
506         // Boot Mode Only, unset stale keys
507         if ( USBKeys_Protocol == 0 )
508                 for ( uint8_t c = USBKeys_Sent; c < USB_BOOT_MAX_KEYS; c++ )
509                         USBKeys_Keys[c] = 0;
510
511         // Send keypresses while there are pending changes
512         while ( USBKeys_Changed )
513                 usb_keyboard_send();
514
515         // Clear keys sent
516         USBKeys_Sent = 0;
517
518         // Signal Scan Module we are finished
519         switch ( USBKeys_Protocol )
520         {
521         case 0: // Boot Mode
522                 // Clear modifiers only in boot mode
523                 USBKeys_Modifiers = 0;
524                 Scan_finishedWithOutput( USBKeys_Sent <= USB_BOOT_MAX_KEYS ? USBKeys_Sent : USB_BOOT_MAX_KEYS );
525                 break;
526         case 1: // NKRO Mode
527                 Scan_finishedWithOutput( USBKeys_Sent );
528                 break;
529         }
530 }
531
532
533 // Sets the device into firmware reload mode
534 inline void Output_firmwareReload()
535 {
536         usb_device_reload();
537 }
538
539
540 // USB Input buffer available
541 inline unsigned int Output_availablechar()
542 {
543         return usb_serial_available();
544 }
545
546
547 // USB Get Character from input buffer
548 inline int Output_getchar()
549 {
550         // XXX Make sure to check output_availablechar() first! Information is lost with the cast (error codes) (AVR)
551         return (int)usb_serial_getchar();
552 }
553
554
555 // USB Send Character to output buffer
556 inline int Output_putchar( char c )
557 {
558         return usb_serial_putchar( c );
559 }
560
561
562 // USB Send String to output buffer, null terminated
563 inline int Output_putstr( char* str )
564 {
565 #if defined(_at90usb162_) || defined(_atmega32u4_) || defined(_at90usb646_) || defined(_at90usb1286_) // AVR
566         uint16_t count = 0;
567 #elif defined(_mk20dx128_) || defined(_mk20dx128vlf5_) || defined(_mk20dx256_) || defined(_mk20dx256vlh7_) // ARM
568         uint32_t count = 0;
569 #endif
570         // Count characters until NULL character, then send the amount counted
571         while ( str[count] != '\0' )
572                 count++;
573
574         return usb_serial_write( str, count );
575 }
576
577
578 // Soft Chip Reset
579 inline void Output_softReset()
580 {
581         usb_device_software_reset();
582 }
583
584
585 // ----- CLI Command Functions -----
586
587 void cliFunc_kbdProtocol( char* args )
588 {
589         print( NL );
590         info_msg("Keyboard Protocol: ");
591         printInt8( USBKeys_Protocol );
592 }
593
594
595 void cliFunc_outputDebug( char* args )
596 {
597         // Parse number from argument
598         //  NOTE: Only first argument is used
599         char* arg1Ptr;
600         char* arg2Ptr;
601         CLI_argumentIsolation( args, &arg1Ptr, &arg2Ptr );
602
603         // Default to 1 if no argument is given
604         Output_DebugMode = 1;
605
606         if ( arg1Ptr[0] != '\0' )
607         {
608                 Output_DebugMode = (uint16_t)numToInt( arg1Ptr );
609         }
610 }
611
612
613 void cliFunc_readLEDs( char* args )
614 {
615         print( NL );
616         info_msg("LED State: ");
617         printInt8( USBKeys_LEDs );
618 }
619
620
621 void cliFunc_sendKeys( char* args )
622 {
623         // Copy USBKeys_KeysCLI to USBKeys_Keys
624         for ( uint8_t key = 0; key < USBKeys_SentCLI; ++key )
625         {
626                 // TODO
627                 //USBKeys_Keys[key] = USBKeys_KeysCLI[key];
628         }
629         USBKeys_Sent = USBKeys_SentCLI;
630
631         // Set modifier byte
632         USBKeys_Modifiers = USBKeys_ModifiersCLI;
633 }
634
635
636 void cliFunc_setKeys( char* args )
637 {
638         char* curArgs;
639         char* arg1Ptr;
640         char* arg2Ptr = args;
641
642         // Parse up to USBKeys_MaxSize args (whichever is least)
643         for ( USBKeys_SentCLI = 0; USBKeys_SentCLI < USB_BOOT_MAX_KEYS; ++USBKeys_SentCLI )
644         {
645                 curArgs = arg2Ptr;
646                 CLI_argumentIsolation( curArgs, &arg1Ptr, &arg2Ptr );
647
648                 // Stop processing args if no more are found
649                 if ( *arg1Ptr == '\0' )
650                         break;
651
652                 // Add the USB code to be sent
653                 // TODO
654                 //USBKeys_KeysCLI[USBKeys_SentCLI] = numToInt( arg1Ptr );
655         }
656 }
657
658
659 void cliFunc_setMod( char* args )
660 {
661         // Parse number from argument
662         //  NOTE: Only first argument is used
663         char* arg1Ptr;
664         char* arg2Ptr;
665         CLI_argumentIsolation( args, &arg1Ptr, &arg2Ptr );
666
667         USBKeys_ModifiersCLI = numToInt( arg1Ptr );
668 }
669