Command INPUT needs to know how the receiving message is terminated.
The options are
CR
LF
CRLF
LFCR
CR is char ascii 13 (&hD)
LF is ascii 10 (&hA)
These are unprintable values, which cannot occure in the message text.
In a windows terminal when you end your string with <Enter>, mostly CRLF is sent.
Command INPUT is defaultly set just for CRLF.
If another termination is used, you have to set it with CONFIG INPUT.
For example
Config Input = CR , Echo = Noecho
↧