i wnat to send characters serially from one system to another using
null modem. one system has qnx and other uses a hyperterminal.
i ant to use qtalk to enable this transfer of characters. can anyone
help?
qtalk in qnx
Re: qtalk in qnx
Hi...
1. connect a serial line between your QNX box and the other box
2. on QNX, for serial port 1, do:
stty < /dev/ser1
and see the settings. For example, to change the baud rate:
stty baud=9600 </dev/ser1
3. after the settings match, on QNX do:
qtalk -m/dev/ser1
and simply type on the terminal.
4. you can even use a serial device on another machine
qtalk -m /net/other.machine/dev/ser1
Regards...
Miguel.
10radha wrote:
1. connect a serial line between your QNX box and the other box
2. on QNX, for serial port 1, do:
stty < /dev/ser1
and see the settings. For example, to change the baud rate:
stty baud=9600 </dev/ser1
3. after the settings match, on QNX do:
qtalk -m/dev/ser1
and simply type on the terminal.
4. you can even use a serial device on another machine
qtalk -m /net/other.machine/dev/ser1
Regards...
Miguel.
10radha wrote:
i wnat to send characters serially from one system to another using
null modem. one system has qnx and other uses a hyperterminal.
i ant to use qtalk to enable this transfer of characters. can anyone
help?