home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 339.lha / SerMod / Docs / SEND.doc < prev    next >
Text File  |  1990-02-08  |  890b  |  31 lines

  1.  
  2. NAME:        SEND, LSEND
  3.  
  4. SYNTAX:        SEND  <string>
  5.                 LSEND <string>
  6.  
  7. DESCRIPTION:
  8.  
  9.      SEND and LSEND are two variations of the same command. SEND will
  10.      tell the serial module to transmit a string out the serial port
  11.      (provided you have not issued a 'TXD OFF' command). LSEND will
  12.      also transmit a string out the serial port, but will append a
  13.      CR to the end of it.
  14.  
  15. EXAMPLES:
  16.  
  17.      SEND 'No CR after this string. Use for prompts: '
  18.      LSEND 'This string will print and send a CR.'
  19.      LSEND this will GoOut in All caPITals
  20.  
  21. NOTES:
  22.  
  23.      Use SEND to send prompts for user input, or for sending a stream
  24.      of data containing its own end of line characters. LSEND is for
  25.      sending a line of text as a unit.
  26.  
  27.      Any unquoted string will go out as all capital letters.
  28.      All strings follow standard ARexx conventions for quoting, using
  29.      hex or binary data, etc.
  30.  
  31.