05-29-2009 07:11 AM
I have an application where I'm controlling a device via the serial port. To get it to exit from one of the menus, I have to send it a "CNTRL Q". In Labview this is the shortcut for quit and i get the dialog box to exit, save, etc.
Could someone tell me what I need to do to configure labview such that I can use the string constant or other means to send the "CNTRL Q" via the serial port.
Thank you
Solved! Go to Solution.
05-29-2009 07:22 AM
05-29-2009 08:22 AM
According to the ASCII-Table.com hex 11 (decimal 17) is the equivalent of CTRL-Q for terminal programs.
Just create a numeric constant with that value typecast it to string and send it over the comm port.
Ton
05-29-2009 08:34 AM