My telnet client wouldn't pass the ctrl-shift-6 key so I had to program a function key to send the appropriate hex value.
The character value of ^ is 0x5E and the ctrl combination decreases the value by 64 so ctrl-^ is 30, or 0x1E. The character b is equal to value 0x62 so so ctrl-^ b is 0x1E 0x62.
Hope this helps someone.
Jeff
The character value of ^ is 0x5E and the ctrl combination decreases the value by 64 so ctrl-^ is 30, or 0x1E. The character b is equal to value 0x62 so so ctrl-^ b is 0x1E 0x62.
Hope this helps someone.
Jeff