07-25-2005 05:56 PM
07-26-2005 01:17 PM
Ctrl-X, or Cancel command, is ASCII character 24. You can format a string with this character and send the string:
sprintf (string, "%c", 24); ComWrt (port, string, 1);
You should be able to embed it directly into a string or send directlt to the port using "\030" (octal code of Ctrl-X):
ComWrt (port, "\030", 1);
07-26-2005 01:49 PM
07-26-2005 03:34 PM