home *** CD-ROM | disk | FTP | other *** search
/ PDA Software Library / pdasoftwarelib.iso / PSION / COMMS / RCOM114 / SCR / README.TXT < prev   
Encoding:
Text File  |  1994-10-13  |  4.0 KB  |  92 lines

  1.                 ADDITIONAL SCRIPTS
  2.                 ==================
  3.  
  4. The \SCR directory contains sample scripts that can be used with the
  5. Comms application that is supplied on the 3Link lead. For more
  6. information about the Comms application, see the 3Link manual.
  7.  
  8. The sample scripts consist of:
  9.  
  10. CIXNCS.SCR   -      CIX logon script for non-constant speed modems
  11. _CIX.SCR     -      Improved CIX logon script
  12. _MCI.SCR     -      Improved MCI logon script
  13. _CIS.SCR     -      
  14.  
  15. CIXNCS.SCR
  16. ==========
  17.  
  18. CIXNCS.SCR is a sample script for logging onto CIX for those who do
  19. not have a constant speed DTE modem. If you have a constant speed DTE
  20. modem, CIXNCS.SCR is of no use to you. (Most modern modems support
  21. constant speed DTE.)
  22.  
  23. "DTE" stands for "Data Terminal Equipment" - when the modem is
  24. connected to the Series 3, the DTE is the Series 3. "Constant speed"
  25. means that the Baud rate used by the DTE when sending commands to the
  26. modem remains in force regardless of the speed at which the modem
  27. connects to the remote system.
  28.  
  29. If you do not have a constant speed DTE modem, you have the
  30. following problem when connecting to a remote system:
  31.  
  32. After the connection to the remote system has been established, the
  33. modem sends a string to the Series 3 in the form "CONNECT 2400",
  34. "CONNECT 1200" or just "CONNECT" (according to the speed of
  35. connection - 2400, 1200 or 300 Baud). The modem then changes the Baud
  36. rate at which it sends characters to the Series 3 to 2400, 1200 or
  37. 300, as appropriate. You then have to manually set the Series 3 to
  38. the new Baud rate, before sending or receiving any more data.
  39.  
  40. This problem is overcome with the CIXNCS.SCR by fully automating the
  41. changes in Baud rate on the Series 3 with the script language.
  42.  
  43. _CIX.SCR & _MCI.SCR
  44. ===================
  45.  
  46. The _CIX.SCR and _MCI.SCR script are improved scripts for logging on
  47. to CIX and MCI. They set the modem to use RtsCts (hardware)
  48. handshaking and not XonXoff handshaking when communicating between
  49. the Series 3 and a remote system. This prevents data loss between the
  50. Series 3 and modem.
  51.  
  52. If you use XonXoff handshaking data can be lost between the Series 3
  53. and modem for the following reason:
  54.  
  55. Most modems (constant speed DTE modems with full buffering) are set
  56. up by default to pass Xon/Xoff handshaking characters through to the
  57. HOST computer, and to ignore them for flow control between the
  58. Series 3 and modem. A problem can occur when the modem has buffered a
  59. large amount of incoming data and then the Series 3 sends an Xoff.
  60. The HOST receives the Xoff and stops sending data, however the modem
  61. continues to send its buffered characters to the Series 3,
  62. potentially causing an OVERRUN error. Using RtsCts (hardware)
  63. handshaking between the Series 3 and the modem prevents this problem
  64. arising by stopping the modem sending any buffered data.
  65.  
  66. If you look at the scripts you will see that they set XonXoff and
  67. RtsCts handshaking, and then send the AT command AT&J2 to the modem to
  68. tell the modem to ignore XonXoff handshaking, but to obey RtsCts
  69. handshaking.
  70.  
  71. Although the comments in the scripts suggest that they are designed
  72. for Psion Dacom modems, they can in fact be used with most modern
  73. modems. (These scripts do not, in fact, use the Psion Dacom modems to
  74. the best advantage.) If your modem is not a Psion Dacom modem, check your
  75. modem's documentation for the relevant AT command to turn on RtsCts
  76. (hardware) handshaking, and use it in place of the AT&J2 command.
  77.  
  78. MNP error correction and compression
  79. ------------------------------------
  80.  
  81. The Psion Dacom modems are capable of using MNP error correction and
  82. MNP 5 compression, allowing effective transmission rates of 4800
  83. Baud. (Of course, the modem at the other end must also support these
  84. facilities.)
  85.  
  86. If you wish to enable these facilities on a Psion Dacom modem, edit
  87. the script and replace the AT\N0 command with AT\N3, and add a new
  88. line immediately afterwards to send the command AT%C1. Again, if your
  89. modem is not a Psion Dacom modem you will have to consult the modem's
  90. documentation for the relevant commands.
  91.  
  92.