Obviously this in Linux
I have an external hardware device that requires the following sent to it via RS232:
1*21999<CR>
So in Scriba, my line is (after opening Open /dev/ttyS0 For Output as #2)
Print #2, "1*21999\n"
But it doesn't seem to send Chr(13) correctly (Chr(13) is CR, right?)
If I send 1*21999 via minicom, it works properly but if sent from Scriba, the external device ignores it.