Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

This what I'm useing to set the mod

Status
Not open for further replies.

mailbox125

Technical User
Apr 1, 2003
44
US
This what I'm useing to set the modem port and it works the first time through the script however on subsequent passes. And the request to set the terminal type to vt100 is not issued. Any ideas???


;****************************************************************************
;* *
;* SetModem *
;* The procedure to set the modem to 7,e,1 *
;* *
;* Calls: None *
;* Called by: MAIN *
;* Modifies: Modem Settings *
;* *
;*****************************************************************************

proc SetModem
set port baudrate 2400 ; 2400
set port databits 7 ; 7
set port parity EVEN ; e
set port stopbits 1 ; 1
SET port softflow OFF ;
SET port hardflow OFF ;
SET TERMINAL KEYBOARDFILE "VT100-CUSTOM.KBD" ;OPTIONAL
set duplex full
pause 1


endproc
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top