home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / clarion / library / autodi / dial.doc < prev    next >
Text File  |  1991-03-09  |  2KB  |  64 lines

  1.  
  2.             ╔═══════════════════════════════════════╗
  3.             ║     Documentation for Auto-dialler        ║
  4.             ╚═══════════════════════════════════════╝
  5.  
  6. The LEM is written in assembler and comprises one procedure and one function.
  7. These are contained in DCLAR.BIN and the following should be included in
  8. your MAP:
  9.  
  10.            module('DCLAR.bin'),binary           
  11.          PROC(SERINIT)
  12.          FUNC(SERSEND),LONG
  13.            . !module
  14.  
  15. SERINIT is called on to initialise the serial port.
  16. The parameters are the serial port (0 or 1) and the constant 67.
  17.  
  18. SERSEND actually sends the characters which make up the phone number.
  19. These characters can include ( ) - and spaces. They will be ignored
  20. by any Hayes compatible modem.    The parameters are the serial port
  21. (0 or 1) and the character to be sent to the port in BYTE form.
  22. The demo shows a way of sending a string in byte form.
  23.  
  24. The procedure MODEM_INIT should be called once when your program
  25. is first run.  This sets DTR to on, which is required for some modems.
  26.  
  27. The best way to see how it works is to run the demo and then
  28. study the source code.
  29.  
  30.    Copyright 1991 Sterling Data Services
  31.    2 Fairford Road  
  32.    Tilehurst
  33.    Reading
  34.    Berkshire RG3 6QB
  35.    ENGLAND
  36.  
  37.    +44 (0734) 427333
  38.  
  39. If you find this LEM useful a contribution of 10 pounds
  40. or 20 dollars would be appreciated.  Registered users
  41. may use this LEM in their applications without any further
  42. payment of any kind and will be notified of future enhancements.
  43.  
  44.  
  45. I don't like legalese but I am told I have to include this:
  46.  
  47.  
  48.  
  49. DISCLAIMER - AGREEMENT
  50.  
  51. Users of DCLAR.BIN must accept this disclaimer of warranty:
  52. "DCLAR.BIN is supplied as is.  The author disclaims all
  53. warranties, expressed or implied, including, without limitation,
  54. the warranties of merchantability and of fitness for any purpose.
  55. The author assumes no liability for damages, direct or conse-
  56. quential, which may result from the use of DCLAR.BIN."
  57.  
  58.  
  59. Mike McLoughlin     (mmc@cix)
  60.  
  61. February 1991
  62.  
  63.  
  64.