home *** CD-ROM | disk | FTP | other *** search
/ Hacker Chronicles 2 / HACKER2.BIN / 255.HAYES.SCR < prev    next >
Text File  |  1987-09-28  |  2KB  |  44 lines

  1. !
  2. ! DISCatalog
  3. !
  4. ! Copyright (C) 1987 Westinghouse Electric Corp. -- All rights reserved.
  5. !
  6. ! This is a script for Hayes(TM) compatible modems.
  7. !
  8.  
  9. !
  10. ! this is the connect script
  11. !
  12.     Message "Checking if HAYES compatible modem (Takes approx. 5 seconds)."
  13.     SEND <CR>                           ! clear old command
  14.     wait 1                              ! give modem a chance
  15.     clearbuff                           ! clear old communications
  16.     Send ATZ<cr>                        ! reset modem to power on status
  17.     Wait 1                              ! wait for modem to reset
  18.     CLEARBUFF                           ! clear response
  19.     send ATQ0V1<CR>                     ! set modem to reply with words
  20.     Receive OK 5                        ! look for hayes response
  21.     MESSage "Initializing modem (Takes approx 5 seconds)."
  22.     wait 1                              ! give modem a chance
  23.     Send ATS7=45<Cr>                    ! set modem to wait 45 sec. for answer
  24.     RECEIVE OK 5                        ! look for hayes response
  25.     Message "Sending dial sequence for <PR><PH> to modem (Takes approx. 50 seconds)."
  26.     WAIT 1                              ! give modem a chance
  27.     SEND ATDT<Pr,><Ph><Cr>              ! send dial for touchtone (ATDP for pulse)
  28.     receive CONNECT 45                  ! look for connection
  29.     wait 5                              ! give network a chance
  30.  
  31. HANGUP
  32. !
  33. ! this is the hangup script
  34. !
  35.     clearbuff                           ! clear old communications
  36.     MESSAGE "Getting modem's attention (Takes approx. 5 seconds)."
  37.     WAIT 1                              ! wait guard time
  38.     SEND +++                            ! send attention chars
  39.     Receive OK 5                        ! look for modem
  40.     Message "Hanging up modem (Takes approx. 5 seconds)."
  41.     WAIT 1                              ! give modem a chance
  42.     Send ATZ<cr>                        ! send reset command (will hangup)
  43.  
  44.