EmbeddedBob wrote:
The documentation says to press the RUBOUT key... that's quaint. Is there any particular hex value that my terminal emulator should be sending? I've never seen a RUBOUT key on my keyboard. Would either BACKSPACE or DELETE be acceptable?
RUBOUT (or RUB) is the name of ASCII character $7F, also called DEL (that's the name you'll probably see on a modern ASCII chart). A BACKSPACE key will usually be ASCII character $08. Old ASCII charts, typically contain the names of the unprintable characters (i.e. $00 to $1F, and $7F).
$00 is NUL (Null)
$01 is SOH (Start Of Header)
$02 is STX (Start Of TeXt)
and so on. (If anyone is really curious I can post the whole list.)
These days, they're usually just called Control-@, Control-A, Control-B, etc. (or more succinctly, ^@, ^A, ^B, ...) which is a lot less confusing.