Project Home
Project Home
Trackers
Trackers
Documents
Documents
Wiki
Wiki
Discussion Forums
Discussions
Project Information
Project Info
Forum Topic - Screen on qnx: (14 Items)
   
Screen on qnx  
Is it possible to run a terminal command similar to screen like on linux? I'm trying to connect to a device through a 
serial port and need to start a session, thanks!
Re: Screen on qnx  
You can use qtalk to start a serial session and you can use the stty
command to set the baud rate etc.

-- 
Hugh Brown
QNX Software Systems Limited
1001 Farrar Rd.,
Ottawa. ON. K2K 0B3.
Telephone: 613-591-0931







On 12-06-15 3:37 PM, "Will Milner" <community-noreply@qnx.com> wrote:

>Is it possible to run a terminal command similar to screen like on linux?
>I'm trying to connect to a device through a serial port and need to start
>a session, thanks!
>
>
>
>_______________________________________________
>
>QNX4 Community Support
>http://community.qnx.com/sf/go/post93702
>To cancel your subscription to this discussion, please e-mail
>qnx4-community-unsubscribe@community.qnx.com

Re: Screen on qnx  
When I use qtalk I type qtalk /dev/ser1 and it says unable to dial : no dialing entry , and when I try qtalk -m/dev/ser1
 it will pop up with some commadns but I am unable to type any characters to communicate to the device, I configured 
everything with stty before I ran qtalk too, anything I'm missing?  Thanks!
Re: Screen on qnx  
If you are connected to a modem, then after you have run "qtalk -m
/dev/ser1", you should then be able to use the modem "at" commands to dial.

-- 
Hugh Brown
QNX Software Systems Limited
1001 Farrar Rd.,
Ottawa. ON. K2K 0B3.
Telephone: 613-591-0931







On 12-06-18 12:31 PM, "Will Milner" <community-noreply@qnx.com> wrote:

>When I use qtalk I type qtalk /dev/ser1 and it says unable to dial : no
>dialing entry , and when I try qtalk -m/dev/ser1 it will pop up with some
>commadns but I am unable to type any characters to communicate to the
>device, I configured everything with stty before I ran qtalk too,
>anything I'm missing?  Thanks!
>
>
>
>_______________________________________________
>
>QNX4 Community Support
>http://community.qnx.com/sf/go/post93733
>To cancel your subscription to this discussion, please e-mail
>qnx4-community-unsubscribe@community.qnx.com

Re: Screen on qnx  
I'm using a null modem cable so I don't think any "at" commands are accessible to me, just a direct link between the 
devices
Re: Screen on qnx  
Well if you are running a terminal program on the other machine and you
type characters on the QNX machine, you should see them on the other
machine.

-- 
Hugh Brown
QNX Software Systems Limited
1001 Farrar Rd.,
Ottawa. ON. K2K 0B3.
Telephone: 613-591-0931







On 12-06-18 1:02 PM, "Will Milner" <community-noreply@qnx.com> wrote:

>I'm using a null modem cable so I don't think any "at" commands are
>accessible to me, just a direct link between the devices
>
>
>
>_______________________________________________
>
>QNX4 Community Support
>http://community.qnx.com/sf/go/post93735
>To cancel your subscription to this discussion, please e-mail
>qnx4-community-unsubscribe@community.qnx.com

Re: Screen on qnx  
I seem to have no connection, but if I use utilities like cat and echo I can send and receive but i can't get qtalk to 
emulate a terminal for me, there are no other commands like putty or hyperterminal on qnx that I can try?  Thanks so 
much for your help
Re: Screen on qnx  
Well if cat and echo are working, your serial connection must be good. By
default qtalk doesn't echo characters on your QNX terminal, but if the
serial connection is good, you should at least see the characters on the
other terminal. qtalk is the only emulation program under QNX4, but I'm
sure that there are others in the community if you ask around.

-- 
Hugh Brown
QNX Software Systems Limited
1001 Farrar Rd.,
Ottawa. ON. K2K 0B3.
Telephone: 613-591-0931







On 12-06-18 1:46 PM, "Will Milner" <community-noreply@qnx.com> wrote:

>I seem to have no connection, but if I use utilities like cat and echo I
>can send and receive but i can't get qtalk to emulate a terminal for me,
>there are no other commands like putty or hyperterminal on qnx that I can
>try?  Thanks so much for your help
>
>
>
>_______________________________________________
>
>QNX4 Community Support
>http://community.qnx.com/sf/go/post93738
>To cancel your subscription to this discussion, please e-mail
>qnx4-community-unsubscribe@community.qnx.com

Re: Screen on qnx  
Hi Will,

To provide remote access to QNX terminal via null-modem cable you should use tinit command.

Respectfully,
Oleg

18.06.2012, в 21:46:57, Will Milner написал(а):

> I seem to have no connection, but if I use utilities like cat and echo I can send and receive but i can't get qtalk to
 emulate a terminal for me, there are no other commands like putty or hyperterminal on qnx that I can try?  Thanks so 
much for your help
> 
> 
> 
> _______________________________________________
> 
> QNX4 Community Support
> http://community.qnx.com/sf/go/post93738
> To cancel your subscription to this discussion, please e-mail qnx4-community-unsubscribe@community.qnx.com

Re: Screen on qnx  
in regards to using tinit when I do tinit -t /dev/ser1 it says missing '=' for macro
Re: Screen on qnx  
Is there some kind of putty port for qnx? or qtalk is the only application I can use for this purpose? I'm trying to 
connect to a controller via the serial port /dev/ser1 which I can do fine on a linux machine using putty or screen /dev/
ttyS0 9600, qnx doesn't have any application similar to this because qtalk is all quiet and won't send a thing.
Re: Screen on qnx  
I think that there is something else fundamentally wrong here. If, as you
say, you can echo and cat characters to the serial port, then qtalk must
work. If you are running at 9600 baud then run the following stty command:

stty baud=9600 -ihflow -ohflow < /dev/ser1

This will turn off hardware flow control. Then run qtalk again and see if
ti works.

-- 
Hugh Brown
QNX Software Systems Limited
1001 Farrar Rd.,
Ottawa. ON. K2K 0B3.
Telephone: 613-591-0931







On 12-06-19 2:00 PM, "Will Milner" <community-noreply@qnx.com> wrote:

>Is there some kind of putty port for qnx? or qtalk is the only
>application I can use for this purpose? I'm trying to connect to a
>controller via the serial port /dev/ser1 which I can do fine on a linux
>machine using putty or screen /dev/ttyS0 9600, qnx doesn't have any
>application similar to this because qtalk is all quiet and won't send a
>thing.
>
>
>
>_______________________________________________
>
>QNX4 Community Support
>http://community.qnx.com/sf/go/post93769
>To cancel your subscription to this discussion, please e-mail
>qnx4-community-unsubscribe@community.qnx.com

Re: Screen on qnx  
Thanks! that did it!
Re: Screen on qnx  
Good news!

-- 
Hugh Brown
QNX Software Systems Limited
1001 Farrar Rd.,
Ottawa. ON. K2K 0B3.
Telephone: 613-591-0931







On 12-06-19 9:31 PM, "Will Milner" <community-noreply@qnx.com> wrote:

>Thanks! that did it!
>
>
>
>_______________________________________________
>
>QNX4 Community Support
>http://community.qnx.com/sf/go/post93777
>To cancel your subscription to this discussion, please e-mail
>qnx4-community-unsubscribe@community.qnx.com