home *** CD-ROM | disk | FTP | other *** search
- Path: sparky!uunet!pipex!demon!cix.compulink.co.uk!rhorne
- Newsgroups: comp.sys.acorn
- From: rhorne@cix.compulink.co.uk (Roger Horne)
- Subject: Re: ARcterm7 and KA9Q
- Reply-To: rhorne@cix.compulink.co.uk
- Date: Tue, 8 Sep 1992 14:33:36 +0000
- Message-ID: <memo.616032@cix.compulink.co.uk>
- Sender: usenet@gate.demon.co.uk
- Lines: 93
-
-
-
- > coexist peacefully ?? I'm trying to use Arcterm7 to dial my
- > Internet gate, and then switch into KA9Q to run the SLIP
- > session. It would appear at first glance that Arcterm7
- > doesn't approve of other comms programs running alongside
- > it. Can anyone comment on
-
- Paul Moore (gustav@morpheus.demon.co.uk) wrote a script which does this. Add
- login and password at the appropriate places and change the parameters if
- necessary.
-
- BTW Anthony Frost's ReaderS now works with a modified KA9Q. It is a *vast*
- improvement on !BM. email vulch@kernow.demon.co.uk.
-
- Roger Horne
- roger@number7.demon.co.uk
-
- *********************************
-
- main ()
- {
- integer online
- online=port_dcd()
- if(setup_and_dial()=0)
- {
- return(0)
- }
-
- oscli("WimpTask Run <TCPIP$Dir>")
- shutdown()
-
- }
-
- anykey ()
- {
- type cr
- }
-
-
- setup_and_dial ()
- {
- set(terminal,vt102)
- port_txspeed(9600)
- port_rxspeed(9600)
- $port_wordformat("8N1")
- modem_standard("v22bis")
- modem_errorcontrol("mnp5")
- while(modem_dial("081 343 4848",1)<>0)
- {
- prints "ReDialling"+newline
- waitfor("anything", 1000)
- }
- prints newline
-
- pause(200)
- type cr+cr
- pause(200)
-
- ; Wait for name prompt
- if (waitfor("gin:",30000))
- {
- endlogon()
- return
- }
-
- type "My_Login"+cr
-
- if (waitfor("word:",6000))
- {
- endlogon()
- return
- }
- type "My_Password"+cr
-
- return(1)
- }
-
- anykey ()
- {
- type cr
- }
-
-
- endlogon ()
- {
- modem_disconnect()
-
- }
-
-
-
-
-